/* ════════════════════════════════════════════════════════════════
   PRIME TEAM AGENCY — Landing Page
   Brand tokens inherited from the Capabilities Deck system.
   ════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink:    #0a1620;
  --ink-2:  #081019;
  --navy:   #122a37;
  --navy-2: #16395c;
  --blue:   #06b0f7;
  --cyan:   #97e4ff;
  --mist:   #e6e6e6;
  --white:  #ffffff;
  --green:  #38e08b;

  --line:   rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.06);
  --panel:  rgba(255,255,255,0.025);
  --panel-2:rgba(255,255,255,0.045);
  --txt:    rgba(255,255,255,0.82);
  --txt-mute: rgba(255,255,255,0.55);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --maxw: 1240px;
  --gutter: 40px;
  --r: 18px;
  --r-lg: 26px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* Background grain / depth — fixed, subtle */
.page-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(6,176,247,0.10), transparent 60%),
    radial-gradient(800px 700px at 10% 12%, rgba(22,57,92,0.45), transparent 55%),
    var(--ink);
}
.page-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}

/* ─── Type scale ─────────────────────────────────────────── */
.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--blue);
  display: inline-block; flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; }
.section-title {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.section-title .hl { color: var(--blue); }
.lede {
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.5;
  color: var(--txt);
  font-weight: 400;
  max-width: 60ch;
  text-wrap: pretty;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, box-shadow .25s, border-color .25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: var(--blue); color: #04141f;
  box-shadow: 0 8px 30px rgba(6,176,247,0.28), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(6,176,247,0.42); }
.btn--ghost {
  background: rgba(255,255,255,0.03); color: var(--white);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: rgba(151,228,255,0.5); background: rgba(151,228,255,0.06); transform: translateY(-2px); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(3px); }
.btn--lg { padding: 19px 34px; font-size: 18px; }
.btn--block { width: 100%; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,16,25,0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line-2);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 76px; }
.nav .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav .brand img { height: 34.5px; width: auto; display: block; filter: drop-shadow(0 0 16px rgba(6,176,247,0.25)); }
.nav .brand .tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--txt-mute); border-left: 1px solid var(--line); padding-left: 12px; line-height: 1.25; white-space: nowrap;
}
.nav .links { display: flex; align-items: center; gap: 26px; }
.nav .links a { font-size: 15px; font-weight: 500; color: var(--txt); transition: color .2s; white-space: nowrap; position: relative; }
.nav .links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.nav .links a:hover { color: var(--white); }
.nav .links a:hover::after { transform: scaleX(1); }
.nav .nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
@media (max-width: 1080px) { .nav .links { gap: 20px; } .nav .links a { font-size: 14px; } }
@media (max-width: 980px) { .nav .links { display: none; } }
@media (max-width: 720px) { .nav .nav-book { display: none; } }
@media (max-width: 560px) { .nav .nav-cta .btn { padding: 12px 18px; font-size: 14px; } .nav .brand .tag { display: none; } }

/* ─── Section frame ──────────────────────────────────────── */
.section { position: relative; padding: 110px 0; }
.section--tight { padding: 70px 0; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 130px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  min-width: 112%; min-height: 112%; object-fit: cover;
  opacity: 0.50; filter: saturate(1) contrast(1.06);
}
.hero-bg .tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 72% 32%, rgba(6,176,247,0.10), transparent 62%),
    linear-gradient(180deg, rgba(10,22,32,0.26) 0%, rgba(10,22,32,0.50) 60%, var(--ink) 100%),
    linear-gradient(90deg, var(--ink) 0%, rgba(10,22,32,0.48) 32%, rgba(10,22,32,0.04) 62%, transparent 100%);
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; width: 100%; }
.hero-copy { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); padding: 8px 14px; border: 1px solid rgba(151,228,255,0.25);
  border-radius: 999px; background: rgba(151,228,255,0.05); margin-bottom: 28px;
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.0; letter-spacing: -0.04em;
}
.hero h1 .line { padding-bottom: 0.04em; }
.hero h1 .hl { color: var(--blue); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero-sub { margin: 30px 0 36px; font-size: clamp(18px, 2vw, 21px); color: var(--txt); line-height: 1.5; max-width: 33ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 40px; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta .m .v { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
.hero-meta .m .v .u { color: var(--blue); }
.hero-meta .m .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); margin-top: 4px; }

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: 2; }
}

/* ─── Hero dashboard (animated) ──────────────────────────── */
.dash {
  position: relative;
  background: linear-gradient(180deg, rgba(18,42,55,0.85), rgba(10,22,32,0.92));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.dash::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg); pointer-events: none;
  background: radial-gradient(120% 80% at 80% 0%, rgba(6,176,247,0.10), transparent 50%);
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-top .ttl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }
.dash-top .dots { display: flex; gap: 6px; }
.dash-top .dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dash-top .dots i.on { background: var(--green); box-shadow: 0 0 8px var(--green); }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.dash-kpi { background: var(--panel); border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 14px 12px; }
.dash-kpi .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }
.dash-kpi .n { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; line-height: 1; }
.dash-kpi .d { font-family: var(--font-mono); font-size: 11px; margin-top: 8px; color: var(--green); display: flex; align-items: center; gap: 5px; }
.dash-kpi .d.flat { color: var(--cyan); }
.dash-chart { background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; padding: 16px; }
.dash-chart .ch-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.dash-chart .ch-head .lab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }
.dash-chart .ch-head .val { font-size: 15px; font-weight: 700; }
.dash-chart .ch-head .val .u { color: var(--blue); }
.spark { width: 100%; height: 96px; display: block; }
.spark .area { fill: url(#sparkfill); }
.spark .ln { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(6,176,247,0.5)); }
.spark .dot { fill: var(--white); stroke: var(--blue); stroke-width: 2.5; }
.dash-foot { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.chan-tile {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px;
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 11px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--txt);
}
.chan-tile .blip { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; box-shadow: 0 0 8px var(--blue); }
.dash-float {
  position: absolute; right: -18px; top: 64px;
  background: rgba(8,16,25,0.92); border: 1px solid rgba(151,228,255,0.3);
  border-radius: 14px; padding: 12px 16px; backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}
.dash-float .l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); }
.dash-float .n { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.dash-float .n .u { color: var(--green); }
@media (max-width: 480px) { .dash-float { display: none; } }

/* ════════════════════════════════════════════════════════════════
   CREDIBILITY BAR
   ════════════════════════════════════════════════════════════════ */
.cred { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: rgba(255,255,255,0.012); }
.cred .wrap { padding-top: 70px; padding-bottom: 70px; }
.cred-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; }
.cred-eyebrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); }
.cred-head { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-top: 22px; text-wrap: balance; }

