:root {
  --color-blue: #7187A3;
  --color-gold: #E9A848;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-blue-light: #8a9db5;
  --color-blue-dark: #5a6f87;
  --color-gold-light: #f0bc6e;
  --color-gold-dark: #d4933a;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #F0F2F5;
  --text-primary: #000000;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --text-on-dark: #F5F5F7;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --topbar-h: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchored sections shouldn't be hidden behind the sticky topbar */
#sports,
#contact,
.layer {
  scroll-margin-top: 110px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== STICKY TOPBAR (banner + nav) ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ========== TOP BANNER (temporary — remove .top-banner element + this block to retire) ========== */
.top-banner {
  display: block;
  background: var(--color-gold);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
}
.top-banner strong { font-weight: 600; }
.top-banner:hover { background: var(--color-gold-dark); }

/* ========== NAV ========== */
nav {
  width: 100%;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.nav-brand {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand span { color: var(--color-blue); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto 0 16px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.is-active {
  color: var(--color-blue);
  font-weight: 600;
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--text-primary);
  padding: 10px 22px;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: #333; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-inner.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-inner.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-inner.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-inner { gap: 12px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 99;
  }
  .nav-inner.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 14px 32px;
    font-size: 15px;
  }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
}

/* ========== HERO ========== */
.hero {
  padding: 96px 32px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-blue);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-blue);
}
.hero-sub {
  font-size: clamp(18px, 2.5vw, 21px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 48px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--text-primary);
  padding: 16px 32px;
  border-radius: 980px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: #333; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  padding: 16px 32px;
  border-radius: 980px;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: rgba(0,0,0,0.3); }

/* Hero screenshot / carousel */
.hero-screenshot {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--bg-secondary);
}
.carousel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.carousel-slide.active { opacity: 1; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  background: rgba(255,255,255,0.75);
  padding: 7px 12px;
  border-radius: 980px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.04);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active {
  background: var(--color-blue);
  transform: scale(1.3);
}
.dot:hover { background: rgba(0,0,0,0.4); }
.dot.active:hover { background: var(--color-blue-dark); }

.sport-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: opacity 0s; }
}

/* ========== TRUST STRIP ========== */
.trust {
  padding: 64px 32px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  background: var(--bg-secondary);
}
.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}
.trust-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.trust-logo:hover { opacity: 1; }

/* ========== THREE SPORTS SECTION ========== */
.sports {
  padding: 128px 32px;
  max-width: 1120px;
  margin: 0 auto;
}
.sports-header {
  text-align: center;
  margin-bottom: 72px;
}
.sports-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sports-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .sports-grid { grid-template-columns: 1fr; }
}
.sport-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.04);
}
.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.sport-card-img {
  aspect-ratio: 16/10;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.sport-card-body {
  padding: 28px;
}
.sport-card-sport {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sport-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sport-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.sport-card-status {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}
.sport-card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gold-dark);
  background: rgba(233,168,72,0.1);
  padding: 6px 14px;
  border-radius: 980px;
}
.sport-card-link {
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sport-card-link:hover {
  background: rgba(233,168,72,0.2);
  transform: translateX(2px);
}

/* ========== HOW IT WORKS ========== */
.method {
  padding: 128px 32px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.method-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.method-header {
  text-align: center;
  margin-bottom: 72px;
}
.method-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.method-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .method-grid { grid-template-columns: 1fr; }
}
.method-step {
  text-align: center;
  padding: 40px 24px;
}
.method-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.method-step h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.method-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ========== GOING DEEPER (home → platform bridge) ========== */
.going-deeper {
  padding: 112px 32px;
  background: var(--bg-primary);
}
.going-deeper-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.going-deeper h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.going-deeper > .going-deeper-inner > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 36px;
}
.layer-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 36px;
}
.layer-chip {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold-dark);
  background: rgba(233,168,72,0.12);
  padding: 8px 16px;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.layer-chip:hover {
  background: rgba(233,168,72,0.22);
  border-color: rgba(233,168,72,0.35);
  transform: translateY(-1px);
}

