/* ============================================================
   AssetForge Marketing Site — Redesign
   Aesthetic: industrial precision / workshop spec-plate
   Display: Barlow Condensed (heavy condensed, no-nonsense)
   Body: Barlow (clean, legible, same family)
   Accent: orange (#FF6A00) — hazard tape, workshop warmth
   Signature: diagonal grid-line overlay in hero (spec-sheet)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:         #0c0d0e;
  --bg2:        #111315;
  --bg3:        #181b1e;
  --card:       #1a1d21;
  --card2:      #1f2226;
  --line:       rgba(255,255,255,.07);
  --line2:      rgba(255,255,255,.12);
  --text:       #f0f1f2;
  --muted:      #8a9099;
  --muted2:     #b4bac4;
  --orange:     #FF6A00;
  --orange2:    #FF9634;
  --orange-glow: rgba(255,106,0,.18);
  --good:       #2ecc71;
  --r:          4px;
  --r2:         8px;
  --r3:         14px;
  --r4:         22px;
  --trans:      .22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: 'Barlow Condensed', sans-serif; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }

/* ── PAGE PROGRESS ── */
.page-progress {
  position: fixed; left: 0; top: 0; right: 0;
  height: 2px; z-index: 200;
  background: rgba(255,255,255,.05);
}
.page-progress span {
  display: block; height: 100%; width: 0;
  background: var(--orange);
  transition: width .1s linear;
}

/* ── TOPBAR ── */
.topbar {
  position: fixed; left: 0; right: 0; top: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  background: rgba(12,13,14,.92);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background var(--trans);
}
.topbar.scrolled { background: rgba(10,11,12,.97); }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { width: 164px; height: auto; }
.topbar-nav {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; margin-right: 20px;
}
.topbar-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: var(--r2);
  transition: color var(--trans), background var(--trans);
}
.topbar-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.topbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: var(--trans); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; left: 0; right: 0; top: 72px; z-index: 90;
  background: var(--bg2); border-bottom: 1px solid var(--line2);
  padding: 20px max(24px, calc((100vw - 1240px) / 2));
  display: none; flex-direction: column; gap: 4px;
  transform: translateY(-10px); opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block; padding: 14px 18px; border-radius: var(--r2);
  font-weight: 600; font-size: 16px; color: var(--muted2);
  transition: background var(--trans);
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: var(--text); }
.mobile-menu .full { width: 100%; text-align: center; margin-top: 10px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange);
  color: #fff; font-weight: 700; font-size: 14px; font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 11px 22px; border-radius: var(--r);
  border: 1px solid var(--orange);
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { background: var(--orange2); box-shadow: 0 8px 28px rgba(255,106,0,.32); transform: translateY(-1px); }
.btn-primary.large { font-size: 15px; padding: 14px 28px; border-radius: var(--r2); }
.btn-primary.full { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600; color: var(--muted2);
  padding: 11px 16px; border-radius: var(--r);
  transition: color var(--trans);
}
.btn-ghost:hover { color: var(--text); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--muted2); font-weight: 600; font-size: 14px; font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 11px 22px; border-radius: var(--r);
  transition: color var(--trans), border-color var(--trans), transform var(--trans);
}
.btn-outline:hover { color: var(--text); border-color: rgba(255,255,255,.3); transform: translateY(-1px); }
.btn-outline.large { font-size: 15px; padding: 14px 28px; border-radius: var(--r2); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding: 120px max(24px, calc((100vw - 1300px) / 2)) 80px;
  display: grid;
  grid-template-columns: minmax(400px, .9fr) minmax(500px, 1.1fr);
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

/* Signature: industrial grid-lines (spec-plate aesthetic) */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hgl {
  position: absolute;
  background: transparent;
}
/* vertical rules */
.hgl-v1 {
  left: 38%; top: 0; bottom: 0;
  border-left: 1px solid rgba(255,255,255,.04);
}
.hgl-v2 {
  right: 28%; top: 0; bottom: 0;
  border-left: 1px solid rgba(255,255,255,.03);
}
/* horizontal rules */
.hgl-h1 {
  top: 42%; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,.035);
}
.hgl-h2 {
  bottom: 22%; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,.025);
}
/* diagonal — the signature element, faint engineering/technical drawing feel */
.hgl-diag {
  top: -40%; left: -5%; width: 65%; height: 200%;
  border-right: 1px solid rgba(255,106,0,.12);
  transform: rotate(-14deg);
  transform-origin: top right;
}

