/*
Theme Name: Exient Boost
Description: Custom one-page theme for exientboost.com
Author: Exient
Version: 1.0
*/

:root {
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --navy: #0d1229;
  --navy-mid: #151c3a;
  --navy-card: #1a2245;
  --navy-card2: #1e2650;
  --pink: #e8196e;
  --teal: #00e8b0;
  --purple: #7c5cbf;
  --purple-light: #9b7dd4;
  --orange: #f5a623;
  --blue: #60a5fa;
  --violet: #7c5cbf;
  --white: #ffffff;
  --muted: #8892b0;
  --card-border: rgba(255,255,255,0.06);
}

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,18,41,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo img { height: 34px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--navy) !important; }

/* ── HERO ────────────────────────────────── */
.hero {
  display: flex;
  align-items: flex-start;
  padding: 150px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,232,176,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(124,92,191,0.07) 0%, transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 820px;
  z-index: 2;
}

.hero-eyebrow { display: none !important; }
.hero-eyebrow-UNUSED {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,232,176,0.1);
  border: 1px solid rgba(0,232,176,0.3);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.accent { color: var(--teal); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(0,232,176,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,232,176,0.45);
}

.btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--teal);
  background: rgba(0,232,176,0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}
.stat-item {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:first-child { padding-left: 36px; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* Hero visual — vertical carousel */
.hero-visual {
  position: absolute;
  right: max(60px, calc((100vw - 1200px) / 2));
  top: 130px;
  transform: none;
  height: 470px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.talent-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: scroll-cards 18s linear infinite;
  will-change: transform;
}

.talent-set {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.talent-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 18px;
  width: 230px;
  flex-shrink: 0;
}
.talent-card:nth-child(1) { border-top: 2px solid var(--teal); }
.talent-card:nth-child(2) { border-top: 2px solid var(--purple-light); }
.talent-card:nth-child(3) { border-top: 2px solid var(--pink); }
.talent-card:nth-child(4) { border-top: 2px solid var(--orange); }
.talent-card:nth-child(5) { border-top: 2px solid var(--teal); }   /* repeat at max distance from #1 */
.talent-card:nth-child(6) { border-top: 2px solid var(--blue); }
.talent-card:nth-child(7) { border-top: 2px solid var(--violet); }

.talent-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.talent-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.talent-dot.teal   { background: var(--teal);         box-shadow: 0 0 6px var(--teal); }
.talent-dot.purple { background: var(--purple-light); box-shadow: 0 0 6px var(--purple-light); }
.talent-dot.pink   { background: var(--pink);         box-shadow: 0 0 6px var(--pink); }
.talent-dot.orange { background: var(--orange);       box-shadow: 0 0 6px var(--orange); }
.talent-dot.blue   { background: var(--blue);         box-shadow: 0 0 6px var(--blue); }
.talent-dot.violet { background: var(--violet);       box-shadow: 0 0 6px var(--violet); }

.talent-role {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--white);
}

.talent-skills {
  font-size: 0.75rem;
  color: var(--muted);
  padding-left: 16px;
}

/* ── SECTION COMMON ──────────────────────── */
section { padding: 80px 60px; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
  display: block;
}

.section-title::after { content: none; }

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 56px;
}

/* ── CENTERED SECTION HEADERS ─────────────────────────────────────────────── */
.vs .section-label,         .vs .section-title,
.challenge .section-label,  .challenge .section-title,
.how .section-label,        .how .section-title,
.disciplines .section-label,.disciplines .section-title,
.models .section-label,     .models .section-title,
.team-section .section-label,.team-section .section-title { text-align: center; }

.vs .section-sub,
.challenge .section-sub,
.how .section-sub,
.disciplines .section-sub,
.models .section-sub,
.team-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

/* ── CHALLENGE ───────────────────────────── */
.challenge {
  background: var(--navy-mid);
  position: relative;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.challenge-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.challenge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,25,110,0.2);
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.challenge-card:nth-child(odd)::before  { background: var(--pink); }
.challenge-card:nth-child(even)::before { background: var(--orange); }