.cred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-2); border-left: 1px solid var(--line-2);
}
.cred-cell {
  border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  min-height: 128px; padding: 22px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  transition: background .3s;
}
.cred-cell:hover { background: rgba(255,255,255,0.03); }
.cred-mark {
  width: 34px; height: 34px;
  background-color: rgba(255,255,255,0.55);
  -webkit-mask: var(--logo) center / contain no-repeat;
  mask: var(--logo) center / contain no-repeat;
  transition: background-color .3s, transform .3s;
}
.cred-cell:hover .cred-mark { background-color: #fff; transform: translateY(-2px); }
.cred-word {
  font-family: var(--font-sans); font-size: 23px; font-weight: 800; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.55); line-height: 1; transition: color .3s, transform .3s;
}
.cred-cell:hover .cred-word { color: #fff; transform: translateY(-2px); }
.cred-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-mute); transition: color .3s; }
.cred-cell:hover .cred-label { color: rgba(255,255,255,0.85); }
@media (max-width: 1000px) {
  .cred-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL MARKETPLACES — cinematic Earth panel
   ════════════════════════════════════════════════════════════════ */
.earth-stage {
  position: relative; width: 100%; max-width: var(--maxw); margin: 6px auto 52px;
  aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,0.4);
  background: #04090f;
}
.earth-video, .earth-tint, .earth-arcs, .earth-frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.earth-video { object-fit: cover; display: block; }
.earth-tint {
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 46% at 96% 90%, rgba(4,9,15,0.99) 0%, rgba(4,9,15,0.95) 26%, rgba(4,9,15,0.7) 48%, rgba(4,9,15,0.32) 68%, transparent 90%),
    linear-gradient(0deg, rgba(4,9,15,0.9) 0%, rgba(4,9,15,0.55) 16%, rgba(4,9,15,0.16) 36%, transparent 52%),
    linear-gradient(72deg, rgba(4,9,15,0.78) 0%, rgba(4,9,15,0.3) 34%, transparent 60%),
    radial-gradient(60% 85% at 26% 40%, rgba(8,18,28,0.3), transparent 60%);
}

.earth-overlay {
  position: absolute; left: 0; bottom: 0; z-index: 4;
  padding: clamp(28px, 4.4vw, 60px); max-width: 780px;
}
.earth-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(151,228,255,0.22); background: rgba(6,14,22,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.earth-eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); animation: pulse 2s infinite; }
.earth-title {
  font-size: clamp(30px, 4.6vw, 60px); font-weight: 800; letter-spacing: -0.038em; line-height: 0.98;
  text-wrap: balance; max-width: 15ch; text-shadow: 0 2px 36px rgba(0,0,0,0.55);
}
.earth-title .hl { color: var(--blue); }
.global--hero { padding-top: 104px; }
.global--hero .earth-title { max-width: 24ch; font-size: clamp(28px, 4vw, 52px); line-height: 1.02; }
@media (max-width: 620px) { .global--hero { padding-top: 88px; } }
.earth-lede {
  margin: 22px 0 0; font-size: clamp(15px, 1.6vw, 19px); line-height: 1.5; color: var(--txt);
  max-width: 48ch; text-wrap: pretty; text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.earth-arcs { pointer-events: none; z-index: 2; }
.earth-frame {
  pointer-events: none; border-radius: 22px; z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(151,228,255,0.14), inset 0 0 80px rgba(0,0,0,0.55);
}
.earth-chip {
  position: absolute; left: 20px; top: 18px; z-index: 4; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); padding: 8px 13px; border-radius: 999px;
  background: rgba(6,14,22,0.55); border: 1px solid rgba(151,228,255,0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.earth-chip .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); animation: pulse 2s infinite; }
@media (max-width: 620px) {
  /* Let the stage grow to fit its copy instead of clipping it inside a fixed 4:3 box.
     The video stays a full-cover background; the overlay flows in and is bottom-anchored,
     so the globe stays visible above the headline and nothing gets cut off. */
  .earth-stage { aspect-ratio: auto; min-height: 330px; display: flex; align-items: flex-end; margin-bottom: 30px; border-radius: 16px; }
  .earth-frame { border-radius: 16px; }
  .earth-chip { font-size: 10px; left: 12px; top: 12px; padding: 6px 10px; }
  .earth-overlay { position: relative; left: auto; bottom: auto; width: 100%; max-width: 100%; padding: 28px 20px 24px; }
  .earth-eyebrow { font-size: 10px; letter-spacing: 0.08em; gap: 7px; padding: 7px 12px; margin-bottom: 14px; max-width: 100%; }
}
@media (max-width: 440px) { .earth-lede { display: none; } }