/* orange radial glow */
.hero::before {
  content: ''; position: absolute;
  right: -6vw; top: 8vh;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.14), transparent 60%);
  filter: blur(8px);
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 2; }
.hero-visual { position: relative; z-index: 2; }

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange2);
  margin-bottom: 24px;
}
.label-tick {
  display: inline-block; width: 32px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.hero-headline {
  font-size: clamp(68px, 8.5vw, 130px);
  font-weight: 900; line-height: .88;
  letter-spacing: -.03em;
  color: var(--text);
}
.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  margin-top: 28px; max-width: 560px;
  font-size: 18px; line-height: 1.65; color: var(--muted2);
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}

.hero-specs {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; margin-top: 40px;
  border: 1px solid var(--line); border-radius: var(--r2);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.spec-item {
  display: flex; flex-direction: column;
  padding: 14px 20px; gap: 3px; flex: 1; min-width: 100px;
}
.spec-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--text);
  letter-spacing: .02em;
}
.spec-key { font-size: 12px; color: var(--muted); }
.spec-div { width: 1px; background: var(--line); align-self: stretch; }

/* ── HERO DEVICE FRAMES ── */
.hero-device-wrap {
  position: relative; min-height: 540px;
  display: block;
}

.device-desktop {
  position: absolute; right: 0; top: 30px;
  width: min(720px, 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r3);
  background: var(--bg3);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: rotate(-1.5deg);
}
.device-bar {
  height: 38px; background: var(--card);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.device-title {
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin-left: 8px;
}
.device-desktop img {
  width: 100%; display: block;
  height: 380px; object-fit: cover; object-position: left top;
}

.device-phone {
  position: absolute; left: 20px; bottom: 20px;
  width: 190px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  background: var(--bg);
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transform: rotate(2.5deg);
}
.phone-notch {
  width: 64px; height: 7px; border-radius: 10px;
  background: rgba(0,0,0,.9); border: 1px solid rgba(255,255,255,.09);
  margin: 0 auto 6px;
}
.device-phone img {
  width: 100%; border-radius: 28px;
  height: 420px; object-fit: cover; object-position: top;
}

.hero-badge {
  position: absolute; right: 18px; bottom: 30px; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(12,13,14,.88);
  border: 1px solid rgba(255,106,0,.3);
  border-radius: var(--r2);
  backdrop-filter: blur(12px);
  font-size: 13px; font-weight: 600; color: var(--muted2);
  line-height: 1.35;
}
.badge-icon { font-size: 18px; color: var(--orange); flex-shrink: 0; }

/* ── CALLOUT STRIP ── */
.callout-strip {
  position: relative; z-index: 2;
  margin: 0 max(24px, calc((100vw - 1240px) / 2)) 0;
  padding: 26px 36px;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  background: var(--bg2);
  border-left: 3px solid var(--orange);
}
.callout-strip p {
  font-size: 18px; color: var(--muted2); line-height: 1.55;
}
.callout-strip strong { color: var(--text); }

/* ── SECTION COMMON ── */
.section-head {
  margin-bottom: 52px;
}
.section-head.center { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-tag::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.eyebrow-tag.light { color: var(--orange2); }
.eyebrow-tag.light::before { background: var(--orange2); }
.section-head h2 {
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 900; letter-spacing: -.025em; line-height: .92;
  color: var(--text);
}
.section-sub {
  margin-top: 16px; font-size: 18px; color: var(--muted2); line-height: 1.65;
  max-width: 640px;
}

/* ── WALKTHROUGH ── */
.walkthrough {
  height: 750vh; position: relative; z-index: 2;
  margin-top: 80px;
}
.walk-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  padding: 100px max(24px, calc((100vw - 1300px) / 2)) 40px;
  overflow: hidden;
}
.walk-left { align-self: center; z-index: 5; }
.walk-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow-line {
  display: inline-block; width: 28px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.walk-title {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900; letter-spacing: -.025em; line-height: .92;
  color: var(--text);
}
.walk-body {
  font-size: 17px; line-height: 1.65; color: var(--muted2);
  margin-top: 18px; max-width: 400px;
}
.walk-pills {
  display: flex; gap: 7px; flex-wrap: wrap; margin-top: 28px;
}
.walk-pills span {
  width: 28px; height: 5px; border-radius: 99px;
  background: rgba(255,255,255,.12);
  transition: width .3s ease, background .3s ease;
}
.walk-pills span.active {
  width: 56px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  box-shadow: 0 0 12px rgba(255,106,0,.4);
}

/* theme toggle */
.walk-theme-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line2);
  border-radius: 99px;
  padding: 8px 14px;
  background: rgba(255,255,255,.03);
}
.theme-switch {
  width: 56px; height: 28px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.15);
  background: var(--bg3);
  cursor: pointer; position: relative;
  transition: background var(--trans);
}
.theme-switch.orange { background: rgba(255,106,0,.15); }
.switch-thumb {
  display: block; width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange);
  position: absolute; top: 2px; right: 3px;
  transition: transform .25s ease;
}
.theme-switch.orange .switch-thumb { transform: translateX(-28px); }