.challenge-icon { font-size: 2rem; margin-bottom: 14px; color: var(--teal); }

.challenge-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--white);
}
.challenge-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.challenge-footer {
  margin-top: 40px;
  padding: 22px 28px;
  background: rgba(0,232,176,0.06);
  border: 1px solid rgba(0,232,176,0.15);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}

/* ── WHAT IS BOOST ───────────────────────── */
.what { display: none; }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.what-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.what-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.what-card.teal::before   { background: var(--teal); }
.what-card.purple::before { background: var(--purple-light); }

.what-card-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 12px;
}
.what-card.purple .what-card-icon { color: var(--purple-light); }

.what-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.what-card-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 20px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #ccd6f6;
}
.check-list li::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f00c';
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.what-footer {
  background: var(--navy-card2);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 20px 28px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.what-footer strong { color: var(--white); }
.what-footer i { color: var(--teal); font-size: 1.2rem; flex-shrink: 0; }
.form-success-icon i { font-size: 2.5rem; color: var(--teal); }

/* ── KEY DIFFERENCES TABLE ───────────────────────────────────────────────── */
.vs { background: var(--navy); }

.vs-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
}

.vs-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 10px;
  align-items: center;
}

/* Label column */
.vs-label-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.vs-row-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  margin-bottom: 6px;
}

.vs-row-sub {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Header row */
.vs-header-row { align-items: stretch; }

.vs-bad-head,
.vs-good-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 10px;
}

.vs-bad-head {
  border: 1px solid rgba(232,25,110,0.35);
  background: rgba(232,25,110,0.07);
}

.vs-good-head {
  border: 1px solid rgba(0,232,176,0.35);
  background: rgba(0,232,176,0.07);
}

.vs-head-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vs-bad-head .vs-head-text { color: var(--pink); }

.vs-head-with {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.vs-head-logo {
  width: auto;
  display: block;
  opacity: 0.95;
}
.vs-head-logo--wide    { height: 22px; transform: translateY(-2px); }
.vs-head-logo--stacked { height: 38px; display: none; }

/* Data cells */
.vs-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px;
  border-radius: 10px;
  font-size: 0.925rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.vs-cell-bad {
  border: 1px solid rgba(232,25,110,0.2);
  background: rgba(232,25,110,0.04);
}

.vs-cell-good {
  border: 1px solid rgba(0,232,176,0.2);
  background: rgba(0,232,176,0.04);
  color: rgba(255,255,255,0.88);
}

/* Icons */
.vs-icon-wrap {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-icon-bad  { background: var(--pink); color: #fff; }
.vs-icon-good { background: var(--teal); color: var(--navy); }

.vs-footer { display: none; }

/* ── SECTION TRANSITIONS (soft blur) ─────── */
.who, .vs, .challenge, .how, .what, .disciplines, .why, .models, .mid-cta, .partners {
  position: relative;
}
.who::before, .vs::before, .challenge::before, .how::before,
.what::before, .disciplines::before, .why::before, .models::before, .team-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ── HOW IT WORKS ────────────────────────── */
.how { background: var(--navy); }

.how-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 32px;
  position: relative;
  margin: 56px 0 48px;
}

/* Line runs from center of dot-1 to center of dot-5.
   With 5 equal columns + 32px gaps the first dot centre ≈ 10% of track. */
.how-timeline::before {
  content: '';
  position: absolute;
  top: 9px; /* centre of 18px dot */
  left: 9px;
  right: calc(20% + 9px); /* stop at centre of last dot (last col starts at 80%) */
  height: 1px;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
}

.how-step { }

.how-step-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,232,176,0.15);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.how-step-label {
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-step-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.how-step-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.how-spacer { display: none; } /* shown only on mobile via media query */
.how-dots { display: none; } /* shown only on mobile via media query */

.how-disclaimer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 10px;
  margin-bottom: 64px;
}

.how-disclaimer-icon {
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.how-disclaimer p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.how-disclaimer strong { color: var(--white); }

.how-cta-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 64px;
  text-align: center;
  padding-bottom: 20px;
}

.how-cta-text {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.45;
}

.how-cta-text .accent { color: var(--teal); }

/* ── DISCIPLINES ─────────────────────────── */
.disciplines { background: var(--navy-mid); }

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.discipline-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.discipline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,232,176,0.2);
}
.discipline-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple-light));
}