.global .globe-grid {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 12px; margin-top: 8px;
}
.globe {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 10px 18px; border-radius: 16px;
  border: 1px solid var(--line-2); background: var(--panel);
  text-align: center; position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s, box-shadow .3s;
}
.globe::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px; pointer-events: none; opacity: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(6,176,247,0.16), transparent 60%);
  transition: opacity .3s;
}
.globe:hover { transform: translateY(-4px); border-color: rgba(151,228,255,0.4); background: var(--panel-2); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.globe:hover::before { opacity: 1; }
.globe .flag {
  font-size: 30px; line-height: 1; display: block;
  filter: saturate(1.05) drop-shadow(0 4px 10px rgba(0,0,0,0.45));
}
.globe .cn {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em;
  color: var(--txt); line-height: 1.3; text-wrap: balance;
}
.globe:hover .cn { color: var(--white); }
.globe-foot {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px;
  margin-top: 40px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--txt-mute);
}
.globe-foot .gf-stat b { color: var(--white); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; margin-right: 4px; }
.globe-foot .gf-div { width: 1px; height: 16px; background: var(--line); }
@media (max-width: 1100px) { .global .globe-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 620px) { .global .globe-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } .globe .flag { font-size: 26px; } }
@media (max-width: 380px) { .global .globe-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════
   PROBLEM
   ════════════════════════════════════════════════════════════════ */
.prob-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.prob {
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--line-2); border-radius: var(--r); padding: 28px 30px;
  background: var(--panel); transition: border-color .3s, background .3s;
}
.prob:hover { border-color: rgba(255,90,90,0.3); background: rgba(255,90,90,0.03); }
.prob .x {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255,90,90,0.10); border: 1px solid rgba(255,90,90,0.25); color: #ff8a8a;
  font-family: var(--font-mono); font-size: 18px; line-height: 1;
}
.prob .pt { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 2px 0 8px; }
.prob .pb { font-size: 15.5px; color: var(--txt-mute); line-height: 1.45; }
@media (max-width: 760px) { .prob-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   SOLUTION
   ════════════════════════════════════════════════════════════════ */
.sol-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.sol {
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 28px; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 14px;
}
.sol::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.sol:hover { transform: translateY(-4px); border-color: rgba(151,228,255,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.sol:hover::after { transform: scaleX(1); }
.sol .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(6,176,247,0.12); border: 1px solid rgba(6,176,247,0.25); display: grid; place-items: center; }
.sol .ic svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.7; }
.sol .sn { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.sol .sd { font-size: 15px; color: var(--txt-mute); line-height: 1.5; }
.sol .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.sol .tags span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan); background: rgba(151,228,255,0.07); border: 1px solid rgba(151,228,255,0.15); border-radius: 999px; padding: 4px 9px; }
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; } .col-8 { grid-column: span 8; } .col-12 { grid-column: span 12; }
@media (max-width: 860px) { .sol-grid { grid-template-columns: 1fr 1fr; } .col-6,.col-4,.col-8,.col-12 { grid-column: span 1; } }
@media (max-width: 560px) { .sol-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   PRIME GROWTH SYSTEM — sticky scroll
   ════════════════════════════════════════════════════════════════ */
.system { position: relative; }
.system .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.system-sticky { position: sticky; top: 0; height: 100svh; display: flex; flex-direction: column; justify-content: center; }
.system-sticky .eyebrow { margin-bottom: 18px; }
.system-sticky h2 { font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -0.035em; }
.system-progress { margin-top: 38px; display: flex; flex-direction: column; gap: 4px; }
.sp-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-2); opacity: 0.4; transition: opacity .4s; }
.sp-row.on { opacity: 1; }
.sp-row .spn { font-family: var(--font-mono); font-size: 12px; color: var(--blue); width: 32px; }
.sp-row .spt { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.sp-row .spbar { margin-left: auto; width: 60px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.1); overflow: hidden; }
.sp-row .spbar i { display: block; height: 100%; width: 0; background: var(--blue); transition: width .4s; box-shadow: 0 0 8px var(--blue); }
.sp-row.on .spbar i { width: 100%; }

.system-steps { display: flex; flex-direction: column; gap: 24px; padding: 14vh 0; }
.step {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18,42,55,0.6), rgba(10,22,32,0.85));
  padding: 38px; position: relative; overflow: hidden; min-height: 280px;
  display: flex; flex-direction: column;
}
.step .step-bgnum {
  position: absolute; right: 18px; top: -28px;
  font-size: 200px; font-weight: 800; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.step .step-k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 12px; }
.step .step-k .ln { width: 30px; height: 1px; background: var(--blue); }
.step h3 { font-size: 42px; letter-spacing: -0.03em; margin: 18px 0 14px; }
.step .step-d { font-size: 17px; color: var(--txt); line-height: 1.55; max-width: 46ch; }
.step .step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.step .step-tags span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--txt-mute); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }
.step .conn { position: absolute; left: 38px; bottom: -24px; width: 1px; height: 24px; background: linear-gradient(180deg, var(--blue), transparent); }
@media (max-width: 940px) {
  .system .wrap { grid-template-columns: 1fr; gap: 0; }
  .system-sticky { position: relative; height: auto; padding: 20px 0 10px; }
  .system-steps { padding: 30px 0 0; }
}

/* ════════════════════════════════════════════════════════════════
   KPI DASHBOARD
   ════════════════════════════════════════════════════════════════ */