/* ========== SCENARIOS ========== */
.scenarios {
  padding: 128px 32px;
  max-width: 1120px;
  margin: 0 auto;
}
.scenarios-header {
  text-align: center;
  margin-bottom: 72px;
}
.scenarios-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.scenarios-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.scenario-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.scenario {
  padding: 32px 36px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--bg-primary);
  transition: all 0.3s ease;
}
.scenario:hover {
  border-color: rgba(113,135,163,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.scenario-context {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-blue);
  margin-bottom: 8px;
}
.scenario h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.scenario p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.scenario-roles {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ========== CTA / FORM ========== */
.cta-section {
  padding: 128px 32px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-inner > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 48px;
}
.form-wrapper {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Honeypot — kept in the DOM for bots, removed from layout/flow for humans. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: var(--color-white);
  color: var(--text-primary);
  transition: all 0.2s ease;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(113,135,163,0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-submit {
  margin-top: 8px;
}
.form-submit button {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--text-primary);
  padding: 16px 32px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-submit button:hover { background: #333; }
.form-submit button:disabled { opacity: 0.6; cursor: default; }
#contact-status {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
  color: var(--text-secondary);
}
#contact-status.error { color: #c0392b; }
#contact-status.success { color: #1e8e3e; }

/* Success state — replaces form contents after submit */
.form-success {
  text-align: center;
  padding: 56px 24px;
  animation: success-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes success-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  animation: success-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes success-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success-title {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.form-success-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 440px;
  margin: 0 auto;
}
.form-success-body strong { color: var(--text-primary); font-weight: 500; }
@media (prefers-reduced-motion: reduce) {
  .form-success, .form-success-icon { animation: none; }
}

/* ========== PLATFORM PAGE ========== */
.platform-hero {
  padding: 96px 32px 32px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.platform-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.platform-hero .hero-sub {
  margin-bottom: 0;
  max-width: 680px;
}

/* Sticky anchor strip — same pill row, sticks once scrolled past hero */
.layer-nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 14px 0;
}
.layer-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
}
.layer-nav .layer-chips {
  margin: 0;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0;
}
.layer-nav .layer-chip {
  scroll-snap-align: start;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layer-nav-inner { padding: 0 16px; justify-content: flex-start; }
  .layer-nav .layer-chips { justify-content: flex-start; }
}

/* Layer sections */
.layer {
  padding: 96px 32px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.layer:nth-child(even) { background: var(--bg-secondary); }
.layer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.layer:nth-child(even) .layer-inner {
  grid-template-columns: 1fr 1.05fr;
}
.layer:nth-child(even) .layer-copy { order: 2; }
.layer:nth-child(even) .layer-visual { order: 1; }

@media (max-width: 900px) {
  .layer { padding: 72px 24px; }
  .layer-inner,
  .layer:nth-child(even) .layer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .layer:nth-child(even) .layer-copy { order: 1; }
  .layer:nth-child(even) .layer-visual { order: 2; }
}

.layer-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.layer-copy h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.layer-subhead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 20px;
}
.layer-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.layer-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--bg-secondary);
  display: block;
}

/* ========== FOOTER ========== */
footer {
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.footer-brand {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.footer-brand a {
  color: var(--text-tertiary);
  text-decoration: none;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-tertiary);
}
.gold-line {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 24px;
}

/* ========== HERO CREDIBILITY LINE ========== */
.hero-sub + .hero-sub { margin-top: -24px; color: var(--text-primary); }
.hero-credibility { font-size: 14px; font-weight: 500; color: var(--color-blue); letter-spacing: 0.02em; margin: 0 0 32px; }

/* ========== ROI SECTION ========== */
.roi { padding: 128px 32px; max-width: 880px; margin: 0 auto; }
.roi-inner { text-align: center; }
.roi-inner h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 20px; }
.roi-lead { font-size: 19px; color: var(--text-primary); line-height: 1.5; margin: 0 auto 28px; font-weight: 500; max-width: 680px; }
.roi-body { font-size: 17px; color: var(--text-secondary); line-height: 1.6; max-width: 680px; margin: 0 auto 16px; text-align: left; }
.roi-bullets-intro { font-size: 16px; font-weight: 500; color: var(--text-primary); margin: 24px auto 14px; max-width: 680px; text-align: left; }
.roi-bullets { list-style: none; padding: 0; margin: 0 auto 24px; max-width: 680px; }
.roi-bullets li { padding: 14px 18px; margin-bottom: 10px; background: var(--bg-secondary); border-left: 3px solid var(--color-blue); border-radius: 0 12px 12px 0; font-size: 16px; color: var(--text-primary); line-height: 1.55; }
.roi-bullets strong { color: var(--color-blue); font-weight: 600; }
.roi-close { font-style: italic; text-align: center; margin: 28px auto 0; color: var(--text-secondary); max-width: 680px; }

/* ========== DEPLOYMENT TEAM (home) ========== */
.deployment-team { padding: 128px 32px; background: var(--bg-primary); }
.deployment-team-inner { max-width: 1120px; margin: 0 auto; }
.deployment-team-header { text-align: center; margin: 0 auto 56px; max-width: 680px; }
.deployment-team-header h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
.deployment-team-header p { font-size: 18px; color: var(--text-secondary); line-height: 1.5; }
.deployment-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-role { background: var(--bg-secondary); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 28px 28px 24px; }
.team-role-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 980px; margin-bottom: 14px; }
.team-role-dedicated { color: var(--color-gold-dark); background: rgba(233,168,72,0.14); }
.team-role-on-call { color: var(--color-blue); background: rgba(113,135,163,0.14); }
.team-role h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.team-role p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }
.deployment-team-cta { text-align: center; margin-top: 40px; }