.discipline-icon { font-size: 2rem; margin-bottom: 14px; display: block; color: var(--teal); }

.discipline-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.discipline-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── WHY BOOST ───────────────────────────── */
.why { display: none; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--navy-card);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: border-color 0.2s;
}
.why-item:hover { border-color: rgba(0,232,176,0.2); }
.why-icon { font-size: 2rem; flex-shrink: 0; color: var(--teal); }

.why-item h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}
.why-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── ENGAGEMENT MODELS ───────────────────── */
.models { background: var(--navy); }

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.model-card {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,232,176,0.2);
}

.model-way {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 14px;
}

.model-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.model-specs { display: flex; gap: 36px; margin-bottom: 20px; }

.model-spec-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
}

.model-spec-value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.model-divider {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 0 0 20px;
}

.model-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.models-perks-cta { text-align: center; margin-top: 24px; margin-bottom: 36px; }

.models-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.models-perk {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}
.models-perk:last-child { border-right: none; }

.models-perk-icon {
  grid-column: 1;
  grid-row: 1;
  color: var(--teal);
  font-size: 1rem;
}

.models-perk-title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

.models-perk-desc {
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 10px 0 0;
  line-height: 1.6;
}

.models-footer {
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── MEET THE TEAM ───────────────────────── */
.team-section { background: var(--navy-mid); }

.team-sub-italic { font-style: italic; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.team-card {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}
.team-card:nth-child(3n)      { border-right: none; }
.team-card:nth-last-child(-n+3) { border-bottom: none; }

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0,232,176,0.12);
  border: 1px solid rgba(0,232,176,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
  margin-bottom: 24px;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 8px;
}

.team-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.team-bio {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}

.team-credits {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── CONTACT ─────────────────────────────── */
.contact { background: var(--navy); }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-lhs { padding-top: 8px; }

.contact-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-sub { color: var(--muted); font-size: 1rem; margin-bottom: 36px; }

.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 36px;
  text-align: left;
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,146,176,0.5); }

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(0,232,176,0.25);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0,232,176,0.4);
}

.contact-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 4px;
}

.contact-direct a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-direct a:hover { color: var(--teal); }

.contact-direct-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.12);
}

/* ── FORM SUCCESS STATE ──────────────────── */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,232,176,0.1);
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}
.form-success p { color: var(--muted); font-size: 0.95rem; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy-card);
  border-top: 1px solid var(--card-border);
  padding: 28px 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .logo img { height: 30px; }
footer p { font-size: 0.8rem; color: var(--muted); }
.foot-exient-link a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.foot-exient-link a:hover { color: var(--teal); }
.who-title-logo-link { display: inline-flex; vertical-align: middle; opacity: 0.9; transition: opacity 0.2s; }
.who-title-logo-link:hover { opacity: 1; }

/* ── MOBILE NAV ──────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── RESPONSIVE ──────────────────────────── */

