/* ═══════════════════════════════════════════════
   INSERT-PLAY – Premium Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --gold: #F5C200;
  --gold-dark: #D4A800;
  --gold-glow: rgba(245, 194, 0, 0.15);
  --teal: #7BBFBE;
  --teal-dark: #5A9EA0;
  --navy: #0D1B2A;
  --navy-mid: #132231;
  --navy-light: #1B3044;
  --white: #FFFFFF;
  --gray: #8FA3B1;
  --text-light: #C8D8E4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.highlight { color: var(--gold); font-weight: 700; }

/* ─── ANIMATED BACKGROUND ─── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Floating Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -10%; left: -5%;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: var(--gold);
  bottom: -10%; right: -5%;
  animation-duration: 30s;
  animation-delay: -10s;
}

.orb-3 {
  width: 400px; height: 400px;
  background: var(--teal);
  top: 50%; right: 20%;
  animation-duration: 22s;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 40px) scale(1.02); }
}

/* ─── GRAIN OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* Everything above grain */
.top-bar, nav, section, .hero, .stats-bar, .page-hero,
footer, .contact-section, .cta-section, .market { position: relative; z-index: 2; }

/* ─── TOP BAR ─── */
.top-bar {
  background: rgba(8, 16, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 6px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
  z-index: 110;
  position: fixed;
  top: 0; left: 0; right: 0;
  transition: transform 0.3s;
}

.top-bar-left {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.top-bar-left a:hover { color: var(--gold); }

/* ─── LANGUAGE DROPDOWN ─── */
.lang-dropdown { position: relative; }

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  padding: 4px 14px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
}

.lang-dropdown-toggle:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(245,194,0,0.06);
}

.lang-dropdown-toggle .lang-flag { font-size: 15px; line-height: 1; }

.lang-dropdown-toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  transition: transform 0.25s;
}

.lang-dropdown.open .lang-dropdown-toggle::after { transform: rotate(180deg); }

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: rgba(19, 34, 49, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Barlow', sans-serif;
}

.lang-option:hover {
  background: rgba(245,194,0,0.08);
  color: var(--gold);
}

.lang-option.active { color: var(--gold); font-weight: 700; }
.lang-option .lang-flag { font-size: 16px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 33px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,194,0,0.1);
  transition: top 0.35s, background 0.35s, box-shadow 0.35s;
}

nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo img { height: 48px; transition: transform 0.2s; }
.nav-logo:hover img { transform: scale(1.03); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  transition: transform 0.2s;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: rgba(19, 34, 49, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--text-light) !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}

.dropdown-menu a::after { display: none !important; }

.dropdown-menu a:hover {
  background: rgba(245,194,0,0.06);
  color: var(--gold) !important;
  padding-left: 24px;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s;
  box-shadow: 0 0 0 0 rgba(245,194,0,0);
}

.nav-cta:hover {
  background: #FFD740;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,194,0,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HOME HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(123,191,190,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(245,194,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated grid lines behind hero */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,191,190,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,191,190,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,191,190,0.1);
  border: 1px solid rgba(123,191,190,0.25);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 .line-gold { color: var(--gold); display: block; text-shadow: 0 0 60px rgba(245,194,0,0.15); }
h1 .line-white { color: var(--white); display: block; }

.hero-sub {
  max-width: 640px;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 38px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  box-shadow: 0 0 0 0 rgba(245,194,0,0);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: #FFD740;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,194,0,0.3);
}

.btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 15px 38px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--teal);
  background: rgba(123,191,190,0.08);
  box-shadow: 0 0 20px rgba(123,191,190,0.1);
  transform: translateY(-2px);
}

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(19, 34, 49, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px rgba(245,194,0,0.15);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.stat-divider {
  width: 1px; height: 48px;
  background: linear-gradient(transparent, rgba(255,255,255,0.1), transparent);
}

/* ─── SECTIONS ─── */
section { padding: 110px 60px; }

.section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h2 em { color: var(--gold); font-style: normal; }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  padding: 170px 60px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(123,191,190,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,194,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,191,190,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,191,190,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 10%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 10%, transparent 60%);
  pointer-events: none;
}

.page-hero .section-tag { display: block; text-align: center; position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.page-hero h1 em { color: var(--gold); font-style: normal; }

.page-hero-sub {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* ─── CORE BUSINESS ─── */
.core { background: transparent; }

.core-header { max-width: 640px; margin-bottom: 64px; }

.core-header p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}

.core-card {
  background: rgba(19, 34, 49, 0.7);
  backdrop-filter: blur(6px);
  padding: 44px 36px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.core-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.core-card:hover { background: rgba(27, 48, 68, 0.8); }
.core-card:hover::before { opacity: 1; }

.core-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  transition: transform 0.3s;
}

.core-card:hover .core-icon { transform: scale(1.1); }

.icon-gold { background: rgba(245,194,0,0.12); }
.icon-teal { background: rgba(123,191,190,0.12); }
.icon-white { background: rgba(255,255,255,0.07); }

.core-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.core-card p { font-size: 15px; line-height: 1.7; color: var(--text-light); }

.core-card ul { list-style: none; margin-top: 16px; }

.core-card ul li {
  font-size: 14px;
  color: var(--text-light);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.core-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(245,194,0,0.4);
}

.core-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(245,194,0,0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.core-card .btn-secondary {
  margin-top: 22px;
  padding: 10px 24px;
  font-size: 13px;
}

/* ─── ARCADEMANAGER ─── */
.arcademanager {
  background: rgba(19, 34, 49, 0.4);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.am-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.am-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 20px;
}

.am-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  background: rgba(123,191,190,0.08);
  border: 1px solid rgba(123,191,190,0.2);
  color: var(--teal);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}

.pill:hover {
  background: rgba(123,191,190,0.15);
  border-color: rgba(123,191,190,0.4);
  transform: translateY(-1px);
}

.am-features { display: flex; flex-direction: column; gap: 6px; }

.am-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}