/* ========== TEAM PAGE ========== */
.team-roles { padding: 88px 32px; background: var(--bg-primary); }
.team-roles-inner { max-width: 760px; margin: 0 auto; }
.team-role-block { padding: 56px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.team-role-block:first-child { border-top: 0; padding-top: 0; }
.team-role-eyebrow { font-size: 12px; font-weight: 600; color: var(--color-blue); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.team-role-block h2 { font-size: clamp(26px, 3vw, 32px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 18px; }
.team-role-block p { font-size: 17px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.team-role-block p:last-child { margin-bottom: 0; }

/* ========== RESPONSIVE REFINEMENTS (phone + tablet) ========== */

/* Tablet / small screens — tighten the desktop section rhythm */
@media (max-width: 900px) {
  .hero { padding: 80px 28px; }
  .sports, .method, .scenarios, .cta-section, .roi, .deployment-team, .team-roles { padding: 88px 28px; }
  .going-deeper { padding: 80px 28px; }
  .sports-header, .method-header, .scenarios-header { margin-bottom: 52px; }
}

/* Once the inline links collapse, keep the brand left and the CTA/menu grouped right */
@media (max-width: 768px) {
  .nav-cta,
  .admin-user { margin-left: auto; }
}

/* Phone */
@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; gap: 10px; }
  .nav-cta { padding: 8px 14px; font-size: 12.5px; }
  .top-banner { font-size: 12.5px; padding: 9px 16px; }

  .hero { padding: 56px 20px 48px; }
  .hero-sub { margin-bottom: 32px; }
  .hero-cta-row { gap: 12px; margin-bottom: 40px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { width: 100%; justify-content: center; }

  .trust { padding: 48px 20px; }
  .trust-logos { gap: 20px 28px; }

  .sports, .method, .scenarios, .cta-section, .roi, .deployment-team, .team-roles { padding: 64px 20px; }
  .roi-bullets li { padding: 12px 14px; font-size: 15px; }
  .deployment-team-grid { grid-template-columns: 1fr; }
  .team-role-block { padding: 40px 0; }
  .going-deeper { padding: 64px 20px; }
  .sports-header, .method-header, .scenarios-header { margin-bottom: 40px; }
  .sports-header p, .method-header p, .scenarios-header p, .cta-inner > p { font-size: 16px; }

  .method-step { padding: 16px 8px; }
  .scenario { padding: 24px 22px; }

  .layer { padding: 56px 20px; }
  .platform-hero { padding: 64px 20px 20px; }

  footer { padding: 40px 20px; }
}

/* Small phones */
@media (max-width: 360px) {
  .hero h1 { font-size: 32px; }
  .trust-logos { gap: 16px 22px; }
  .scenario { padding: 22px 18px; }
}

/* Ultra-narrow phones — drop the sticky CTA so the bar can never overflow (hero + banner still convert) */
@media (max-width: 340px) {
  .nav-cta { display: none; }
}