/* Compact nav at intermediate widths so links stay on one line */
@media (max-width: 1260px) {
  .nav-inner { padding: 16px 30px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .nav-inner { padding: 16px 20px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.8rem; }
  .logo img { height: 32px; }
}

@media (max-width: 900px) {
  .nav-inner { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(13,18,41,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
    z-index: 99;
  }
  .nav-hamburger { display: flex; }
  .logo img { height: 30px; }
  section { padding: 64px 24px; }
  .hero { padding: 120px 24px 70px; }
  .challenge-grid,
  .disciplines-grid,
  .why-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
  /* How It Works — horizontal scroll-snap carousel */
  .how-timeline {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin: 40px -24px 16px;
    padding: 4px 24px 20px;
    scroll-padding-left: 24px;
    align-items: stretch;
  }
  .how-timeline::-webkit-scrollbar { display: none; }
  .how-timeline::before { display: none; }
  .how-step {
    flex: 0 0 73vw;
    scroll-snap-align: start;
    box-sizing: border-box;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 20px;
  }
  .how-spacer {
    display: block;
    flex: 0 0 24px;
    flex-shrink: 0;
  }
  .how-step:last-child { margin-right: 32px; }
  .how-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  .how-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
  }
  .how-dot--active {
    background: var(--teal);
    transform: scale(1.35);
  }
  .how-disclaimer { margin-top: 0; }
  .what-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .vs-row { grid-template-columns: 140px 1fr 1fr; }
  footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .models-perks { grid-template-columns: 1fr; }
  .models-perk { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .models-perk:last-child { border-bottom: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 48px; }
  .stat-item { padding: 20px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-direct-sep { display: none; }
  /* Partners: keep 4-col down to 900px, let padding handle the rest */
  .partners { padding: 64px 24px; }
}

@media (max-width: 560px) {
  .challenge-grid,
  .disciplines-grid,
  .why-grid,
  .team-grid,
  .models-grid { grid-template-columns: 1fr; }

  /* Engagement — compact cards + 2-col perks on small mobile */
  .model-card { padding: 20px 18px; }
  .model-way { margin-bottom: 6px; }
  .model-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
  .model-specs { margin-bottom: 12px; }
  .model-divider { margin-bottom: 12px; }
  .model-desc { font-size: 0.82rem; }
  .models-perks { grid-template-columns: 1fr 1fr; }
  .models-perk { padding: 20px 16px; border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
  .models-perk:nth-child(even) { border-right: none; }
  .models-perk:last-child { border-bottom: none; }
  .models-perk:last-child:nth-child(odd) { grid-column: span 2; border-right: none; }
  .models-perks-cta { margin-top: 40px; margin-bottom: 48px; }

  /* Challenge cards — 2-col grid on mobile: icon spans both rows, title+body locked in col 2 */
  .challenge-card {
    display: grid;
    grid-template-columns: 2rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 20px;
  }
  .challenge-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 1.6rem;
    margin-bottom: 0;
    align-self: center;
  }
  .challenge-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }
  .challenge-card p {
    grid-column: 2;
    grid-row: 2;
  }

  /* Discipline cards — same compact icon-left layout as challenge cards */
  .discipline-card {
    display: grid;
    grid-template-columns: 2rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 20px;
  }
  .discipline-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 1.6rem;
    margin-bottom: 0;
    align-self: center;
  }
  .discipline-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }
  .discipline-card p {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-title { font-size: 2.4rem; text-align: center; }
  .hero-sub { text-align: center; max-width: 100%; }
  .hero-actions { justify-content: center; }

  /* Hero stats — equal-width columns: min-width:0 stops content from stretching 1fr tracks */
  .stat-num {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    letter-spacing: -0.5px;
  }
  .stat-item { padding: 18px 14px; min-width: 0; }
  /* Tighter tracking + slightly smaller size so long labels wrap more evenly in narrow cells */
  .stat-label { font-size: 0.68rem; letter-spacing: 0.03em; }

  /* VS table — compact two-col card layout on mobile:
     label spans full width, bad + good cells sit side-by-side underneath */
  .vs-table { margin-left: 8px; margin-right: 8px; }
  .vs-header-row .vs-label-col { display: none; }
  .vs-bad-head, .vs-good-head { padding: 10px 12px; gap: 6px; min-width: 0; }
  .vs-head-text { font-size: 0.62rem; }
  .vs-head-logo--wide    { display: none; }
  .vs-head-logo--stacked { display: block; height: 28px; }
  .vs-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
  }
  .vs-label-col {
    grid-column: 1 / -1;
    padding: 8px 0 2px;
  }
  .vs-row-title { font-size: 0.95rem; margin-bottom: 3px; }
  .vs-cell {
    padding: 14px 12px;
    font-size: 0.8rem;
    gap: 8px;
    align-items: flex-start;
  }
  .vs-cell .vs-icon-wrap {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 10px;
    margin-top: 2px;
  }

  /* Team — compact inline header + 3-line bio clamp with tap-to-expand */
  .team-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    padding: 20px;
    border-right: none;
  }
  .team-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .team-card:last-child { border-bottom: none; }
  .team-avatar {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    align-self: center;
  }
  .team-name { grid-column: 2; grid-row: 1; font-size: 1rem; margin-bottom: 2px; align-self: end; }
  .team-role  { grid-column: 2; grid-row: 2; margin-bottom: 0; align-self: start; }
  .team-bio {
    grid-column: 1 / 3;
    margin-top: 12px;
    margin-bottom: 0;
    max-height: 4.5rem;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .team-bio.team-bio--expanded { max-height: 600px; }
  .team-bio-toggle {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--teal);
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    padding: 0;
    letter-spacing: 0.03em;
  }
  .team-bio-toggle i { transition: transform 0.3s ease; font-size: 0.65rem; }
  .team-bio-toggle.team-bio-toggle--expanded i { transform: rotate(180deg); }
  .team-credits { grid-column: 1 / 3; margin-top: 12px; }

  /* Contact form — tighter padding */
  .contact-form { padding: 20px; }
}

