:root {
  --bg: #06101b;
  --bg-soft: #0a1624;
  --panel: #0d1a2a;
  --panel-2: #102033;
  --panel-3: #13263a;
  --text: #eef7ff;
  --muted: #9bb0c4;
  --muted-2: #71869a;
  --line: rgba(157, 187, 211, .14);
  --line-strong: rgba(157, 187, 211, .24);
  --cyan: #55d5ff;
  --mint: #67efcd;
  --blue: #76a8ff;
  --success: #65e6af;
  --danger: #ff8697;
  --shadow: 0 26px 80px rgba(0, 0, 0, .38);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 13% 0%, rgba(85, 213, 255, .11), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(103, 239, 205, .08), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 27, .82);
  backdrop-filter: blur(18px) saturate(140%);
}
.site-nav__inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.025em; }
.site-brand__mark {
  width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid rgba(85,213,255,.28);
  background: linear-gradient(145deg, rgba(85,213,255,.18), rgba(103,239,205,.08));
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.site-brand__mark svg { width: 19px; height: 19px; fill: none; stroke: var(--cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.site-brand__text { font-size: 16px; }
.site-nav__links { display: flex; align-items: center; gap: 4px; }
.site-nav__links > a, .nav-link-muted { padding: 9px 11px; color: #b6c7d7; text-decoration: none; font-size: 13px; font-weight: 650; border-radius: 10px; }
.site-nav__links > a:hover, .nav-link-muted:hover { color: var(--text); background: rgba(255,255,255,.055); }
.site-nav__actions { display: flex; align-items: center; gap: 7px; margin-left: 12px; padding-left: 13px; border-left: 1px solid var(--line); }
.nav-button { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 14px; border-radius: 11px; text-decoration: none; font-size: 13px; font-weight: 800; }
.nav-button--primary { color: #03151d; background: linear-gradient(135deg, var(--cyan), var(--mint)); box-shadow: 0 9px 24px rgba(85,213,255,.16); }
.nav-button--ghost { color: #c8d5e1; border: 1px solid var(--line-strong); }
.site-nav__toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); background: rgba(255,255,255,.035); border-radius: 12px; cursor: pointer; }
.site-nav__toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; border-radius: 2px; background: #dce9f4; }

/* Shared */
.shell { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 850; }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: .7; }
.section { padding: 104px 0; }
.section--compact { padding: 74px 0; }
.section--bordered { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(9, 22, 36, .58); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 13px 0 14px; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.gradient-text { background: linear-gradient(100deg, var(--cyan), var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.primary-button, .secondary-button, .text-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 18px; border-radius: 13px; text-decoration: none; font-size: 14px; font-weight: 820; transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.primary-button { color: #03151c; background: linear-gradient(135deg, var(--cyan), var(--mint)); box-shadow: 0 15px 34px rgba(85,213,255,.17); border: 0; }
.primary-button:hover, .secondary-button:hover { transform: translateY(-2px); }
.secondary-button { color: #dce9f4; border: 1px solid var(--line-strong); background: rgba(255,255,255,.035); }
.text-button { padding-inline: 4px; color: var(--cyan); }

/* Landing Hero */
.hero-v5 { padding: 82px 0 68px; overflow: hidden; }
.hero-v5__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 64px; align-items: center; }
.hero-v5__copy h1 { max-width: 760px; margin: 18px 0 22px; font-size: clamp(46px, 6vw, 78px); line-height: .98; letter-spacing: -.064em; }
.hero-v5__copy > p { max-width: 650px; margin: 0 0 28px; color: #a8bbcc; font-size: 18px; line-height: 1.72; }
.hero-v5__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-v5__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-v5__trust span::before { content: "✓"; color: var(--mint); }

.product-window { position: relative; padding: 1px; border-radius: 24px; background: linear-gradient(145deg, rgba(85,213,255,.42), rgba(103,239,205,.08) 52%, rgba(118,168,255,.16)); box-shadow: var(--shadow); }
.product-window::before { content: ""; position: absolute; inset: -90px -70px; z-index: -1; background: radial-gradient(circle, rgba(85,213,255,.14), transparent 66%); }
.product-window__inner { overflow: hidden; border-radius: 23px; background: #081421; }
.product-window__bar { height: 47px; display: flex; align-items: center; gap: 8px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #0c1928; }
.product-window__dot { width: 8px; height: 8px; border-radius: 50%; background: #42566a; }
.product-window__dot:first-child { background: #ff7d87; }.product-window__dot:nth-child(2){background:#ffc76b}.product-window__dot:nth-child(3){background:#67e5ae}
.product-window__url { margin-left: 8px; flex: 1; padding: 7px 12px; border-radius: 8px; color: #7f94a7; background: rgba(255,255,255,.035); font-size: 10px; }
.product-window__body { padding: 23px; }
.preview-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.preview-top h3 { margin: 5px 0 0; font-size: 21px; letter-spacing: -.035em; }
.preview-kicker { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.preview-live { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 999px; color: #8ce8c2; background: rgba(101,230,175,.08); border: 1px solid rgba(101,230,175,.18); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.preview-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #65e6af; box-shadow: 0 0 0 4px rgba(101,230,175,.09); }
.preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 13px; }
.preview-metric { padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.preview-metric span { color: var(--muted-2); display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.preview-metric strong { display: block; margin-top: 5px; font-size: 15px; }
.preview-chart { height: 165px; padding: 14px 13px 8px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg, rgba(85,213,255,.045), rgba(255,255,255,.012)); }
.preview-chart svg { width: 100%; height: 100%; overflow: visible; }
.preview-chart .grid-line { stroke: rgba(156,185,208,.12); stroke-width: 1; }
.preview-chart .trend-fill { fill: url(#areaGradient); opacity: .48; }
.preview-chart .trend-line { fill: none; stroke: #59d9ff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 7px rgba(85,213,255,.45)); }
.preview-table { margin-top: 12px; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.preview-table__row { display: grid; grid-template-columns: 1.5fr .72fr .72fr .7fr; gap: 8px; align-items: center; min-height: 43px; padding: 0 12px; border-bottom: 1px solid var(--line); font-size: 10px; }
.preview-table__row:last-child { border-bottom: 0; }
.preview-table__row--head { color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; background: rgba(255,255,255,.025); font-size: 8px; font-weight: 800; }
.preview-table__row strong { font-size: 10px; }
.preview-up { color: var(--mint); font-weight: 800; }

.stats-strip { padding: 0 0 38px; }
.stats-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: rgba(12, 27, 43, .72); }
.stat-item { padding: 22px 24px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: 0; }
.stat-item strong { display: block; margin-bottom: 5px; font-size: 22px; letter-spacing: -.03em; }
.stat-item span { color: var(--muted); font-size: 12px; }

/* Product/feature sections */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.process-card { position: relative; min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(160deg, rgba(18,38,58,.86), rgba(9,21,34,.88)); overflow: hidden; }
.process-card::after { content: attr(data-step); position: absolute; right: 18px; bottom: -21px; color: rgba(255,255,255,.035); font-size: 105px; font-weight: 900; line-height: 1; }
.process-card__icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: rgba(85,213,255,.09); border: 1px solid rgba(85,213,255,.16); color: var(--cyan); font-size: 18px; }
.process-card h3 { margin: 24px 0 11px; font-size: 21px; letter-spacing: -.025em; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.68; font-size: 14px; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 17px; }
.bento-card { position: relative; min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, rgba(16,34,53,.88), rgba(8,20,32,.88)); overflow: hidden; }
.bento-card--wide { grid-column: span 7; }.bento-card--narrow { grid-column: span 5; }.bento-card--half { grid-column: span 6; }
.bento-card h3 { margin: 9px 0 11px; font-size: 23px; letter-spacing: -.035em; }
.bento-card p { max-width: 560px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.bento-card__tag { color: var(--cyan); text-transform: uppercase; letter-spacing: .09em; font-size: 10px; font-weight: 850; }
.mini-filter { display: flex; gap: 8px; margin-top: 29px; }
.mini-filter span { padding: 9px 11px; border: 1px solid var(--line); border-radius: 10px; color: #c8d5e1; background: rgba(255,255,255,.025); font-size: 11px; }
.mini-filter span:first-child { color: var(--mint); border-color: rgba(103,239,205,.2); }
.rank-example { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.rank-pill { min-width: 100px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.rank-pill span { display: block; color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.rank-pill strong { display: block; margin-top: 4px; }
.rank-arrow { color: var(--mint); font-size: 24px; }
.coverage-bars { display: flex; align-items: flex-end; gap: 8px; height: 82px; margin-top: 24px; }
.coverage-bars i { display: block; flex: 1; min-width: 6px; border-radius: 5px 5px 2px 2px; background: linear-gradient(to top, rgba(85,213,255,.2), #55d5ff); opacity: .72; }
.coverage-bars i:nth-child(2n) { opacity: .45; }.coverage-bars i:nth-child(3n) { opacity: .9; }

.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.use-case-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12,27,43,.62); }
.use-case-card__number { color: var(--muted-2); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.use-case-card h3 { margin: 22px 0 11px; font-size: 21px; }
.use-case-card p { min-height: 76px; color: var(--muted); line-height: 1.67; font-size: 14px; }
.use-case-card a { display: inline-flex; margin-top: 12px; color: var(--cyan); text-decoration: none; font-size: 13px; font-weight: 750; }

.data-callout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 48px; padding: 42px; border: 1px solid rgba(85,213,255,.18); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(85,213,255,.085), rgba(103,239,205,.035) 55%, rgba(12,27,43,.8)); }
.data-callout__number { font-size: clamp(58px, 8vw, 98px); line-height: .95; letter-spacing: -.065em; font-weight: 900; }
.data-callout__number span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; letter-spacing: 0; font-weight: 650; }
.data-callout h2 { margin: 11px 0 13px; font-size: clamp(30px, 4vw, 45px); letter-spacing: -.045em; }
.data-callout p { margin: 0; color: var(--muted); line-height: 1.7; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 450px)); gap: 20px; justify-content: center; }
.price-card { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: 22px; background: rgba(12,27,43,.76); }
.price-card--featured { border-color: rgba(85,213,255,.34); box-shadow: 0 22px 60px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04); }
.price-card__label { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 850; }
.price-card h3 { margin: 11px 0 4px; font-size: 25px; }
.price-card__price { margin: 25px 0; font-size: 38px; font-weight: 900; letter-spacing: -.045em; }
.price-card__price small { color: var(--muted); font-size: 13px; font-weight: 650; letter-spacing: 0; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 27px; }
.price-card li { display: flex; gap: 9px; margin: 12px 0; color: #c3d1de; font-size: 14px; }
.price-card li::before { content: "✓"; color: var(--mint); font-weight: 850; }
.price-card .primary-button, .price-card .secondary-button { width: 100%; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 46px 22px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: 17px; width: 30px; height: 30px; display: grid; place-items: center; color: var(--cyan); border: 1px solid var(--line); border-radius: 9px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -3px 0 22px; color: var(--muted); line-height: 1.7; font-size: 14px; }

.final-cta-v5 { padding: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(125deg, rgba(85,213,255,.12), rgba(103,239,205,.06), rgba(12,27,43,.83)); text-align: center; }
.final-cta-v5 h2 { margin: 0 0 12px; font-size: clamp(31px, 4.5vw, 50px); letter-spacing: -.05em; }
.final-cta-v5 p { max-width: 620px; margin: 0 auto 25px; color: var(--muted); line-height: 1.7; }
.final-cta-v5 .button-row { justify-content: center; }

/* Checkout */
.checkout-page { background-color: var(--bg); }
.checkout-shell { width: min(1020px, calc(100% - 36px)); margin: 0 auto; padding: 70px 0 96px; }
.checkout-header { max-width: 700px; margin: 0 auto 34px; text-align: center; }
.checkout-header h1 { margin: 12px 0; font-size: clamp(36px, 5vw, 54px); letter-spacing: -.05em; }
.checkout-header p { margin: 0; color: var(--muted); line-height: 1.7; }
.checkout-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; align-items: start; }
.checkout-card { padding: 31px; border: 1px solid var(--line); border-radius: 22px; background: rgba(12,27,43,.78); box-shadow: 0 24px 70px rgba(0,0,0,.23); }
.checkout-card h2 { margin: 8px 0 8px; font-size: 27px; }
.checkout-price { margin: 24px 0 8px; font-size: 45px; font-weight: 900; letter-spacing: -.05em; }
.checkout-price small { color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: 0; }
.checkout-note { color: var(--muted); font-size: 13px; line-height: 1.6; }
.checkout-benefits { list-style: none; padding: 0; margin: 28px 0; }
.checkout-benefits li { display: flex; gap: 10px; margin: 13px 0; color: #cbd8e4; font-size: 14px; }
.checkout-benefits li::before { content: "✓"; color: var(--mint); font-weight: 900; }
.checkout-submit { width: 100%; min-height: 52px; border: 0; border-radius: 14px; cursor: pointer; color: #03151d; background: linear-gradient(135deg,var(--cyan),var(--mint)); font-weight: 850; }
.checkout-login-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.checkout-security { display: grid; gap: 12px; }
.security-item { display: flex; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.022); }
.security-item__icon { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; color: var(--cyan); background: rgba(85,213,255,.08); border: 1px solid rgba(85,213,255,.15); }
.security-item h3 { margin: 1px 0 5px; font-size: 14px; }
.security-item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.checkout-data { margin-top: 22px; padding: 17px; border-radius: 14px; background: rgba(103,239,205,.05); border: 1px solid rgba(103,239,205,.13); }
.checkout-data strong { display: block; font-size: 16px; }.checkout-data span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.checkout-error { margin-top: 15px; color: #ffc0c8; padding: 11px; border: 1px solid rgba(255,134,151,.2); border-radius: 10px; background: rgba(255,134,151,.07); }

/* Academy */
.academy-page { background-color: var(--bg); }
.academy-hero { padding: 78px 0 42px; }
.academy-hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.academy-hero h1 { margin: 15px 0 13px; font-size: clamp(44px, 6vw, 68px); letter-spacing: -.06em; }
.academy-hero p { max-width: 690px; margin: 0; color: var(--muted); line-height: 1.72; font-size: 17px; }
.academy-count { padding: 15px 18px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.025); font-size: 12px; }
.academy-count strong { display: block; margin-bottom: 3px; color: var(--text); font-size: 20px; }
.academy-grid-v5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; padding: 22px 0 95px; }
.academy-card { position: relative; min-height: 235px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; background: rgba(12,27,43,.66); transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.academy-card:hover { transform: translateY(-3px); border-color: rgba(85,213,255,.3); background: rgba(15,33,51,.9); }
.academy-card__category { color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 850; }
.academy-card h2 { margin: 21px 0 10px; font-size: 19px; line-height: 1.25; letter-spacing: -.025em; }
.academy-card p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 13px; }
.academy-card__arrow { margin-top: auto; padding-top: 24px; color: var(--mint); font-size: 18px; }

/* Legal/article */
.page.legal, .academy-wrap { width: min(880px, calc(100% - 36px)); margin: 0 auto; padding: 68px 0 100px; }
.page.legal h1, .academy-wrap h1 { font-size: clamp(36px, 5vw, 54px); letter-spacing: -.05em; }
.page.legal h2, .academy-wrap h2 { margin-top: 38px; font-size: 24px; letter-spacing: -.025em; }
.page.legal p, .page.legal li, .academy-wrap p, .academy-wrap li { color: #b4c4d3; line-height: 1.75; }
.page.legal a, .academy-wrap a { color: var(--cyan); }
.page.legal em { color: var(--muted); }
.academy-wrap .card { background: rgba(12,27,43,.67) !important; border-color: var(--line) !important; }
.academy-wrap code, .academy-wrap pre { color: #dce9f4; }

/* Footer */
.site-footer { margin-top: 10px; border-top: 1px solid var(--line); background: rgba(4, 12, 21, .72); }
.site-footer__inner { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 56px 0 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.site-brand--footer { margin-bottom: 15px; }
.site-footer__brand p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.65; font-size: 13px; }
.site-footer__columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.site-footer__columns h3 { margin: 0 0 13px; color: #dce9f4; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.site-footer__columns a { display: block; margin: 9px 0; color: var(--muted); text-decoration: none; font-size: 12px; }
.site-footer__columns a:hover { color: var(--cyan); }
.site-footer__bottom { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 19px 0 24px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; }

@media (max-width: 980px) {
  .hero-v5__grid { grid-template-columns: 1fr; }
  .hero-v5__copy { max-width: 780px; }
  .product-window { max-width: 680px; }
  .process-grid, .use-case-grid { grid-template-columns: 1fr 1fr; }
  .process-card:last-child, .use-case-card:last-child { grid-column: 1 / -1; }
  .bento-card--wide, .bento-card--narrow, .bento-card--half { grid-column: span 6; }
  .checkout-grid { grid-template-columns: 1fr; }
  .academy-grid-v5 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav__inner { width: calc(100% - 24px); min-height: 64px; }
  .site-nav__toggle { display: inline-flex; }
  .site-nav__links { display: none; position: absolute; top: 64px; left: 12px; right: 12px; padding: 13px; flex-direction: column; align-items: stretch; gap: 3px; border: 1px solid var(--line); border-radius: 15px; background: rgba(7,18,30,.98); box-shadow: var(--shadow); }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links > a, .nav-link-muted { padding: 11px; }
  .site-nav__actions { flex-direction: column; align-items: stretch; margin: 5px 0 0; padding: 9px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .nav-button { width: 100%; }
  .shell { width: calc(100% - 26px); }
  .section { padding: 76px 0; }
  .hero-v5 { padding: 56px 0 43px; }
  .hero-v5__copy h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero-v5__copy > p { font-size: 16px; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: 0; }.stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid, .use-case-grid, .pricing-grid, .academy-grid-v5 { grid-template-columns: 1fr; }
  .process-card:last-child, .use-case-card:last-child { grid-column: auto; }
  .bento-card--wide, .bento-card--narrow, .bento-card--half { grid-column: 1 / -1; }
  .data-callout { grid-template-columns: 1fr; padding: 29px; gap: 25px; }
  .product-window__body { padding: 16px; }
  .preview-metrics { grid-template-columns: 1fr 1fr; }.preview-metric:last-child { grid-column: 1 / -1; }
  .preview-table__row { grid-template-columns: 1.35fr .7fr .7fr; }.preview-table__row > *:nth-child(4) { display: none; }
  .checkout-shell { width: calc(100% - 26px); padding-top: 48px; }
  .checkout-card { padding: 23px; }
  .checkout-login-actions { grid-template-columns: 1fr; }
  .academy-hero__grid { grid-template-columns: 1fr; }
  .academy-count { width: fit-content; }
  .site-footer__columns { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 7px; }
}

@media (max-width: 470px) {
  .button-row { flex-direction: column; align-items: stretch; }
  .primary-button, .secondary-button { width: 100%; }
  .stats-strip__inner { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }.stat-item:last-child { border-bottom: 0; }
  .preview-chart { height: 135px; }
  .site-footer__columns { grid-template-columns: 1fr; }
}