.kpi-board {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18,42,55,0.5), rgba(10,22,32,0.75));
  padding: 8px; box-shadow: 0 40px 100px rgba(0,0,0,0.45);
}
.kpi-board-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line-2); }
.kpi-board-top .l { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-mute); }
.kpi-board-top .live { display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--green); }
.kpi-board-top .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); border-radius: 0 0 calc(var(--r-lg) - 8px) calc(var(--r-lg) - 8px); overflow: hidden; }
.kpi {
  background: var(--ink); padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 4px;
  position: relative; transition: background .3s;
}
.kpi:hover { background: #0c1a26; }
.kpi .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-mute); }
.kpi .n { font-size: clamp(34px, 4vw, 46px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-top: 10px; }
.kpi .n .u { color: var(--blue); font-size: 0.6em; }
.kpi .d { font-family: var(--font-mono); font-size: 12px; margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.kpi .d.up { color: var(--green); } .kpi .d.dn { color: var(--cyan); }
.kpi .micro { margin-top: 16px; height: 28px; }
.kpi .micro svg { width: 100%; height: 100%; }
.kpi .micro path.l { fill: none; stroke: var(--blue); stroke-width: 2; opacity: 0.85; }
.kpi .micro path.f { fill: rgba(6,176,247,0.10); stroke: none; }
.kpi-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: var(--txt-mute); text-align: center; margin-top: 22px; text-transform: uppercase; }
@media (max-width: 860px) { .kpi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .kpi-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   DIFFERENTIATION
   ════════════════════════════════════════════════════════════════ */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.diff {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px 28px; border: 1px solid var(--line-2); border-radius: var(--r);
  background: var(--panel); transition: border-color .3s, background .3s, transform .3s;
}
.diff:hover { border-color: rgba(56,224,139,0.35); background: rgba(56,224,139,0.03); transform: translateY(-2px); }
.diff .chk { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: rgba(56,224,139,0.12); border: 1px solid rgba(56,224,139,0.3); display: grid; place-items: center; }
.diff .chk svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2.4; }
.diff .dt { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 6px; }
.diff .dd { font-size: 14.5px; color: var(--txt-mute); line-height: 1.45; }
@media (max-width: 760px) { .diff-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   USE CASES
   ════════════════════════════════════════════════════════════════ */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uc {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel); padding: 26px; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 14px; min-height: 210px;
}
.uc:hover { transform: translateY(-4px); border-color: rgba(151,228,255,0.3); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.uc .uc-top { display: flex; align-items: center; justify-content: space-between; }
.uc .uc-num { font-family: var(--font-mono); font-size: 12px; color: var(--blue); letter-spacing: 0.08em; }
.uc .uc-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(6,176,247,0.1); border: 1px solid rgba(6,176,247,0.22); display: grid; place-items: center; }
.uc .uc-ic svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.7; }
.uc .uc-t { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.uc .uc-d { font-size: 14.5px; color: var(--txt-mute); line-height: 1.5; }
.uc .uc-arrow { margin-top: auto; font-family: var(--font-mono); font-size: 12px; color: var(--cyan); display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.uc:hover .uc-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 860px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .uc-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   AUDIT OFFER
   ════════════════════════════════════════════════════════════════ */
.audit { position: relative; }
.audit-card {
  border: 1px solid rgba(151,228,255,0.22); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(22,57,92,0.45), rgba(10,22,32,0.7));
  padding: 0; overflow: hidden; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
}
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; }
.audit-left { padding: 56px; border-right: 1px solid var(--line-2); }
.audit-left .price { display: flex; align-items: baseline; gap: 14px; margin: 26px 0 8px; }
.audit-left .price .free { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; }
.audit-left .price .was { font-family: var(--font-mono); font-size: 16px; color: var(--txt-mute); text-decoration: line-through; }
.audit-left .price .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(56,224,139,0.3); border-radius: 999px; padding: 5px 11px; }
.audit-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 2px; }
.audit-list li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--line-2); font-size: 16px; color: var(--txt); }
.audit-list li svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2.2; margin-top: 2px; }
.audit-right { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 820px) { .audit-grid { grid-template-columns: 1fr; } .audit-left { border-right: 0; border-bottom: 1px solid var(--line-2); padding: 40px; } .audit-right { padding: 40px; } }

/* ─── Form ───────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--white);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 11px;
  padding: 14px 16px; outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2397e4ff' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.32); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6,176,247,0.16); background: rgba(6,176,247,0.04); }
.field .opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em;
  padding: 11px 15px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.02); color: var(--txt); cursor: pointer; user-select: none;
  transition: all .2s;
}
.opt:hover { border-color: rgba(151,228,255,0.4); }
.opt input { display: none; }
.opt.sel { background: rgba(6,176,247,0.14); border-color: var(--blue); color: var(--white); }

/* ─── Budget acknowledgment gate ─────────────────────────── */
.budget-gate {
  display: flex; gap: 14px; align-items: flex-start; cursor: pointer; user-select: none;
  padding: 16px 18px; border-radius: 13px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.budget-gate:hover { border-color: rgba(151,228,255,0.4); }
.budget-gate input { position: absolute; opacity: 0; pointer-events: none; }
.budget-gate .bg-box {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 6px;
  border: 1.5px solid var(--line-2); background: rgba(255,255,255,0.03);
  display: grid; place-items: center; transition: all .2s;
}
.budget-gate .bg-box svg { width: 14px; height: 14px; stroke: var(--ink); fill: none; stroke-width: 3; opacity: 0; transform: scale(.6); transition: all .2s; }
.budget-gate input:checked ~ .bg-box { background: var(--blue); border-color: var(--blue); }
.budget-gate input:checked ~ .bg-box svg { opacity: 1; transform: scale(1); }
.budget-gate input:checked ~ .bg-copy .bg-head strong { color: var(--green); }
.budget-gate.field-error { border-color: #ff6a6a; box-shadow: 0 0 0 3px rgba(255,106,106,0.12); }
.bg-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.bg-head { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
.bg-head strong { font-weight: 800; color: var(--blue); transition: color .2s; }
.bg-sub { font-size: 12.5px; line-height: 1.5; color: var(--txt-mute); text-wrap: pretty; }
.bg-sub .req { color: var(--blue); }
.form-foot { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 10px; }
.form-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; line-height: 1.55; color: var(--txt-mute); display: flex; align-items: flex-start; gap: 8px; min-width: 0; text-wrap: pretty; }
.form-note svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: rgba(56,224,139,0.14); border: 1px solid rgba(56,224,139,0.4); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success .ok svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 2.4; }
.form-success h3 { font-size: 28px; letter-spacing: -0.02em; margin-bottom: 10px; }
.form-success p { color: var(--txt-mute); font-size: 16px; }
.field-error .opts { outline: 1px solid rgba(255,90,90,0.55); outline-offset: 6px; border-radius: 8px; }
.field-msg { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: #ff7a7a; margin-top: 6px; }
.form.gate-active { box-shadow: 0 0 0 1px rgba(6,176,247,0.4), 0 0 60px rgba(6,176,247,0.14); border-radius: var(--r); transition: box-shadow .4s; }

/* ════════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════════ */
.final { position: relative; text-align: center; padding: 130px 0; overflow: hidden; }
.final::before {
  content: ''; position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%);
  width: 900px; height: 600px; background: radial-gradient(closest-side, rgba(6,176,247,0.18), transparent 70%);
  pointer-events: none; filter: blur(40px);
}
.final h2 { font-size: clamp(40px, 6.5vw, 84px); letter-spacing: -0.045em; line-height: 0.95; position: relative; }
.final h2 .hl { color: var(--blue); }
.final p { position: relative; max-width: 56ch; margin: 26px auto 38px; color: var(--txt); font-size: clamp(17px,2vw,20px); }
.final .ctas { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final .urgency { position: relative; margin-top: 30px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); display: inline-flex; align-items: center; gap: 10px; }
.final .urgency i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s infinite; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line-2); padding: 50px 0 40px; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .brand img { height: 30px; }
.footer .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--txt-mute); text-transform: uppercase; }
.footer .meta a:hover { color: var(--cyan); }