/* ── PRIVACY POLICY PAGE ─────────────────── */
.privacy-hero {
  background: var(--navy);
  padding: 80px 0 48px;
}

.privacy-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin: 12px 0 8px;
}

.privacy-updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.privacy-body {
  background: var(--navy-mid);
  padding: 64px 0 96px;
}

.privacy-content {
  max-width: 760px;
}

.privacy-content p,
.privacy-content li {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-content li { margin-bottom: 6px; }

.privacy-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.privacy-content h2:first-of-type { border-top: none; margin-top: 28px; }

.privacy-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  margin: 20px 0 8px;
}

.privacy-content a {
  color: var(--teal);
  text-decoration: none;
}
.privacy-content a:hover { text-decoration: underline; }

.privacy-content strong { color: var(--white); }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-cards {
  from { transform: translateY(var(--scroll-dist, -520px)); }
  to   { transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ── MID CTA ─────────────────────────────────────────────────────────────── */
.mid-cta {
  padding: 40px 60px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(0,232,176,0.04);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mid-cta-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

@media (max-width: 600px) {
  .mid-cta { padding: 36px 24px; }
  .mid-cta-inner { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
}

/* ── TESTIMONIALS TICKER ─────────────────────────────────────────────────── */
.testimonials-ticker {
  padding: 48px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.ticker-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 26px;
}

.ticker-quote {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 12px;
  font-style: italic;
}

.ticker-attr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--ticker-dist, 50%))); }
}

/* ── PARTNERS ─────────────────────────────────────────────────────────────── */
.partners {
  padding: 80px 60px;
  border-top: 1px solid var(--card-border);
}