/* walk stage */
.walk-right {
  position: relative; align-self: center;
  min-height: 660px;
}
.walk-glow {
  position: absolute; right: -5vw; top: 50%;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.08), transparent 65%);
  transform: translateY(-50%);
  filter: blur(10px);
  pointer-events: none;
}

/* walk device cards */
.shot-desktop, .shot-phone {
  position: absolute;
  will-change: transform, opacity;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s ease, filter .3s ease;
}
.frame-desktop {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r3);
  background: var(--bg3);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}
.frame-desktop img {
  display: block; width: 100%;
  aspect-ratio: 2048 / 1186;
  object-fit: cover; object-position: left top;
  transition: opacity .2s ease;
}
.frame-bar {
  height: 36px; background: var(--card);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
}
.frame-title {
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin-left: 6px;
}

.shot-desktop {
  width: min(800px, 62vw);
  right: 80px; top: 90px; z-index: 2;
}
.shot-phone {
  width: 200px; right: 60px; top: 60px; z-index: 3;
}

.frame-phone {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 36px;
  background: var(--bg);
  overflow: hidden;
  padding: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.45));
}
.frame-phone img {
  display: block; width: 100%;
  aspect-ratio: 944 / 2048;
  object-fit: cover; object-position: top;
  border-radius: 28px;
  transition: opacity .2s ease;
}
.phone-notch-sm {
  width: 52px; height: 6px; border-radius: 10px;
  background: rgba(0,0,0,.9); border: 1px solid rgba(255,255,255,.08);
  margin: 0 auto 6px;
}

.walk-caption {
  position: absolute; z-index: 6;
  left: 8%; bottom: 60px;
  max-width: 360px;
  padding: 12px 16px;
  font-size: 14px; font-weight: 700; color: var(--text);
  background: rgba(12,13,14,.85);
  border: 1px solid rgba(255,106,0,.3);
  border-radius: var(--r2);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  transition: left .35s ease, bottom .35s ease;
}

.walk-scroll-hint {
  position: absolute; right: 24px; bottom: 16px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
.hint-line {
  display: block; width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: hintPulse 1.5s infinite;
}
.hint-text {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}
@keyframes hintPulse {
  0% { transform: translateY(-4px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(4px); opacity: 0; }
}

/* ── SCREENSHOTS ── */
.screenshots {
  position: relative; z-index: 2;
  padding: 100px max(24px, calc((100vw - 1240px) / 2));
}
.proof-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.proof-layout figure {
  margin: 0;
  border: 1px solid var(--line2);
  border-radius: var(--r3);
  background: var(--bg2);
  overflow: hidden;
}
.proof-layout img {
  width: 100%; display: block;
  object-fit: cover; object-position: left top;
  aspect-ratio: 16 / 10;
}
.proof-layout figcaption {
  padding: 12px 16px;
  font-size: 13px; color: var(--muted); line-height: 1.4;
  border-top: 1px solid var(--line);
}
.proof-main { grid-row: span 2; }
.proof-main img { aspect-ratio: auto; height: 100%; }
.proof-side { display: contents; }
.proof-mobile img { aspect-ratio: 9/16; object-position: top; }

/* ── FEATURES ── */
.features {
  position: relative; z-index: 2;
  padding: 100px max(24px, calc((100vw - 1240px) / 2));
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r3);
  background: var(--card);
  position: relative; overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.feature-card:hover {
  border-color: rgba(255,106,0,.25);
  transform: translateY(-2px);
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent 70%);
  opacity: 0; transition: opacity var(--trans);
}
.feature-card:hover::before { opacity: 1; }
.feat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: .12em;
  color: var(--orange); margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -.01em;
  color: var(--text); margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px; color: var(--muted2); line-height: 1.6;
}

