/* ===== TOKENS ===== */
:root {
  --black: #06090f;
  --bg: #06090f;
  --bg-alt: #0a0e18;
  --surface: #101622;
  --surface-2: #171e2b;
  --line: #232c3a;
  --line-soft: #1a2130;

  --em: #4f8dff;
  --em-light: #b8d4ff;
  --em-mid: #7db0ff;
  --em-dark: #1f5ecc;
  --em-grad: linear-gradient(135deg, #b8d4ff 0%, #4f8dff 35%, #1f5ecc 65%, #7db0ff 100%);

  --gold: #e0b45c;
  --gold-light: #f3d9a4;
  --gold-dark: #9a742e;
  --gold-grad: linear-gradient(135deg, #f7e3b8 0%, #e0b45c 40%, #9a742e 70%, #f0cf8e 100%);
  --duo-grad: linear-gradient(110deg, #b8d4ff 0%, #4f8dff 30%, #7db0ff 48%, #f0cf8e 62%, #e0b45c 80%, #b8d4ff 100%);

  --ink: #eef2f8;
  --ink-soft: #9aa4b5;
  --ink-dim: #71788a;
  --bad: #d56a52;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
  --shadow: 0 18px 40px -18px rgba(0,0,0,.7);
  --shadow-lg: 0 30px 70px -24px rgba(0,0,0,.8);
  --em-glow: 0 8px 26px -8px rgba(79,141,255,.45);
  --max: 1140px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Sora', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--display); line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.serif em { font-style: italic; color: var(--em-light); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation: none !important; }
}

/* ===== BUTTONS ===== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn .arr { transition: transform .25s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--em-grad); color: #04102b; box-shadow: var(--em-glow); font-weight: 800; }
.btn-primary:hover { box-shadow: 0 14px 34px -8px rgba(79,141,255,.65); filter: brightness(1.06); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--ink); border: 1px solid rgba(79,141,255,.4); }
.btn-ghost:hover { background: rgba(79,141,255,.1); border-color: var(--em); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-shine::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-shine:hover::before { animation: shine .85s ease; }
@keyframes shine { from { left: -120%; } to { left: 140%; } }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,9,7,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--em-grad); background-size: 200% 100%; animation: slideGrad 6s linear infinite; opacity: .85;
}
@keyframes slideGrad { to { background-position: 200% 0; } }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
.logo strong { color: var(--em); font-weight: 800; }
.logo-text { display: flex; flex-direction: column; line-height: 1.02; }
.logo-text small { font-family: var(--font); font-weight: 500; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-top: 3px; }
.logo-mark { width: 32px; height: 26px; flex-shrink: 0; transition: transform .4s ease; }
.logo:hover .logo-mark { transform: translateY(-2px) rotate(-4deg); }
.nav { display: flex; gap: 26px; }
.nav a { position: relative; font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .15s; white-space: nowrap; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--em-grad); border-radius: 2px; transition: width .25s ease; }
.nav a:hover { color: var(--em-light); }
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: 6px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--em); border-radius: 2px; transition: .25s; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 60% at 78% -10%, rgba(79,141,255,.14) 0%, transparent 55%),
    radial-gradient(120% 100% at 80% -10%, #0f1a30 0%, #0a1120 45%, #06090f 100%);
  color: var(--ink); padding: 96px 0 150px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .55;
}
.hero-ridge { position: absolute; bottom: -1px; left: 0; width: 100%; height: 160px; color: #04070f; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(79,141,255,.32), transparent 70%); top: -120px; right: -60px; animation: drift1 18s ease-in-out infinite; }
.orb-2 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(184,212,255,.18), transparent 70%); bottom: -120px; left: -80px; animation: drift2 22s ease-in-out infinite; }
.orb-3 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(31,94,204,.32), transparent 70%); top: 40%; left: 42%; animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px,40px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,-30px); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,30px) scale(1.1); } }
.orb-4 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(224,180,92,.22), transparent 70%); top: 10%; left: 12%; animation: drift2 24s ease-in-out infinite 2s; }
.aurora {
  position: absolute; top: -55%; left: 50%; width: 150%; aspect-ratio: 1; border-radius: 50%;
  transform: translateX(-50%) rotate(0deg);
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(79,141,255,.10) 55deg, rgba(224,180,92,.09) 120deg,
    transparent 190deg, rgba(125,176,255,.08) 265deg, rgba(224,180,92,.05) 320deg, transparent 360deg);
  filter: blur(46px); animation: auroraSpin 48s linear infinite; pointer-events: none;
}
@keyframes auroraSpin { to { transform: translateX(-50%) rotate(360deg); } }
.spark { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--em-light); box-shadow: 0 0 8px 2px rgba(184,212,255,.5); opacity: .6; }
.spark.gold { background: var(--gold-light); box-shadow: 0 0 9px 2px rgba(224,180,92,.55); }
.s1 { top: 20%; left: 10%; animation: floatY 7s ease-in-out infinite; }
.s2 { top: 66%; left: 18%; animation: floatY 9s ease-in-out infinite .8s; }
.s3 { top: 26%; left: 84%; animation: floatY 8s ease-in-out infinite .4s; }
.s4 { top: 76%; left: 66%; animation: floatY 10s ease-in-out infinite 1.2s; }
.s5 { top: 12%; left: 48%; animation: floatY 6.5s ease-in-out infinite .6s; }
.s6 { top: 42%; left: 6%; animation: floatY 8.5s ease-in-out infinite 1.6s; }
.s7 { top: 58%; left: 90%; animation: floatY 7.5s ease-in-out infinite .2s; }
.s8 { top: 8%; left: 72%; animation: floatY 9.5s ease-in-out infinite 2.2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); opacity: .25; } 50% { transform: translateY(-22px); opacity: .8; } }
.spark.ember { top: auto; bottom: -30px; opacity: 0; animation: emberRise linear infinite; }
.e1 { left: 12%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 0s; }
.e2 { left: 30%; width: 6px; height: 6px; animation-duration: 19s; animation-delay: 5s; }
.e3 { left: 47%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 9s; }
.e4 { left: 62%; width: 5px; height: 5px; animation-duration: 21s; animation-delay: 3s; }
.e5 { left: 78%; width: 4px; height: 4px; animation-duration: 15s; animation-delay: 11s; }
.e6 { left: 90%; width: 6px; height: 6px; animation-duration: 18s; animation-delay: 7s; }
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(.7); opacity: 0; }
  8%   { opacity: .75; }
  50%  { transform: translateY(-45vh) translateX(30px) scale(1); }
  80%  { opacity: .5; }
  100% { transform: translateY(-95vh) translateX(-22px) scale(.6); opacity: 0; }
}

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--em-light);
  background: rgba(79,141,255,.08); border: 1px solid rgba(79,141,255,.28);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(224,180,92,.6); animation: pulseGold 2s infinite; }
@keyframes pulseGold { 0% { box-shadow: 0 0 0 0 rgba(224,180,92,.55); } 70% { box-shadow: 0 0 0 9px rgba(224,180,92,0); } 100% { box-shadow: 0 0 0 0 rgba(224,180,92,0); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(79,141,255,.55); } 70% { box-shadow: 0 0 0 8px rgba(79,141,255,0); } 100% { box-shadow: 0 0 0 0 rgba(79,141,255,0); } }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; }
.accent { background: var(--duo-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--em); }
.shimmer { background-size: 200% auto; animation: shimmer 5s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
.hero-sub { font-size: clamp(1.02rem, 1.8vw, 1.18rem); color: var(--ink-soft); max-width: 540px; margin: 22px 0 0; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 36px; list-style: none; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.hero-trust svg { width: 18px; height: 18px; fill: var(--em); }

/* ===== HERO FEED ===== */
.hero-feed { position: relative; display: flex; justify-content: center; }
.feed-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(79,141,255,.22), transparent 65%); filter: blur(44px); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: glowPulse 5s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: .55; transform: translate(-50%,-50%) scale(1); } 50% { opacity: .9; transform: translate(-50%,-50%) scale(1.08); } }
.feed {
  position: relative; z-index: 2; width: 100%; max-width: 420px;
  background: linear-gradient(180deg, #121a15, #0c120e);
  border: 1px solid rgba(79,141,255,.22); border-radius: 22px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden; animation: floatFeed 7s ease-in-out infinite;
}
@keyframes floatFeed { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.feed-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); background: rgba(79,141,255,.04); }
.feed-live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--em-light); letter-spacing: .04em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--em); box-shadow: 0 0 0 0 rgba(79,141,255,.6); animation: pulse 2s infinite; }
.feed-terr { font-size: 12px; color: var(--ink-dim); font-weight: 600; }
.feed-body {
  display: flex; flex-direction: column; gap: 12px; padding: 18px;
  height: 388px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
.lead-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  transform-origin: top center; animation: cardIn .45s cubic-bezier(.2,.9,.3,1.15);
}
.lead-card.out { animation: cardOut .35s ease forwards; }
@keyframes cardIn { from { opacity: 0; transform: translateY(-14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes cardOut { to { opacity: 0; transform: translateY(10px) scale(.97); } }
.lc-top { display: flex; align-items: center; gap: 11px; }
.lc-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--em-grad); color: #04102b; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 12.5px; flex-shrink: 0; }
.lc-name { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.3; }
.lc-loc { font-size: 12px; color: var(--ink-dim); font-weight: 500; }
.lc-val { margin-left: auto; font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--gold-light); white-space: nowrap; }
.lc-job { font-size: 13px; color: var(--ink-soft); margin-top: 9px; line-height: 1.45; }
.lc-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.lc-tag {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700;
  font-family: var(--display); letter-spacing: .02em;
  color: var(--em-light); background: rgba(79,141,255,.09); border: 1px solid rgba(79,141,255,.25);
  padding: 4px 9px; border-radius: 999px;
}
.lc-tag.solo { color: var(--ink-soft); background: rgba(255,255,255,.03); border-color: var(--line); }
.feed-foot { padding: 12px 20px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); border-top: 1px solid var(--line-soft); text-align: center; }