.am-row:hover {
  border-color: rgba(245,194,0,0.2);
  background: rgba(245,194,0,0.03);
  transform: translateX(4px);
}

.am-icon-wrap {
  font-size: 22px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}

.am-row h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.am-row p { font-size: 14px; line-height: 1.65; color: var(--text-light); }

/* ─── PRODUCTS ─── */
.products { background: transparent; }

.products-header { text-align: center; margin-bottom: 48px; }
.products-header .section-tag { display: block; }
.products-header h2 { text-align: center; margin-bottom: 16px; }

.prod-sub {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.prod-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.prod-tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
}

.prod-tab:hover { border-color: rgba(245,194,0,0.3); color: var(--gold); }

.prod-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245,194,0,0.2);
}

.prod-category {
  display: none;
  margin-bottom: 52px;
}

.prod-category.active { display: block; }

.prod-category-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(123,191,190,0.12);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.prod-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px 24px;
  background: rgba(19, 34, 49, 0.6);
  backdrop-filter: blur(6px);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.prod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,194,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-card:hover {
  border-color: rgba(245,194,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.prod-card:hover::before { opacity: 1; }

.prod-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.prod-card:hover .prod-emoji { transform: scale(1.15); }

.prod-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.prod-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.prod-card .prod-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(123,191,190,0.08);
  padding: 4px 14px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* ─── MARKET / ROLES ─── */
.market {
  background: rgba(19, 34, 49, 0.4);
  text-align: center;
  padding: 90px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.market h2 { margin-bottom: 16px; }

.market-sub {
  max-width: 620px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 840px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
}

.role-card {
  background: rgba(13, 27, 42, 0.7);
  padding: 44px 28px;
  transition: all 0.3s;
}

.role-card:hover { background: rgba(27, 48, 68, 0.7); }

.role-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  transition: all 0.3s;
}

.role-card:hover .role-num {
  opacity: 1;
  text-shadow: 0 0 30px rgba(245,194,0,0.2);
}

.role-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.role-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ─── USE CASES ─── */
.usecases { background: transparent; }
.usecases h2 { text-align: center; margin-bottom: 16px; }
.usecases .section-tag { display: block; text-align: center; }

.uc-sub {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}

.uc-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 24px;
  background: rgba(19, 34, 49, 0.6);
  backdrop-filter: blur(6px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.uc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(123,191,190,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.uc-card:hover {
  border-color: rgba(123,191,190,0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.uc-card:hover::before { opacity: 1; }

.uc-emoji {
  font-size: 34px;
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.uc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.uc-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* ─── CTA ─── */
.cta-section {
  background: rgba(19, 34, 49, 0.4);
  text-align: center;
  padding: 110px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(245,194,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 20px; }

.cta-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 44px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 60px;
  max-width: 940px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(19, 34, 49, 0.5);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}

.contact-info-item:hover { border-color: rgba(245,194,0,0.15); }

.contact-info-icon { font-size: 20px; min-width: 32px; text-align: center; padding-top: 2px; }

.contact-info-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--gold);
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-item a:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  transition: all 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,194,0,0.1);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── ABOUT ─── */
.about-section { background: transparent; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 20px;
}

.about-values { display: flex; flex-direction: column; gap: 6px; }

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(19, 34, 49, 0.6);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}

.about-value:hover {
  border-color: rgba(123,191,190,0.2);
  transform: translateX(4px);
}

.about-value-icon {
  font-size: 22px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}

.about-value h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.about-value p { font-size: 14px; line-height: 1.65; color: var(--text-light); }

/* ─── FOOTER ─── */
footer {
  background: rgba(8, 16, 26, 0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

footer img { height: 36px; opacity: 0.85; transition: opacity 0.2s; }
footer img:hover { opacity: 1; }

.footer-links { display: flex; gap: 32px; }

.footer-links a {
  color: var(--gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 13px; color: var(--gray); width: 100%; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .am-inner { grid-template-columns: 1fr; gap: 48px; }
  .roles-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar { padding: 6px 20px; }
  .top-bar-left { display: none; }
  .orb { display: none; }

  nav { padding: 14px 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: rgba(19, 34, 49, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }

  .nav-links > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
  }

  .nav-links > li > a.active::after { display: none; }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(0,0,0,0.15);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    backdrop-filter: none;
  }

  .nav-dropdown .dropdown-menu a { padding: 12px 40px; }
  .nav-dropdown .dropdown-menu a:hover { padding-left: 40px; }
  .nav-toggle { display: flex; }

  section { padding: 72px 24px; }
  .page-hero { padding: 130px 24px 60px; }
  .stats-bar { padding: 36px 24px; gap: 40px; }
  .stat-divider { display: none; }
  .market { padding: 60px 24px; }
  .contact-section { padding: 40px 24px; }

  footer {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .prod-tabs { gap: 6px; }
  .prod-tab { padding: 8px 16px; font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
}