/* ─── Sticky mobile CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
  display: none; padding: 12px; border-radius: 16px;
  background: rgba(8,16,25,0.86); backdrop-filter: blur(16px);
  border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  transform: translateY(140%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }
@media (max-width: 720px) { .sticky-cta { display: block; } }

/* ─── Phone refinements ──────────────────────────────────── */
@media (max-width: 520px) {
  .form .row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .final { padding: 100px 0; }
  .hero-ctas .btn, .final .ctas .btn { flex: 1 1 auto; }
  .audit-left, .audit-right { padding: 32px 24px; }
  body { padding-bottom: 78px; } /* clear the sticky mobile CTA */
}

/* ════════════════════════════════════════════════════════════════
   PROOF — real client case studies (tabbed showcase)
   ════════════════════════════════════════════════════════════════ */
.proof { position: relative; }

/* aggregate marquee */
.proof-marquee {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 44px;
}
.pm {
  background: linear-gradient(180deg, rgba(18,42,55,0.45), rgba(10,22,32,0.72));
  padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 9px;
  position: relative; transition: background .3s;
}
.pm:hover { background: linear-gradient(180deg, rgba(22,57,92,0.5), rgba(10,22,32,0.78)); }
.pm .pmn { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.045em; line-height: 1; }
.pm .pmn .u { color: var(--blue); }
.pm .pml { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--txt-mute); line-height: 1.4; }
.pm .pml b { color: var(--cyan); font-weight: 500; }
@media (max-width: 860px) { .proof-marquee { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .proof-marquee { grid-template-columns: 1fr; } }

/* ── Featured case study (Tide) ─────────────────────────── */
.tide-case {
  --orange: #ff6a1a;
  display: grid; grid-template-columns: 1.5fr 1fr;
  border: 1px solid rgba(6,176,247,0.32);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 34px;
  box-shadow: 0 34px 90px rgba(0,0,0,0.5), 0 0 70px rgba(6,176,247,0.10);
}

/* LEFT panel ----------------------------------------------- */
.tc-left { background: #fff; display: flex; flex-direction: column; }
.tc-toprow { display: flex; align-items: stretch; gap: 16px; padding: 28px 32px 0; }
.tc-case {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  color: #0a1620; border: 1.5px solid #0a1620; padding: 12px 18px; display: inline-flex; align-items: center;
}
.tc-banner {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: #fff; background: var(--orange); padding: 12px 18px; display: inline-flex; align-items: center;
}

.tc-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 30px 32px 36px; }
.tc-shot { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.tc-shot figcaption {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #0a1620;
}
.tc-img { aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tc-img img { width: 100%; height: 100%; object-fit: contain; display: block; }

.tc-phases { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); background: #0a1620; }
.tc-phase { padding: 22px 26px; display: flex; flex-direction: column; gap: 8px; border-left: 1px solid rgba(255,255,255,0.08); }
.tc-phase:first-child { border-left: none; }
.tc-pk { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.tc-phase--test .tc-pk { color: var(--orange); }
.tc-phase--win .tc-pk { color: var(--green); }
.tc-pt { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1.1; }
.tc-pd { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.02em; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* RIGHT panel ---------------------------------------------- */
.tc-right {
  background:
    radial-gradient(120% 70% at 90% 0%, rgba(6,176,247,0.16), transparent 58%),
    linear-gradient(165deg, #103247 0%, #0a1c2b 48%, #06121c 100%);
  padding: 38px 40px 36px; display: flex; flex-direction: column;
}
.tc-rhead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.tc-mark {
  width: 64px; height: 64px; flex-shrink: 0; background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 19px; font-weight: 700; letter-spacing: 0.02em; color: #0a1620;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.tc-brandlab { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-mute); }
.tc-big {
  font-size: clamp(72px, 9vw, 116px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.82;
  background: linear-gradient(96deg, var(--green) 8%, var(--blue) 92%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.tc-big .u { font-weight: 700; }
.tc-big .s { font-size: 0.5em; }
.tc-sub { font-size: 21px; font-weight: 500; line-height: 1.32; color: #fff; margin: 22px 0 0; max-width: 24ch; text-wrap: pretty; }
.tc-para { font-size: 15px; line-height: 1.55; color: var(--txt); margin: 18px 0 0; text-wrap: pretty; }

.tc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 28px 0;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12);
}
.tc-cell { background: #060f18; padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 12px; }
.tc-ck { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }
.tc-cn { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; white-space: nowrap; }
.tc-cn.pos { color: var(--green); }

.tc-tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: auto; }
.tc-tag { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }

@media (max-width: 900px) {
  .tide-case { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tc-toprow { flex-direction: column; gap: 10px; padding: 22px 22px 0; }
  .tc-images { gap: 16px; padding: 22px; }
  .tc-phases { grid-template-columns: 1fr; }
  .tc-phase { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .tc-phase:first-child { border-top: none; }
  .tc-right { padding: 28px 24px; }
  .tc-grid { grid-template-columns: 1fr; }
}

.more-cases { margin: 56px 0 22px; }

/* ── Secondary case cards (3-up) ─────────────────────────── */
.case-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ccard {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2); border-radius: 20px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.ccard:hover { transform: translateY(-4px); border-color: rgba(6,176,247,0.45); box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 50px rgba(6,176,247,0.10); }
.cc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cc-id { display: flex; flex-direction: column; gap: 5px; }
.cc-brand { font-size: 23px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.cc-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--txt-mute); }
.cc-badge {
  flex-shrink: 0; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cyan); background: rgba(151,228,255,0.08); border: 1px solid rgba(151,228,255,0.2);
  border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}
.cc-hero { display: flex; flex-direction: column; gap: 9px; padding-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.cc-hn { font-size: clamp(46px, 5vw, 58px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.86; display: flex; align-items: baseline; }
.cc-hn .u { color: var(--blue); font-size: 0.62em; margin-right: 2px; }
.cc-hn .s { color: var(--blue); font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.cc-hl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cyan); line-height: 1.4; max-width: 26ch; }
.cc-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cc-stat { display: flex; flex-direction: column; gap: 6px; }
.cc-sn { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.cc-sn .u { color: var(--blue); }
.cc-sl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--txt-mute); }
.cc-result { margin: 0; margin-top: auto; font-size: 13.5px; line-height: 1.5; color: var(--txt); text-wrap: pretty; }
.ccard--img .cc-art {
  position: absolute; right: -34px; bottom: -22px; width: 168px; height: auto; z-index: 0;
  opacity: 0.16; pointer-events: none; filter: saturate(1.1);
  -webkit-mask-image: linear-gradient(225deg, #000 35%, transparent 80%);
  mask-image: linear-gradient(225deg, #000 35%, transparent 80%);
}
.ccard--img > *:not(.cc-art) { position: relative; z-index: 1; }
.ccard--img { border-color: rgba(6,176,247,0.28); }
@media (max-width: 900px) { .case-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
@media (min-width: 901px) and (max-width: 1040px) { .case-cards { gap: 14px; } .ccard { padding: 24px 22px; } }

/* tabs */
.case-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.case-tab {
  display: flex; flex-direction: column; gap: 7px; text-align: left;
  padding: 16px 18px 18px; border-radius: 14px; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line-2); color: var(--white);
  font-family: var(--font-sans); position: relative; overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s;
}
.case-tab:hover { border-color: rgba(151,228,255,0.35); background: var(--panel-2); transform: translateY(-2px); }
.case-tab.on { border-color: rgba(6,176,247,0.55); background: rgba(6,176,247,0.09); }
.case-tab .ct-brand { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.case-tab .ct-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--txt-mute); line-height: 1.3; }
.case-tab.on .ct-cat { color: var(--cyan); }
.case-tab .ct-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,0.07); }
.case-tab .ct-bar i { display: block; height: 100%; width: 0; background: var(--blue); box-shadow: 0 0 8px var(--blue); }
@media (max-width: 820px) { .case-tabs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .case-tabs { grid-template-columns: repeat(2, 1fr); } .case-tab .ct-brand { font-size: 15px; } }

/* stage */
.case-stages { position: relative; }
.case { display: none; }
.case.on { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .case.on { animation: caseIn .55s cubic-bezier(.2,.8,.2,1) both; }
}
@keyframes caseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.case-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; min-height: 480px;
}
.case-main {
  background: linear-gradient(180deg, rgba(18,42,55,0.5), rgba(10,22,32,0.82));
  padding: 42px 44px; display: flex; flex-direction: column;
}
.case-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.case-brand { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.case-brand .cb-sub { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--txt-mute); text-transform: none; }
.case-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.case-chips .chip { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan); background: rgba(151,228,255,0.08); border: 1px solid rgba(151,228,255,0.18); border-radius: 999px; padding: 5px 10px; white-space: nowrap; }
.case-chips .chip.alt { color: var(--txt-mute); background: rgba(255,255,255,0.03); border-color: var(--line); }

.case-stats { display: flex; gap: 30px; flex-wrap: wrap; margin: 30px 0 6px; padding-bottom: 28px; border-bottom: 1px solid var(--line-2); }
.cstat { display: flex; flex-direction: column; gap: 8px; }
.cstat .csn { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; }
.cstat .csn .u { color: var(--blue); }
.cstat .csl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--txt-mute); max-width: 22ch; line-height: 1.4; }

.case-story { display: flex; flex-direction: column; gap: 0; margin-top: 26px; }
.cs-row { display: grid; grid-template-columns: 104px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line-2); }
.cs-row:first-child { border-top: 0; }
.cs-row .cs-k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; padding-top: 3px; }
.cs-row.challenge .cs-k { color: #ff8a8a; }
.cs-row.solution .cs-k { color: var(--cyan); }
.cs-row.result .cs-k { color: var(--green); }
.cs-row p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--txt); }
.cs-row.result p { color: var(--white); font-weight: 500; }

/* visual panel */
.case-visual {
  position: relative; overflow: hidden; min-height: 480px;
  background: radial-gradient(120% 90% at 70% 0%, rgba(6,176,247,0.12), transparent 55%), #06121c;
  display: flex; flex-direction: column;
}
.cv-badge {
  position: absolute; left: 22px; top: 20px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); padding: 7px 12px; border-radius: 999px;
  background: rgba(6,14,22,0.6); border: 1px solid rgba(151,228,255,0.2);
  backdrop-filter: blur(8px);
}
.cv-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }

.cv-wm {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  font-size: clamp(96px, 15vw, 188px); font-weight: 800; letter-spacing: -0.06em;
  line-height: 0.8; color: rgba(255,255,255,0.05);
  -webkit-text-stroke: 1px rgba(151,228,255,0.10);
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 0;
}
.cv-slot { position: absolute; inset: 0; z-index: 1; }
.cv-hero {
  position: absolute; left: 22px; bottom: 22px; z-index: 4;
  padding: 15px 20px; border-radius: 16px;
  background: rgba(6,14,22,0.74); border: 1px solid rgba(151,228,255,0.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}
.cv-hero .cvh-n { font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.95; }
.cv-hero .cvh-n .u { color: var(--blue); }
.cv-hero .cvh-l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--cyan); margin-top: 8px; }

/* BREZ image variant */
.case-visual.img { background: radial-gradient(120% 90% at 50% 10%, rgba(151,228,255,0.14), transparent 55%), #06121c; }

/* Creative-optimization progression (Tide) */
.cv-creative {
  background:
    radial-gradient(130% 80% at 82% 0%, rgba(6,176,247,0.12), transparent 55%),
    linear-gradient(180deg, #0b1a26, #06121c);
  padding: 28px 26px 24px; gap: 20px; justify-content: space-between;
}
.cvc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cyan); }
.cvc-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.cvc-title { font-size: 25px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; margin: 12px 0 7px; }
.cvc-sub { font-size: 13.5px; line-height: 1.5; color: var(--txt-mute); max-width: 46ch; margin: 0; }