/* ===== MARQUEE ===== */
.marquee { position: relative; overflow: hidden; background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 16px 0; margin-top: 64px; }
.marquee-track { display: inline-flex; align-items: center; gap: 30px; white-space: nowrap; will-change: transform; animation: scrollX 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.marquee-track i { color: var(--gold); font-size: 9px; font-style: normal; opacity: .75; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-fade { position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(270deg, var(--bg-alt), transparent); }

/* ===== STATS ===== */
.stats { margin-top: -70px; position: relative; z-index: 5; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat { background: var(--surface); padding: 30px 22px; text-align: center; transition: background .25s; }
.stat:hover { background: #141b17; }
.stat-num { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.5vw, 2.4rem); background: var(--em-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--em); }
.stat:nth-child(2) .stat-num { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.stat-label { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; background: var(--bg); position: relative; }
.section.alt { background: var(--bg-alt); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block; font-family: var(--display); font-weight: 700; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--em);
  background: rgba(79,141,255,.1); border: 1px solid rgba(79,141,255,.22);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section-tag.light { color: var(--em-light); background: rgba(79,141,255,.14); }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; }
.section h2.serif { font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 3.2rem); }
.section-lede { color: var(--ink-soft); font-size: 1.1rem; margin-top: 14px; }

/* ===== TWO-COL ===== */
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.col-text h2 { margin: 16px 0 18px; }
.col-text > p { color: var(--ink-soft); font-size: 1.08rem; }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  background: var(--em-grad); color: #04102b; border-radius: 50%; font-size: 13px;
  display: grid; place-items: center; font-weight: 700;
}
.check-list strong { color: var(--ink); }

/* ===== TERRITORY / HEX MAP ===== */
.territory { background: radial-gradient(80% 90% at 85% 20%, #101812 0%, #06090f 60%); overflow: hidden; }
.terr-cap { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim); margin-top: 26px; }
.col-map { position: relative; display: flex; justify-content: center; }
.map-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(79,141,255,.2), transparent 65%); filter: blur(44px); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: glowPulse 6s ease-in-out infinite; }
.hexmap { position: relative; z-index: 2; width: 100%; max-width: 520px; }
.hx { transition: fill .3s, stroke .3s; }
.hx-taken { fill: #10160f; fill: var(--surface); stroke: var(--line); stroke-width: 1.5; }
.hx-open { fill: transparent; stroke: rgba(79,141,255,.45); stroke-width: 1.5; stroke-dasharray: 6 5; }
.hx-yours { fill: url(#hexGrad); stroke: rgba(184,212,255,.8); stroke-width: 2; filter: drop-shadow(0 0 18px rgba(79,141,255,.55)); animation: hexPulse 3.2s ease-in-out infinite; transform-origin: 250px 160px; }
@keyframes hexPulse {
  0%,100% { filter: drop-shadow(0 0 12px rgba(79,141,255,.4)); }
  50% { filter: drop-shadow(0 0 26px rgba(79,141,255,.75)); }
}
.hx-lab { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-anchor: middle; }
.hx-lab-yours { fill: #04102b; font-size: 14px; }
.hx-lab-sub { fill: rgba(4,21,12,.75); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.hx-lab-dim { fill: var(--ink-dim); opacity: .7; font-size: 10.5px; }
.hx-lab-openlab { fill: var(--em); font-size: 10.5px; }

/* ===== COMPARE ===== */
.compare { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row span { padding: 15px 20px; font-size: 14.5px; font-weight: 500; }
.compare-row:nth-child(even) { background: #0c1120; }
.compare-head span { font-family: var(--display); font-weight: 700; background: #182119; color: var(--ink-soft); }
.compare-head span:last-child { background: rgba(79,141,255,.12); color: var(--em-light); }
.compare .bad { color: var(--bad); }
.compare .bad::before { content: '✕  '; font-weight: 700; }
.compare .good { color: var(--em-light); font-weight: 600; border-left: 1px solid var(--line); }
.compare .good::before { content: '✓  '; font-weight: 700; color: var(--em); }

/* ===== FEATURE CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79,141,255,.45); }
.feature-ico { width: 50px; height: 50px; border-radius: 13px; background: rgba(79,141,255,.1); border: 1px solid rgba(79,141,255,.25); display: grid; place-items: center; margin-bottom: 20px; transition: transform .25s; }
.feature-card:hover .feature-ico { transform: scale(1.08) rotate(-4deg); }
.feature-ico svg { width: 26px; height: 26px; fill: var(--em); }
.feature-card:nth-child(even) .feature-ico { background: rgba(224,180,92,.1); border-color: rgba(224,180,92,.3); }
.feature-card:nth-child(even) .feature-ico svg { fill: var(--gold); }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: .96rem; }

/* ===== STEPS TIMELINE ===== */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79,141,255,.5), rgba(79,141,255,.5), transparent);
}
.step { position: relative; text-align: center; padding: 0 18px; }
.step-dot {
  position: relative; z-index: 2; width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--em-grad); display: grid; place-items: center;
  box-shadow: var(--em-glow), 0 0 0 8px rgba(79,141,255,.08);
  transition: transform .25s;
}
.step:hover .step-dot { transform: scale(1.1) rotate(-4deg); }
.step-dot i { font-family: var(--display); font-style: normal; font-weight: 800; font-size: 17px; color: #04102b; }
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: .98rem; max-width: 320px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79,141,255,.4); }
.service-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(79,141,255,.1); border: 1px solid rgba(79,141,255,.22); transition: transform .25s;
}
.service:hover .service-ico { transform: scale(1.12) rotate(6deg); }
.service-ico svg { width: 24px; height: 24px; fill: var(--em); }
.service:nth-child(3n+2) .service-ico svg { fill: var(--gold); }
.service h4 { font-size: 1.12rem; margin-bottom: 8px; }
.service p { color: var(--ink-soft); font-size: .95rem; }

/* ===== MATH ===== */
.math { background: radial-gradient(90% 80% at 50% 0%, #0e1626 0%, #04070f 70%); color: var(--ink); }
.math-head { max-width: 820px; margin-bottom: 58px; }
.math-head h2 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); }
.math-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,.015); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.math-cell { padding: 54px 44px 46px; border-left: 1px solid var(--line); }
.math-cell:first-child { border-left: 0; }
.math-num { display: block; font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 4.3rem); line-height: 1; margin-bottom: 24px; background: var(--em-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--em); }
.math-num sup { font-size: .42em; vertical-align: .65em; }
.math-cell:nth-child(2) .math-num { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.math-lab { font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); line-height: 2; }
.math-note { max-width: 660px; margin-top: 46px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.math-note strong { font-family: var(--serif); font-weight: 400; color: var(--ink); font-size: 1.14em; }

/* ===== TESTIMONIALS ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s; }
.quote:hover { transform: translateY(-6px); border-color: rgba(79,141,255,.35); }
.quote blockquote { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.quote figcaption { display: flex; align-items: center; gap: 13px; margin-top: 22px; font-size: 14px; color: var(--ink-soft); }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--em-grad); color: #04102b; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 14px; flex-shrink: 0; }
.quote:nth-child(2) .avatar { background: var(--gold-grad); }
.quote figcaption strong { color: var(--ink); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.pricing-grid .price-card { display: flex; flex-direction: column; padding: 40px 34px 34px; }
.pricing-grid .price-card ul { margin-bottom: 28px; }
.pricing-grid .price-card .btn { margin-top: auto; }
.pack-rate { display: flex; align-items: baseline; gap: 10px; font-size: 14px; font-weight: 600; margin: -12px 0 20px; }
.rate-now { color: var(--em-light); font-size: 15px; font-weight: 700; }
.rate-was { color: var(--ink-dim); text-decoration: line-through; text-decoration-thickness: 1px; font-weight: 500; }
.badge-save { background: rgba(79,141,255,.16); color: var(--em-light); border: 1px solid rgba(79,141,255,.4); }
.flat-note.center { text-align: center; margin-top: 28px; }
.page-first { padding-top: 96px; }
.lede-link { color: var(--em-light); text-decoration: underline; text-underline-offset: 3px; }
.faq-item p a { color: var(--em-light); text-decoration: underline; text-underline-offset: 3px; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.price-card.featured { border-color: rgba(79,141,255,.55); box-shadow: var(--shadow), 0 0 0 1px rgba(79,141,255,.15); }
.price-card.featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(79,141,255,.3); }
.badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #1d1503; font-family: var(--display); font-weight: 800; font-size: 12px; padding: 5px 14px; border-radius: 999px; white-space: nowrap; z-index: 2; box-shadow: 0 4px 14px -4px rgba(224,180,92,.5); }

/* Animated dual-tone border on the featured card */
@property --spin-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.price-card.featured { border-color: rgba(79,141,255,.25); }
.price-card.featured::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius); padding: 1.5px;
  background: conic-gradient(from var(--spin-angle),
    rgba(79,141,255,.9), rgba(224,180,92,.9) 90deg, rgba(79,141,255,.12) 180deg,
    rgba(224,180,92,.5) 270deg, rgba(79,141,255,.9) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: borderSpin 6s linear infinite; pointer-events: none; z-index: 1;
}
@keyframes borderSpin { to { --spin-angle: 360deg; } }
.price-card h3 { font-size: 1.4rem; }
.price-type { color: var(--ink-soft); font-size: .88rem; margin: 6px 0 18px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price-sub { font-size: 12.5px; color: var(--ink-dim); margin: 0 0 20px; }
.price-card li.price-inherit { color: var(--ink); font-weight: 600; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px dashed var(--line); }
.price-card li.price-inherit::before { content: '★'; color: var(--gold); font-size: .9em; }
.price .amt { font-family: var(--display); font-weight: 800; font-size: 3rem; background: var(--em-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--em); }
.price .per { color: var(--ink-soft); font-weight: 600; }
.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.price-card li { position: relative; padding-left: 26px; font-size: .96rem; color: var(--ink-soft); }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--em); font-weight: 800; }
.flat-card { max-width: 440px; width: 100%; text-align: center; padding: 44px 40px; }
.flat-card .price { justify-content: center; }
.flat-card .price-type { max-width: 320px; margin-left: auto; margin-right: auto; }
.flat-list { text-align: left; max-width: 300px; margin-left: auto; margin-right: auto; }
.flat-note { font-size: 12.5px; color: var(--ink-dim); margin-top: 16px; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 24px; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(79,141,255,.35); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--display); font-weight: 700; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--em); transition: transform .25s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 20px; }