/* ── DEMO CTA ── */
.demo-cta {
  position: relative; z-index: 2;
  padding: 80px max(24px, calc((100vw - 1240px) / 2));
}
.demo-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 44px 48px;
  border: 1px solid rgba(255,106,0,.2);
  border-radius: var(--r3);
  background: linear-gradient(135deg, rgba(255,106,0,.06) 0%, rgba(255,255,255,.02) 60%);
  flex-wrap: wrap;
}
.demo-cta-inner::before {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 40%;
  background: radial-gradient(circle at right center, rgba(255,106,0,.1), transparent 70%);
  border-radius: 0 var(--r3) var(--r3) 0;
  pointer-events: none;
}
.demo-cta-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; letter-spacing: -.02em; line-height: .95;
  color: var(--text); margin-top: 12px;
}
.demo-cta-copy p { margin-top: 14px; font-size: 16px; color: var(--muted2); max-width: 580px; }
.demo-cta { position: relative; }

/* ── PRICING ── */
.pricing {
  position: relative; z-index: 2;
  padding: 100px max(24px, calc((100vw - 1240px) / 2));
}
.price-wrap {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: start;
}
.price-card {
  border: 1px solid rgba(255,106,0,.25);
  border-radius: var(--r3);
  background: var(--card);
  padding: 36px;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}
.price-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange2);
  margin-bottom: 16px;
}
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.price-amount strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px; font-weight: 900; letter-spacing: -.04em;
  color: var(--text); line-height: 1;
}
.price-amount span {
  font-size: 18px; color: var(--muted); font-weight: 500;
}
.price-note {
  font-size: 14px; color: var(--muted); margin-bottom: 28px;
}
.price-features {
  margin-bottom: 28px; border-top: 1px solid var(--line);
}
.price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--muted2);
}
.check {
  color: var(--good); font-weight: 900; font-size: 14px;
  flex-shrink: 0;
}
.price-foot {
  margin-top: 14px;
  font-size: 13px; color: var(--muted); text-align: center;
}

.price-aside { padding-top: 8px; }
.price-aside h3 {
  font-size: 28px; font-weight: 800; letter-spacing: -.015em;
  color: var(--text); margin-bottom: 20px;
}
.audience-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--muted2);
  display: flex; align-items: center; gap: 10px;
}
.audience-list li::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.price-aside-note {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--r2);
  font-size: 15px; color: var(--muted2); line-height: 1.6;
}
.price-aside-note strong { color: var(--text); }

/* ── FAQ ── */
.faq {
  position: relative; z-index: 2;
  padding: 100px max(24px, calc((100vw - 1240px) / 2));
  background: var(--bg2);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background: var(--card);
  overflow: hidden;
  break-inside: avoid;
  transition: border-color var(--trans);
}
.faq-grid details[open], .faq-grid details:hover {
  border-color: var(--line2);
}
.faq-grid summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 16px; font-weight: 700; color: var(--text);
  user-select: none;
}
.faq-grid summary::after {
  content: '+'; color: var(--orange); font-size: 20px; font-weight: 400;
  flex-shrink: 0; transition: transform .2s ease;
}
.faq-grid details[open] summary::after {
  content: '−';
}
.faq-grid details p {
  padding: 0 20px 18px;
  font-size: 15px; color: var(--muted2); line-height: 1.65;
}
.faq-grid details p a { color: var(--orange); }