.cvc-strip { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 6px; }
.cvc-card {
  position: relative; margin: 0; display: flex; flex-direction: column; gap: 11px;
  background: #fff; border-radius: 14px; padding: 13px 11px 11px;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.cvc-card.win { box-shadow: 0 0 0 1.5px var(--blue), 0 20px 46px rgba(6,176,247,0.30); }
.cvc-img { aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cvc-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cvc-card figcaption { display: flex; flex-direction: column; gap: 3px; text-align: center; }
.cvc-step { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; color: #0c2230; }
.cvc-card.win .cvc-step { color: #0a72b8; }
.cvc-note { font-size: 10.5px; line-height: 1.25; color: #61727f; }
.cvc-flag {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
  background: var(--blue); padding: 3px 10px; border-radius: 999px; box-shadow: 0 6px 16px rgba(6,176,247,0.55);
}
.cvc-arrow { align-self: center; justify-self: center; color: var(--blue); font-size: 17px; }
.cvc-result { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--line); padding-top: 16px; }
.cvc-stat { font-size: 46px; font-weight: 800; letter-spacing: -0.045em; line-height: 0.9; }
.cvc-stat .u { color: var(--blue); }
.cvc-rl { font-size: 12.5px; line-height: 1.4; color: var(--txt); display: flex; flex-direction: column; gap: 3px; }
.cvc-rl span { color: var(--txt-mute); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.03em; }
@media (max-width: 600px) {
  .cvc-strip { grid-template-columns: 1fr 1fr 1fr; }
  .cvc-arrow { display: none; }
}

@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; min-height: 0; }
  .case-visual { min-height: 360px; }
  .case-main { padding: 34px 30px; }
}
@media (max-width: 520px) {
  .case-stats { gap: 22px; }
  .cs-row { grid-template-columns: 1fr; gap: 6px; }
  .case-visual { min-height: 320px; }
}

/* ─── Service cards as buttons + GEO ─────────────────────── */
button.sol { font: inherit; color: inherit; text-align: left; width: 100%; cursor: pointer; -webkit-appearance: none; appearance: none; }
.sol .sol-more {
  margin-top: 4px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); display: inline-flex; align-items: center; gap: 7px; opacity: 0.85; transition: gap .25s, opacity .25s;
}
.sol .sol-more .arr { transition: transform .25s; }
.sol:hover .sol-more { opacity: 1; }
.sol:hover .sol-more .arr { transform: translateX(4px); }
.sol:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.sol--new { border-color: rgba(6,176,247,0.32); background: linear-gradient(180deg, rgba(6,176,247,0.10), var(--panel)); }
.sol-flag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #04141f; background: var(--cyan); border-radius: 999px; padding: 4px 9px;
}

/* ════════════════════════════════════════════════════════════════
   LIVE A/B TEST
   ════════════════════════════════════════════════════════════════ */
.ab {
  position: relative; max-width: 1000px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(18,42,55,0.6), rgba(10,22,32,0.9));
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 50px 110px rgba(0,0,0,0.5);
}
.ab-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line-2); background: rgba(6,14,22,0.4); }
.ab-bar .ab-ttl { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); }
.ab-bar .ab-ttl .dia { color: var(--cyan); }
.ab-bar .ab-live { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--green); display: inline-flex; align-items: center; gap: 7px; }
.ab-bar .ab-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.6s infinite; }

.ab-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; padding: 26px; }
.ab-var { display: flex; flex-direction: column; gap: 16px; padding: 20px; border-radius: 16px; border: 1px solid var(--line-2); background: var(--panel); position: relative; transition: opacity .5s, filter .5s, border-color .5s, box-shadow .5s; }
.ab-var[data-var="b"] { background: linear-gradient(180deg, rgba(6,176,247,0.06), var(--panel)); }
.ab-var.win { border-color: rgba(6,176,247,0.6); box-shadow: 0 0 0 1px rgba(6,176,247,0.4), 0 24px 60px rgba(6,176,247,0.18); }
.ab-var.lose { opacity: 0.5; filter: saturate(0.7); }
.ab-var-top { display: flex; align-items: center; justify-content: space-between; }
.ab-var-top .ab-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.ab-var-top .ab-role { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-mute); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; }
.ab-var-top .ab-role.test { color: var(--cyan); border-color: rgba(151,228,255,0.3); background: rgba(151,228,255,0.06); }

.ab-shot { position: relative; border-radius: 12px; overflow: hidden; background: radial-gradient(110% 80% at 50% 0%, rgba(151,228,255,0.10), #0b1a26); aspect-ratio: 16 / 11; display: grid; place-items: center; }
.ab-shot img { height: 92%; width: auto; object-fit: contain; display: block; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45)); }
.ab-overlay { position: absolute; inset: 0; padding: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; pointer-events: none; }
.ab-overlay .ab-chip { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: #04141f; background: var(--cyan); border-radius: 6px; padding: 4px 8px; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.3); white-space: nowrap; }
.ab-overlay .ab-chip:nth-child(2) { background: var(--green); }
.ab-overlay .ab-stars { margin-top: auto; align-self: stretch; font-size: 12px; color: #ffd166; letter-spacing: 1px; background: rgba(6,14,22,0.7); border-radius: 6px; padding: 5px 8px; backdrop-filter: blur(4px); }
.ab-overlay .ab-stars b { color: var(--white); font-weight: 600; letter-spacing: 0; font-size: 11px; }

.ab-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.abm { display: flex; flex-direction: column; gap: 5px; background: rgba(255,255,255,0.02); border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 12px; }
.abm-k { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-mute); }
.abm-n { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.abm-n.cvr { color: var(--cyan); }
.ab-var[data-var="b"] .abm-n.cvr { color: var(--blue); }

.ab-track { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.ab-track i { display: block; height: 100%; width: 0; border-radius: 999px; background: rgba(255,255,255,0.3); transition: width .4s linear; }
.ab-var[data-var="b"] .ab-track i { background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 10px rgba(6,176,247,0.6); }

.ab-vs { display: grid; place-items: center; padding: 0 18px; }
.ab-vs span { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--txt-mute); width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; background: var(--ink); }

.ab-winner {
  position: absolute; top: -13px; right: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #04141f; background: var(--blue); border-radius: 999px; padding: 6px 12px;
  box-shadow: 0 8px 24px rgba(6,176,247,0.5);
  opacity: 0; transform: translateY(8px) scale(0.9); transition: opacity .4s, transform .4s cubic-bezier(.2,1.3,.4,1);
}
.ab-winner svg { width: 13px; height: 13px; stroke: #04141f; fill: none; stroke-width: 3; }
.ab-var.win .ab-winner { opacity: 1; transform: translateY(0) scale(1); }

.ab-result {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin: 0 26px 26px; padding: 18px 22px; border-radius: 14px;
  background: linear-gradient(90deg, rgba(6,176,247,0.14), rgba(6,176,247,0.04));
  border: 1px solid rgba(6,176,247,0.3);
  opacity: 0; transform: translateY(12px); transition: opacity .5s, transform .5s;
}
.ab.done .ab-result { opacity: 1; transform: translateY(0); }
.ab-result-l { font-size: 15px; color: var(--txt); }
.ab-result-l .ab-result-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-right: 12px; }
.ab-result-l b { color: var(--white); font-weight: 700; }
.ab-result-r { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan); white-space: nowrap; }

.ab-cursor { position: absolute; top: 0; left: 0; width: 26px; height: 26px; z-index: 6; pointer-events: none; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); transform: scale(1); transition: left .7s cubic-bezier(.5,0,.2,1), top .7s cubic-bezier(.5,0,.2,1), transform .2s ease; will-change: left, top; }
.ab-cursor.press { transform: scale(0.78); }
.ab-ripple { position: absolute; z-index: 5; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; border: 2px solid var(--cyan); pointer-events: none; animation: abRipple .6s ease-out forwards; }
@keyframes abRipple { from { transform: scale(0.4); opacity: 0.9; } to { transform: scale(3.2); opacity: 0; } }