/* ===== ADDITIONAL SERVICES (teaser + page) ===== */
.beyond { background: radial-gradient(80% 90% at 50% 110%, rgba(224,180,92,.07) 0%, transparent 60%), var(--bg-alt); }
.beyond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 44px 0 36px; }
.beyond-item {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 24px 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s, border-color .25s; color: var(--ink);
}
.beyond-item:hover { transform: translateY(-5px); border-color: rgba(224,180,92,.45); }
.beyond-ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(79,141,255,.1); border: 1px solid rgba(79,141,255,.25); }
.beyond-ico svg { width: 22px; height: 22px; fill: var(--em); }
.beyond-item:nth-child(even) .beyond-ico { background: rgba(224,180,92,.1); border-color: rgba(224,180,92,.3); }
.beyond-item:nth-child(even) .beyond-ico svg { fill: var(--gold); }
.beyond-item h4 { font-size: 1.02rem; }
.soon-pill {
  align-self: flex-start; font-family: var(--display); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light);
  background: rgba(224,180,92,.12); border: 1px solid rgba(224,180,92,.35);
  border-radius: 999px; padding: 4px 11px; white-space: nowrap;
}
.beyond-cta { text-align: center; }

.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.addon-card {
  position: relative; display: flex; flex-direction: column; padding: 36px 34px 28px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s, box-shadow .25s;
}
.addon-card:hover { transform: translateY(-6px); border-color: rgba(224,180,92,.4); box-shadow: var(--shadow); }
.addon-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.addon-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(79,141,255,.1); border: 1px solid rgba(79,141,255,.25); flex-shrink: 0; }
.addon-ico svg { width: 27px; height: 27px; fill: var(--em); }
.addon-card:nth-child(even) .addon-ico { background: rgba(224,180,92,.1); border-color: rgba(224,180,92,.3); }
.addon-card:nth-child(even) .addon-ico svg { fill: var(--gold); }
.addon-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.addon-card > p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 18px; }
.addon-card .check-list { margin-bottom: 24px; }
.addon-card .check-list li { font-size: .93rem; }
.addon-price {
  margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line);
  font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--gold-light);
}
.addon-price span { color: var(--ink-dim); font-weight: 500; }