.partners-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-cell {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.partner-cell:nth-child(6n)        { border-right: none; }
.partner-cell:nth-last-child(-n+6) { border-bottom: none; }
.partner-cell:hover                { background: rgba(0,232,176,0.05); }

.partner-logo {
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  display: block;
  /* SVG feColorMatrix maps every opaque pixel to exactly #00e8b0 */
  filter: url(#eb-teal);
  opacity: 0.65;
  transition: opacity 0.25s;
}
.partner-cell:hover .partner-logo { opacity: 1; }
/* Codemasters logo is naturally compact — give it more room */
.partner-logo--lg { max-width: 180px; max-height: 72px; }
/* SIE wordmark is a tall 3-line logo — needs more height to stay legible */
.partner-logo--sie { max-width: 240px; max-height: 92px; }
/* Logos that are full-colour characters: preserve contrast, tint to teal */
.partner-logo--detail {
  filter: grayscale(1) sepia(1) hue-rotate(125deg) saturate(4);
}

/* Desktop: track is a transparent wrapper — its children participate in the grid directly */
.partners-track    { display: contents; }
/* Duplicate cells exist only for the mobile marquee loop; hidden everywhere else */
.partner-cell--dupe { display: none; }

/* ── PARTNERS MARQUEE (mobile) ────────────────────────────────────────────── */
/* Must live AFTER base partner rules so it wins the cascade                  */
@keyframes eb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* -50% = exactly one full set of logos */
}

@media (max-width: 560px) {
  .partners       { padding: 48px 20px; }
  .partners-label { margin-bottom: 32px; }

  /* Grid becomes a clipping window for the scrolling track */
  .partners-grid {
    display: block;
    overflow: hidden;
  }

  /* Animated track: flex row wide enough for both sets, loops via -50% translate */
  .partners-track {
    display: flex;
    flex-direction: row;
    width: max-content;
    animation: eb-marquee 28s linear infinite;
  }
  /* Pause on hover/focus so users can read a logo */
  .partners-track:hover,
  .partners-track:focus-within { animation-play-state: paused; }

  /* Reveal duplicate cells (hidden on desktop) */
  .partner-cell--dupe { display: flex; }

  /* Fixed-width cells so the -50% translate lines up perfectly */
  .partner-cell {
    flex: 0 0 auto;
    width: 160px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    padding: 28px 16px;
  }
  /* Reset desktop nth-child border overrides */
  .partner-cell:nth-child(4n)        { border-right: 1px solid rgba(255,255,255,0.08); }
  .partner-cell:nth-last-child(-n+4) { border-bottom: none; }
  .partner-cell:nth-last-child(-n+2) { border-bottom: none; }

  /* Sony SIE wordmark — constrain to fit the 160px mobile cell */
  .partner-logo--sie { max-width: 110px; max-height: 40px; }
}

/* ── WHO ARE EXIENT ───────────────────────────────────────────────────────── */
.who {
  text-align: center;
  background: var(--navy-mid);
}

.who-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.1;
}

.who-title-logo {
  height: 0.85em;
  width: auto;
  vertical-align: middle;
  position: relative;
  top: -0.15em;
}

.who-title .accent {
  font-style: italic;
  color: var(--teal);
}

.who-body {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 56px;
}

.who-body .accent {
  color: var(--teal);
  font-style: italic;
}

.who-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}

.who-stat {
  background: var(--navy-card);
  padding: 44px 40px;
}

.who-stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.who-stat-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.who-stat-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── CONTACT VALUE PROPS ─────────────────────────────────────────────────── */
.con-value-props {
  margin-bottom: 32px;
  text-align: left;
}

.con-vp-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}

.con-vp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.con-vp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.con-vp-list li::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f00c';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── NEW SECTION RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .who-stats { grid-template-columns: 1fr; }

  /* Who stats — number + title on same row, description full-width below */
  .who-stat {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 20px 24px;
  }
  .who-stat-num {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    margin-bottom: 0;
    align-self: center;
  }
  .who-stat-title { grid-column: 2; grid-row: 1; margin-bottom: 0; align-self: center; }
  .who-stat-desc  { grid-column: 1 / 3; grid-row: 2; margin-top: 10px; }
  .who-body { margin-bottom: 36px; }
}

@media (max-width: 600px) {
  .ticker-card { width: 260px; }
}

/* ── FORM CONSENT & RECAPTCHA ────────────────────────────────────────────── */
.form-consent {
  margin-bottom: 20px;
  text-align: left;
}

.form-consent-intro {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin: 0 0 10px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 8px;
}

.form-checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  margin-top: 1px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.form-checkbox-label input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
}

.form-checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox-label span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.form-required {
  color: var(--teal);
}

.form-privacy-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin: 12px 0 0;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--teal);
  text-decoration: underline;
}

.form-recaptcha {
  margin-bottom: 20px;
  text-align: left;
}

/* reCAPTCHA Enterprise badge — scale down the injected widget */
.grecaptcha-badge {
  transform: scale(0.75);
  transform-origin: bottom right;
  opacity: 0.7;
}