/* ── FOOTER ── */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 44px max(24px, calc((100vw - 1240px) / 2));
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand img { width: 152px; }
.footer-brand p {
  font-size: 13px; color: var(--muted); margin-top: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.footer-nav {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.footer-nav a {
  font-size: 14px; color: var(--muted);
  padding: 8px 12px; border-radius: var(--r);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--text); }

/* ── DOWNLOADS PAGE ── */
.dl-hero {
  padding: 140px max(24px, calc((100vw - 1100px) / 2)) 70px;
}
.dl-hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900; letter-spacing: -.03em; line-height: .9;
  margin-top: 16px;
}
.dl-hero p { font-size: 18px; color: var(--muted2); margin-top: 20px; max-width: 560px; }
.dl-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1100px) / 2)) 100px;
}
.dl-card {
  border: 1px solid var(--line2);
  border-radius: var(--r3);
  background: var(--card);
  padding: 28px;
}
.dl-card h2 {
  font-size: 30px; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.dl-card p, .dl-card li {
  font-size: 15px; color: var(--muted2); line-height: 1.65;
}
.dl-card ul { padding-left: 18px; list-style: disc; }
.dl-card li { margin-bottom: 8px; }
.disabled-btn {
  opacity: .45; pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .topbar-nav { display: none; }
  .hamburger { display: flex; }
  .topbar-actions .btn-ghost { display: none; }
  .price-wrap { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .walk-sticky { grid-template-columns: 1fr; padding-top: 90px; }
  .walk-left { align-self: start; }
  .walk-right { min-height: 500px; }
  .shot-desktop { width: min(700px, 90vw); right: -80px; top: 140px; }
  .shot-phone { width: 170px; right: 4px; top: 90px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-layout { grid-template-columns: 1fr 1fr; }
  .proof-main { grid-row: auto; }
  .proof-mobile { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero { padding-top: 100px; }
  .hero-headline { font-size: 64px; }
  .hero-specs { gap: 0; }
  .spec-item { padding: 10px 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .proof-layout { grid-template-columns: 1fr; }
  .walkthrough { height: 700vh; }
  .demo-cta-inner { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .walk-theme-toggle { display: none; }
}


/* Waitlist form */
.waitlist .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.waitlist-wrap {
  align-items: start;
}
.waitlist-card {
  max-width: none;
}
.hidden-field {
  display: none;
}
.waitlist-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.waitlist-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.waitlist-fields label span {
  color: var(--muted2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.waitlist-fields input,
.waitlist-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background: rgba(255,255,255,.045);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}
.waitlist-fields textarea {
  resize: vertical;
  min-height: 112px;
}
.waitlist-fields input:focus,
.waitlist-fields textarea:focus {
  border-color: rgba(255,106,0,.8);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}
.waitlist-fields input::placeholder,
.waitlist-fields textarea::placeholder {
  color: rgba(245,242,234,.38);
}
.full-field {
  grid-column: 1 / -1;
}
.thanks-hero {
  min-height: 100vh;
}

@media (max-width: 720px) {
  .waitlist-fields {
    grid-template-columns: 1fr;
  }
}


.waitlist-banner {
  position: sticky;
  top: 76px;
  z-index: 89;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 58px 12px 22px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(255,122,24,.92), rgba(20,116,255,.92));
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  font-weight: 600;
  letter-spacing: .01em;
}
.waitlist-banner[hidden] {
  display: none;
}
.waitlist-banner-link {
  color: inherit;
  text-decoration: none;
}
.waitlist-banner strong {
  font-weight: 900;
}
.waitlist-banner-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.waitlist-banner-close:hover,
.waitlist-banner-close:focus-visible {
  background: rgba(0,0,0,.34);
  outline: none;
}
@media (max-width: 780px) {
  .waitlist-banner {
    top: 68px;
    padding: 10px 50px 10px 14px;
    font-size: 13px;
  }
  .waitlist-banner-close {
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}


.form-success {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(46, 204, 113, 0.45);
  border-radius: 14px;
  background: rgba(46, 204, 113, 0.10);
  color: var(--text);
  font-weight: 700;
}
.deploy-proof {
  color: var(--orange);
  font-weight: 800;
}