/* ===== SERVICE SHOWCASE ===== */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 52px 0; }
.svc-row + .svc-row { border-top: 1px solid var(--line-soft); }
.svc-row.flip .svc-text { order: 2; }
.svc-row.flip .svc-visual { order: 1; }
.svc-num { display: block; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--gold-light); letter-spacing: .06em; margin-bottom: 10px; }
.svc-text h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.svc-text > p { color: var(--ink-soft); margin-bottom: 20px; }
.svc-addon { display: flex; align-items: baseline; gap: 11px; margin-top: 22px; padding: 14px 16px; background: rgba(224,180,92,.06); border: 1px solid rgba(224,180,92,.22); border-radius: var(--radius-sm); font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }
.addon-tag { flex-shrink: 0; font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); background: rgba(224,180,92,.14); border: 1px solid rgba(224,180,92,.32); border-radius: 999px; padding: 3px 10px; }
.svc-visual { position: relative; }
.svc-glow { position: absolute; inset: -12%; background: radial-gradient(60% 60% at 50% 50%, rgba(79,141,255,.15), transparent 70%); filter: blur(34px); pointer-events: none; }
.svc-row.flip .svc-glow { background: radial-gradient(60% 60% at 50% 50%, rgba(224,180,92,.13), transparent 70%); }
.mock { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }

/* SMS thread */
.mock-sms { max-width: 370px; margin: 0 auto; padding: 18px 18px 20px; }
.sms-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); margin-bottom: 14px; font-family: var(--display); font-weight: 700; font-size: 13.5px; }
.sms-ava { width: 30px; height: 30px; border-radius: 50%; background: var(--em-grad); display: grid; place-items: center; color: #04102b; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.sms-head small { display: block; font-family: var(--font); font-weight: 500; color: var(--ink-dim); font-size: 11px; }
.bubble { max-width: 86%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; margin-bottom: 6px; }
.bubble.in { background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink); }
.bubble.out { margin-left: auto; background: linear-gradient(135deg, #2b62c9, #16386f); color: #eaf2ff; border-bottom-right-radius: 4px; }
.bubble-time { display: block; font-size: 10.5px; color: var(--ink-dim); margin: 0 0 12px 4px; }
.bubble-time.right { text-align: right; margin-right: 4px; }
.bubble-time em { color: var(--em-light); font-style: normal; font-weight: 700; }

/* Browser mockup */
.mb-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.mb-dot { width: 9px; height: 9px; border-radius: 50%; }
.mb-dot:nth-child(1) { background: #e0655a; }
.mb-dot:nth-child(2) { background: #e0b45c; }
.mb-dot:nth-child(3) { background: #4f8dff; }
.mb-url { flex: 1; margin-left: 6px; background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: 11px; color: var(--ink-dim); }
.mb-body { padding: 28px 26px 24px; background: radial-gradient(90% 80% at 85% 0%, rgba(79,141,255,.13), transparent 60%), #0a1120; }
.mb-tag { display: inline-block; font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--em-light); border: 1px solid rgba(79,141,255,.35); padding: 3px 10px; border-radius: 999px; margin-bottom: 13px; }
.mb-h { font-family: var(--display); font-weight: 800; font-size: 19px; line-height: 1.25; color: var(--ink); margin-bottom: 8px; }
.mb-h em { font-style: normal; background: var(--duo-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mb-p { font-size: 12px; color: var(--ink-soft); margin-bottom: 15px; max-width: 92%; }
.mb-cta { display: inline-block; background: var(--em-grad); color: #04102b; font-family: var(--display); font-weight: 800; font-size: 11.5px; padding: 8px 17px; border-radius: 999px; box-shadow: var(--em-glow); }
.mb-stats { display: flex; gap: 12px; margin-top: 20px; }
.mb-stat { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; }
.mb-stat b { display: block; font-family: var(--display); font-size: 13px; color: var(--em-light); }
.mb-stat span { font-size: 9px; color: var(--ink-dim); letter-spacing: .06em; text-transform: uppercase; }

/* Review card */
.mock-review { max-width: 390px; margin: 0 auto; padding: 24px; }
.rev-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.rev-stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; text-shadow: 0 0 14px rgba(224,180,92,.5); }
.rev-badge { font-family: var(--display); font-weight: 800; background: var(--gold-grad); color: #241903; padding: 5px 13px; border-radius: 999px; font-size: 12.5px; }
.rev-text { font-size: 13.5px; color: var(--ink); line-height: 1.6; margin-bottom: 10px; }
.rev-meta { font-size: 11.5px; color: var(--ink-dim); margin-bottom: 15px; }
.rev-reply { border-left: 2px solid var(--em); padding: 9px 13px; background: rgba(79,141,255,.06); border-radius: 0 10px 10px 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; }
.rev-reply b { display: block; color: var(--em-light); font-family: var(--display); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }

/* Voice AI call */
.mock-call { max-width: 370px; margin: 0 auto; padding: 20px 22px 22px; }
.call-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.call-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--duo-grad); display: grid; place-items: center; color: #04102b; font-family: var(--display); font-weight: 800; font-size: 12px; flex-shrink: 0; }
.call-top b { display: block; font-family: var(--display); font-size: 14px; color: var(--ink); }
.call-top small { display: flex; align-items: center; gap: 6px; color: var(--em-light); font-size: 11px; }
.call-live { width: 7px; height: 7px; border-radius: 50%; background: var(--em); animation: pulse 1.6s infinite; }
.wave { display: flex; align-items: center; gap: 3px; height: 42px; margin-bottom: 14px; }
.wave i { flex: 1; height: 20%; background: var(--em-grad); border-radius: 4px; animation: waveB 1.1s ease-in-out infinite; }
.wave i:nth-child(odd) { background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); opacity: .8; animation-duration: 1.4s; }
.wave i:nth-child(2) { animation-delay: .1s; } .wave i:nth-child(3) { animation-delay: .25s; }
.wave i:nth-child(4) { animation-delay: .05s; } .wave i:nth-child(5) { animation-delay: .35s; }
.wave i:nth-child(6) { animation-delay: .15s; } .wave i:nth-child(7) { animation-delay: .4s; }
.wave i:nth-child(8) { animation-delay: .2s; } .wave i:nth-child(9) { animation-delay: .5s; }
.wave i:nth-child(10) { animation-delay: .1s; } .wave i:nth-child(11) { animation-delay: .3s; }
.wave i:nth-child(12) { animation-delay: .45s; } .wave i:nth-child(13) { animation-delay: .12s; }
.wave i:nth-child(14) { animation-delay: .28s; } .wave i:nth-child(15) { animation-delay: .06s; }
.wave i:nth-child(16) { animation-delay: .38s; }
@keyframes waveB { 0%, 100% { height: 18%; } 50% { height: 92%; } }
.call-line { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; padding: 8px 0; border-top: 1px dashed var(--line-soft); }
.call-line b { color: var(--ink); }
.call-chip { display: inline-block; margin-top: 12px; background: rgba(79,141,255,.12); border: 1px solid rgba(79,141,255,.35); color: var(--em-light); font-family: var(--display); font-weight: 700; font-size: 12px; padding: 6px 14px; border-radius: 999px; }

/* ===== TALK STRIP ===== */
.talk { padding: 72px 0; background: var(--bg); }
.talk-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(79,141,255,.09), rgba(79,141,255,.02) 55%), var(--surface);
  border: 1px solid rgba(79,141,255,.25); border-radius: 24px; padding: 44px 48px;
  box-shadow: var(--shadow);
}
.talk-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.talk-copy p { color: var(--ink-soft); margin-top: 10px; max-width: 560px; }

/* ===== APPLY ===== */
.apply { background: linear-gradient(180deg, #0a0e18, #05080f); }
.booking { display: grid; grid-template-columns: .78fr 1.42fr; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-side { display: flex; flex-direction: column; padding: 42px 36px 38px; border-right: 1px solid var(--line); background: radial-gradient(120% 140% at 0% 0%, rgba(79,141,255,.12), transparent 55%), #0c1120; }
.side-tag { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 11.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--em-light); margin-bottom: 30px; }
.side-tag::before { content: ""; width: 28px; height: 1px; background: var(--em); }
.side-list { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.side-list li { display: flex; gap: 14px; }
.side-num { font-family: var(--serif); font-style: italic; color: var(--em-light); font-size: 1.02rem; padding-top: 2px; }
.side-list strong { display: block; font-family: var(--display); font-size: 1.02rem; margin-bottom: 5px; }
.side-list p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }
.side-foot { margin-top: auto; padding-top: 30px; border-top: 1px solid var(--line); }
.side-dur-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; font-family: var(--display); }
.side-dur { display: block; font-family: var(--serif); font-size: 2.1rem; line-height: 1; color: var(--em-light); margin-bottom: 8px; }
.side-host { color: var(--ink-dim); font-size: .92rem; font-family: var(--serif); font-style: italic; }
.booking-main { padding: 40px 44px 44px; }
.booking-main h3 { font-size: 1.35rem; margin-bottom: 26px; }
.cal-wrap { display: grid; grid-template-columns: 1.25fr .75fr; gap: 38px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.cal-nav { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--em-light); font-size: 20px; line-height: 1; cursor: pointer; transition: background .2s, opacity .2s; }
.cal-nav:hover:not(:disabled) { background: rgba(79,141,255,.14); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow span { text-align: center; font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--ink-dim); padding: 6px 0; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; border: none; border-radius: 50%; background: transparent; font-size: 14px; color: var(--ink-dim); }
.cal-day.avail { color: var(--em-light); background: rgba(79,141,255,.10); font-weight: 600; cursor: pointer; transition: background .15s; }
.cal-day.avail:hover { background: rgba(79,141,255,.24); }
.cal-day.selected { background: var(--em-grad); color: #04102b; font-weight: 800; }
.cal-tz { margin-top: 22px; }
.cal-tz-label { display: block; font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.tz-select {
  display: block; width: 100%; max-width: 340px; appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 40px 10px 16px; font-family: var(--font); font-size: 13px; color: var(--ink-soft);
  cursor: pointer; transition: border-color .15s, box-shadow .15s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234f8dff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.tz-select:hover { border-color: rgba(79,141,255,.4); }
.tz-select:focus { outline: none; border-color: var(--em); box-shadow: 0 0 0 3px rgba(79,141,255,.18); }
.tz-select option { background: #0c1120; color: var(--ink); }
.hp-field { display: none !important; }
.slot small { font-size: 11px; color: inherit; opacity: .75; font-weight: 600; }
.slots-hint { color: var(--ink-dim); font-size: .93rem; text-align: center; padding-top: 56px; }
.slots-day { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.slots-list { display: grid; gap: 10px; max-height: 340px; overflow: auto; padding-right: 4px; }
.slot { padding: 12px; text-align: center; border: 1px solid rgba(79,141,255,.35); border-radius: 10px; background: transparent; color: var(--em-light); font-family: var(--display); font-weight: 600; font-size: 14px; cursor: pointer; transition: background .15s; }
.slot:hover { background: rgba(79,141,255,.12); }
.slot.selected { background: var(--em-grad); border-color: transparent; color: #04102b; }
.slots-note { font-size: 12px; color: var(--ink-dim); text-align: center; margin-top: 12px; line-height: 1.6; }
.booking-alt { text-align: center; margin-top: 28px; color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: 1.08rem; }
.booking-alt a { color: var(--em-light); text-decoration: underline; text-underline-offset: 3px; }

/* ===== BOOKING MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; background: rgba(3,5,4,.74); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.modal-overlay[hidden] { display: none; }
.modal { position: relative; width: 100%; max-width: 540px; max-height: 90vh; overflow: auto; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 34px 34px 30px; box-shadow: var(--shadow-lg); animation: modalIn .28s cubic-bezier(.2,.9,.3,1.1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); font-size: 14px; cursor: pointer; transition: background .15s, color .15s; }
.modal-close:hover { color: var(--ink); background: rgba(255,255,255,.07); }
.modal h3 { font-size: 1.45rem; margin-bottom: 12px; padding-right: 40px; }
.modal-slot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.modal-slot > span { display: inline-block; background: rgba(79,141,255,.12); border: 1px solid rgba(79,141,255,.32); color: var(--em-light); border-radius: 999px; padding: 8px 16px; font-family: var(--display); font-weight: 600; font-size: 13.5px; }
.modal-change { background: none; border: none; padding: 0; color: var(--ink-dim); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; transition: color .15s; }
.modal-change:hover { color: var(--em-light); }
.mrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mfield { display: flex; flex-direction: column; margin-bottom: 14px; }
.mfield label { font-family: var(--display); font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--ink); }
.mfield input, .mfield textarea { font-family: var(--font); font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); color: var(--ink); transition: border-color .15s, box-shadow .15s; resize: vertical; }
.mfield input::placeholder, .mfield textarea::placeholder { color: var(--ink-dim); }
.mfield input:focus, .mfield textarea:focus { outline: none; border-color: var(--em); box-shadow: 0 0 0 3px rgba(79,141,255,.18); }
.mfield input.invalid { border-color: var(--bad); box-shadow: 0 0 0 3px rgba(213,106,82,.15); }
.merr { color: var(--bad); font-size: 12px; margin-top: 4px; min-height: 1px; font-weight: 500; }
.modal-fine { font-size: 12px; color: var(--ink-dim); text-align: center; margin-top: 12px; line-height: 1.6; }
.modal-senderr { font-size: 13px; color: var(--bad); text-align: center; margin-top: 12px; line-height: 1.6; }
.modal-senderr a { color: var(--em-light); text-decoration: underline; text-underline-offset: 3px; }
.modal-success { text-align: center; padding: 18px 0 8px; }
.modal-success svg { display: block; width: 54px; height: 54px; fill: #04102b; background: var(--em-grad); border-radius: 50%; padding: 13px; margin: 0 auto 16px; animation: popIn .4s ease; }
@keyframes popIn { from { opacity: 0; transform: translateY(8px) scale(.94); } to { opacity: 1; transform: none; } }
.modal-success h4 { font-size: 1.3rem; margin-bottom: 10px; }
.modal-success p { color: var(--ink-soft); font-size: .95rem; line-height: 1.65; margin-bottom: 10px; }
.modal-success strong { color: var(--em-light); }
.modal-success a { color: var(--em-light); text-decoration: underline; text-underline-offset: 3px; }

/* ===== FOOTER ===== */
.site-footer { background: #05080f; color: var(--ink-soft); padding: 64px 0 28px; border-top: 1px solid var(--line-soft); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1.6fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line-soft); }
.footer-brand p { margin-top: 16px; font-size: .95rem; max-width: 340px; color: var(--ink-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h5 { font-family: var(--display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--em); margin-bottom: 16px; }
.footer-col a:not(.btn) { display: block; margin-bottom: 11px; font-size: 14.5px; color: var(--ink-soft); transition: color .15s; }
.footer-col a:not(.btn):hover { color: var(--em-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 10px; color: var(--ink-dim); }
.footer-legal a:hover { color: var(--em-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .header-cta { display: none; }
  .nav { gap: 14px; }
  .nav a { font-size: 14px; }
}
@media (max-width: 740px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
  .nav.open a::after { display: none; }
}
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .services-grid, .quotes { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid-2 { grid-template-columns: 1fr; max-width: 460px; }
  .beyond-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: 1fr; max-width: 520px; }
  .svc-row { grid-template-columns: 1fr; gap: 34px; padding: 40px 0; }
  .svc-row.flip .svc-text { order: 1; }
  .svc-row.flip .svc-visual { order: 2; }
  .math-grid { grid-template-columns: 1fr; }
  .math-cell { border-left: 0; border-top: 1px solid var(--line); padding: 38px 32px 34px; }
  .math-cell:first-child { border-top: 0; }
  .booking { grid-template-columns: 1fr; }
  .booking-side { border-right: 0; border-bottom: 1px solid var(--line); }
  .cal-wrap { grid-template-columns: 1fr; gap: 28px; }
  .slots-hint { padding-top: 8px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .talk-inner { justify-content: center; text-align: center; }
}
@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .booking-side, .booking-main { padding-left: 24px; padding-right: 24px; }
  .mrow { grid-template-columns: 1fr; gap: 0; }
  .modal { padding: 26px 22px 24px; }
  .hero { padding: 72px 0 130px; }
  .feed-body { height: 340px; }
  .talk-inner { padding: 36px 24px; }
  .beyond-grid { grid-template-columns: 1fr; }
}