@media (max-width: 720px) {
  .ab-grid { grid-template-columns: 1fr; gap: 16px; }
  .ab-vs { padding: 4px 0; }
  .ab-vs span { transform: rotate(90deg); }
  .ab-cursor { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE MODAL
   ════════════════════════════════════════════════════════════════ */
.modal-root { position: fixed; inset: 0; z-index: 200; display: none; }
.modal-root.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,9,15,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity .3s; }
.modal-root.open .modal-backdrop { opacity: 1; }
.modal-dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-46%) scale(0.97);
  width: min(660px, calc(100vw - 40px)); max-height: 88vh; overflow-y: auto;
  background: linear-gradient(180deg, #11202c, #0b1620); border: 1px solid var(--line);
  border-radius: 22px; padding: 34px; box-shadow: 0 60px 140px rgba(0,0,0,0.7);
  opacity: 0; transition: opacity .35s, transform .35s cubic-bezier(.2,.9,.3,1);
}
.modal-root.open .modal-dialog { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.modal-x { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--line); cursor: pointer; transition: background .2s, border-color .2s; }
.modal-x:hover { background: rgba(255,255,255,0.1); border-color: rgba(151,228,255,0.4); }
.modal-x svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; }

.m-top { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding-right: 40px; }
.m-ic { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; background: rgba(6,176,247,0.12); border: 1px solid rgba(6,176,247,0.28); display: grid; place-items: center; }
.m-ic svg { width: 26px; height: 26px; stroke: var(--cyan); fill: none; stroke-width: 1.7; }
.m-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 7px; }
.m-top h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.m-intro { font-size: 16.5px; line-height: 1.55; color: var(--txt); margin: 0 0 26px; text-wrap: pretty; }
.m-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: 14px; }
.m-steps { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.m-steps li { position: relative; padding: 15px 0 15px 44px; border-top: 1px solid var(--line-2); font-size: 14.5px; line-height: 1.5; color: var(--txt); counter-increment: step; }
.m-steps li:first-child { border-top: 0; }
.m-steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 15px; font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--blue); }
.m-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 20px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); margin-bottom: 26px; }
.m-foot-col p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--white); }
.modal-dialog .btn { width: 100%; }
@media (max-width: 520px) { .modal-dialog { padding: 26px 22px; } .m-foot { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   SECTION TREATMENTS — visual rhythm against the dark base
   ════════════════════════════════════════════════════════════════ */
/* ── Parallax video services section ─────────────────────── */
.section--video { background: var(--ink); overflow: hidden; }
.sol-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.sol-bg-video {
  position: absolute; left: 50%; top: 50%; width: 100%; height: 132%;
  min-width: 100%; transform: translate(-50%, -50%); object-fit: cover;
  will-change: transform;
}
.sol-bg-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(6,176,247,0.16), transparent 55%),
    linear-gradient(180deg, rgba(10,22,32,0.92) 0%, rgba(10,22,32,0.78) 42%, rgba(10,22,32,0.9) 100%);
}
.section--video .wrap { position: relative; z-index: 1; }

/* A · white section, blue headlines, light cards */
.section--light { background: #ffffff; }
.section--light .section-title { color: #0a1620; }
.section--light .section-title .hl { color: var(--blue); }
.section--light .eyebrow { color: #0577b8; }
.section--light .eyebrow::before { background: #0577b8; }
.section--light .lede { color: #4a5a64; }
.section--light .sol { background: #ffffff; border-color: #e3e9ee; box-shadow: 0 1px 2px rgba(10,22,32,0.05); }
.section--light .sol:hover { border-color: rgba(6,176,247,0.5); box-shadow: 0 22px 50px rgba(10,22,32,0.12); }
.section--light .sol .ic { background: rgba(6,176,247,0.10); border-color: rgba(6,176,247,0.22); }
.section--light .sol .ic svg { stroke: var(--blue); }
.section--light .sol .sn { color: #0a1620; }
.section--light .sol .sd { color: #56656e; }
.section--light .sol .tags span { color: #0577b8; background: rgba(6,176,247,0.07); border-color: rgba(6,176,247,0.2); }
.section--light .sol .sol-more { color: var(--blue); }
.section--light .sol--new { background: linear-gradient(180deg, rgba(6,176,247,0.07), #ffffff); border-color: rgba(6,176,247,0.3); }
.section--light .sol-flag { background: var(--blue); color: #ffffff; }
.section--light .sol:focus-visible { outline-color: var(--blue); }

/* B · saturated blue section, black headlines, white body */
.section--blue { background: linear-gradient(158deg, #0a96d8 0%, #0570a6 100%); }
.section--blue .section-title { color: #04141f; }
.section--blue .section-title .hl { color: #ffffff; }
.section--blue .eyebrow { color: #042a3e; }
.section--blue .eyebrow::before { background: #042a3e; }
.section--blue .diff { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.section--blue .diff:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }
.section--blue .diff .chk { background: #ffffff; border-color: #ffffff; }
.section--blue .diff .chk svg { stroke: #0570a6; }
.section--blue .diff .dt { color: #04141f; }
.section--blue .diff .dd { color: rgba(255,255,255,0.94); font-weight: 450; }

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg video { display: none; }
  * { scroll-behavior: auto !important; }
}
