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

:root {
  --bg:     #0A0A0B;
  --bg2:    #111214;
  --bg3:    #18191C;
  --border: rgba(255,255,255,0.08);
  --border2:rgba(255,255,255,0.14);
  --text:   #E8E6E1;
  --muted:  rgba(232,230,225,0.50);
  --dim:    rgba(232,230,225,0.28);
  --gold:   #C49A3C;
  --gold-dim:rgba(196,154,60,0.10);
  --gold-glow:rgba(196,154,60,0.15);
  --green:  #4EA87A;
  --green-dim:rgba(78,168,122,0.10);
  --red:    #CC5555;
  --ff-h: 'Barlow Condensed', sans-serif;
  --ff-b: 'Barlow', sans-serif;
  --max: 1180px;
  --r: 4px;
  --trans: 0.15s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
@media(min-width:768px){ .wrap { padding: 0 40px; } }
@media(min-width:1200px){ .wrap { padding: 0 48px; } }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background var(--trans);
}
nav.scrolled { background: rgba(10,10,11,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.logo-icon { width: 32px; height: 32px; display: grid; place-items: center; }
.logo-name { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; }
.logo-sub { display: none; }
.nav-links { display: none; list-style: none; gap: 32px; }
@media(min-width:768px){ .nav-links { display: flex; } }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color var(--trans); }
.nav-links a:hover { color: var(--text); }
@media(max-width:767px){
  .nav-cta { padding: 9px 13px; font-size: 13px; }
  .nav-cta svg { display: none; }
  .nav-inner { gap: 10px; }
  .logo-name { font-size: 15px; }
}
.menu-btn {
  display: flex; width: 36px; height: 36px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer; align-items: center; justify-content: center;
}
@media(min-width:768px){ .menu-btn { display: none; } }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 12px; right: 12px;
  background: rgba(12,12,14,0.99); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 16px; z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 0; color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); transition: color var(--trans); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.mobile-cta { margin-top: 10px; display: block !important; background: var(--gold); color: #080500 !important; border-radius: var(--r); padding: 12px 20px !important; text-align: center; font-weight: 700; border: none !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #080500;
  border: none; border-radius: var(--r);
  padding: 12px 24px; font-size: 14px; font-weight: 700; font-family: var(--ff-b);
  letter-spacing: 0.3px; cursor: pointer; text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn-primary:hover { background: #D4AA4A; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  border: 1px solid var(--border2); border-radius: var(--r);
  padding: 12px 24px; font-size: 14px; font-weight: 600; font-family: var(--ff-b);
  cursor: pointer; text-decoration: none;
  transition: background var(--trans), color var(--trans);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--text); }

/* ── SECTION ── */
.section { position: relative; z-index: 1; padding: 76px 0; }
@media(min-width:768px){ .section { padding: 96px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--gold); flex-shrink: 0; }

h1 {
  font-family: var(--ff-h);
  font-size: clamp(48px, 8.5vw, 112px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -1px; text-transform: uppercase;
  color: var(--text); margin-bottom: 28px;
}
h1 em { font-style: normal; color: var(--gold); display: block; }

h2 {
  font-family: var(--ff-h);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.5px; text-transform: uppercase;
  color: var(--text); margin-bottom: 20px;
}
h2 em { font-style: normal; color: var(--gold); }

h3 {
  font-family: var(--ff-h);
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text); margin-bottom: 8px;
}

.section-sub {
  font-size: 16px; color: var(--muted); font-weight: 400;
  max-width: 500px; line-height: 1.7; margin-bottom: 52px;
}

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  min-height: auto;
  overflow: hidden;
}
@media(min-width:900px){ .hero { grid-template-columns: 1fr 1fr; min-height: calc(100vh - 60px); align-items: center; } }

.hero-left {
  padding: 52px 24px 40px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
@media(min-width:768px){ .hero-left { padding: 60px 40px 60px 40px; } }
@media(min-width:900px){ .hero-left { padding: 40px 40px 40px 60px; } }
@media(min-width:1200px){ .hero-left { padding: 40px 48px 40px 80px; } }

/* Hero eyebrow — simple, no dot */
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: block;
}

.hero-sub {
  font-size: 17px; font-weight: 400; line-height: 1.65;
  color: var(--muted); max-width: 440px;
  margin-bottom: 40px;
  border-left: 2px solid var(--border2);
  padding-left: 18px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── PHONE (hero right) ── */
.hero-right {
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; position: relative;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  pointer-events: none;
}
.phone-wrap { width: 280px; position: relative; z-index: 1; }
.phone-frame {
  background: #0D0E10;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.ph-bar { background: #161719; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.ph-bar-title { font-size: 11px; font-weight: 600; color: var(--muted); }
.ph-live { font-size: 10px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 4px; }
.ph-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 1.8s ease-in-out infinite; }
.ph-room { padding: 12px 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ph-room-label { font-size: 9px; font-weight: 700; color: var(--dim); letter-spacing: 2px; text-transform: uppercase; }
.ph-room-name { font-family: var(--ff-h); font-size: 22px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.1; margin-top: 2px; }
.ph-actions { display: flex; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ph-action { flex: 1; padding: 9px 6px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); font-size: 10px; font-weight: 600; color: var(--dim); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ph-action:last-child { border-right: none; }
.ph-action.active { background: rgba(196,154,60,0.08); color: var(--gold); }
.ph-action-icon { width: 24px; height: 24px; border-radius: 4px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
.ph-action.active .ph-action-icon { background: rgba(196,154,60,0.15); }
.ph-action svg { color: var(--dim); }
.ph-action.active svg { color: var(--gold); }
.ph-items { padding: 8px 12px; display: flex; flex-direction: column; gap: 4px; }
.ph-item { display: flex; align-items: flex-start; gap: 7px; font-size: 10px; color: rgba(232,230,225,0.7); line-height: 1.4; padding: 6px 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 3px; }
.ph-item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.ph-ai { margin: 6px 12px 12px; padding: 8px 10px; background: rgba(196,154,60,0.06); border-left: 2px solid var(--gold); border-radius: 3px; }
.ph-ai-label { font-size: 8px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; }
.ph-ai-text { font-size: 10px; color: rgba(232,230,225,0.45); line-height: 1.4; }

/* ── TRUST BAR ── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.trust-bar-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 0; padding: 14px 0; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--muted); padding: 6px 20px; white-space: nowrap; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
@media(max-width:767px){ .trust-sep { display: none; } .trust-item { padding: 4px 16px; } }

/* ── PROOF BAR ── */
.proof-bar { position: relative; z-index: 1; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); margin-bottom: 0; }
.proof-inner { display: grid; grid-template-columns: repeat(2,1fr); }
@media(min-width:768px){ .proof-inner { grid-template-columns: repeat(4,1fr); } }
.proof-item { padding: 24px 28px; border-right: 1px solid var(--border); }
.proof-item:last-child { border-right: none; }
@media(max-width:767px){ .proof-item:nth-child(2){ border-right:none; } .proof-item:nth-child(3){ border-top:1px solid var(--border); } .proof-item:nth-child(4){ border-top:1px solid var(--border); } }
.proof-num { font-family: var(--ff-h); font-size: 24px; font-weight: 800; color: var(--gold); letter-spacing: -0.3px; line-height: 1; }
.proof-label { font-size: 12px; color: var(--dim); font-weight: 500; margin-top: 4px; }
.proof-div { display: none; }

/* ── COMPARE ── */
.compare-grid { display: grid; gap: 12px; }
@media(min-width:768px){ .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card { background: transparent; border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }
.compare-card.good { border-color: rgba(78,168,122,0.2); }
.compare-label { font-size: 12px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; }
.bad-label { color: var(--red); }
.good-label { color: var(--green); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.compare-list li { font-size: 14px; color: var(--muted); line-height: 1.5; padding-left: 4px; }

/* ── FEATURES ── */
.features-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
@media(min-width:600px){ .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-card { background: var(--bg); padding: 36px 32px; display: flex; flex-direction: column; transition: background var(--trans); }
.feature-card:hover { background: var(--bg2); }
.f-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border: 1px solid var(--border2); border-radius: var(--r); display: grid; place-items: center; margin-bottom: 20px; flex-shrink: 0; }
.f-icon svg { color: var(--gold); }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 400; flex: 1; }

/* ── VIDEO PLACEHOLDER ── */
.video-placeholder { margin-top: 56px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); background: var(--bg2); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; color: var(--dim); }
.video-placeholder p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

/* ── WORKFLOW ── */
.report-flow-wrap { margin-top: 56px; position: relative; z-index: 1; }
.rf-row { display: flex; gap: 0; align-items: stretch; flex-wrap: wrap; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--border); }
@media(min-width:768px){ .rf-row { flex-wrap: nowrap; } }
.rf-step { flex: 1 1 0; min-width: 0; background: var(--bg2); padding: 22px 18px; display: flex; flex-direction: column; gap: 8px; transition: background var(--trans); }
.rf-step:hover { background: var(--bg3); }
.rf-step-final { border-top: 2px solid var(--gold); }
.rf-step-final:hover { background: rgba(196,154,60,0.05); }
.rf-step-icon { width: 28px; height: 28px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: var(--r); display: grid; place-items: center; flex-shrink: 0; }
.rf-step-icon svg { color: var(--dim); }
.rf-step-final .rf-step-icon { background: var(--gold-dim); border-color: rgba(196,154,60,0.25); }
.rf-step-final .rf-step-icon svg { color: var(--gold); }
.rf-step h3 { font-size: 13px; margin: 0; }
.rf-step p { font-size: 12px; color: var(--muted); font-weight: 400; line-height: 1.5; margin: 0; }
.rf-connector { display: none; align-items: center; padding: 0 4px; flex-shrink: 0; color: var(--dim); align-self: center; }
@media(min-width:768px){ .rf-connector { display: flex; } }
@media(max-width:767px){ .rf-row { flex-direction: column; gap: 1px; } .rf-connector { display: none; } .rf-step-final { border-top: none; border-left: 3px solid var(--gold); } }

/* ── CTA BAND ── */
.cta-band {
  background: transparent; border: 1px solid var(--border2);
  border-top: 2px solid var(--gold);
  border-radius: var(--r); padding: 52px 44px;
  display: grid; gap: 32px; position: relative; overflow: hidden;
}
@media(min-width:900px){ .cta-band { grid-template-columns: 1fr auto; align-items: center; padding: 56px 52px; } }
.cta-h { font-family: var(--ff-h); font-size: clamp(26px,3.5vw,40px); font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: -0.3px; color: var(--text); margin-bottom: 10px; }
.cta-h em { font-style: normal; color: var(--gold); }
.cta-sub { font-size: 15px; color: var(--muted); max-width: 500px; line-height: 1.65; }
.cta-btn { align-self: flex-start; white-space: nowrap; }

/* ── PRICING ── */
.pricing-grid { display: grid; gap: 12px; }
@media(min-width:768px)  { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

/* ── ENTERPRISE BAND ── */
.enterprise-band {
  margin-top: 40px;
  border: 1px solid rgba(196,154,60,0.22);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 44px 40px;
  display: grid;
  gap: 36px;
  background: rgba(196,154,60,0.025);
  position: relative;
  overflow: hidden;
}
@media(min-width:860px) { .enterprise-band { grid-template-columns: 1fr auto; align-items: center; gap: 48px; } }
.enterprise-band::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 180px;
  background: linear-gradient(to left, rgba(196,154,60,0.04), transparent);
  pointer-events: none;
}
.ent-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.ent-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--gold); flex-shrink: 0; }
.ent-h { font-family: var(--ff-h); font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.05; text-transform: uppercase; letter-spacing: -0.3px; color: var(--text); margin-bottom: 12px; }
.ent-sub { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 480px; margin-bottom: 20px; }
.ent-features { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.ent-feature { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.ent-feature svg { color: var(--gold); flex-shrink: 0; }
.ent-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; flex-shrink: 0; }
@media(min-width:860px) { .ent-actions { align-items: flex-end; } }
.ent-note { font-size: 11px; color: var(--dim); margin-top: 4px; text-align: right; max-width: 180px; line-height: 1.5; }
@media(max-width:859px) { .ent-note { text-align: left; } }
.price-card { background: transparent; border: 1px solid var(--border); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; transition: border-color var(--trans); position: relative; }
.price-card:hover { border-color: var(--border2); }
.price-featured { background: var(--gold); border-color: var(--gold); color: #080500; }
.price-popular { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #080500; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 12px; border-radius: 3px; white-space: nowrap; border: 1px solid rgba(196,154,60,0.3); }
.price-tier { font-family: var(--ff-h); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.price-featured .price-tier { color: rgba(8,5,0,0.55); }
.price-amount-row { margin-bottom: 6px; }
.price-amount { font-family: var(--ff-h); font-size: 44px; font-weight: 900; line-height: 1; color: var(--text); letter-spacing: -1px; }
.price-featured .price-amount { color: #0C0A07; }
.price-per { font-size: 13px; color: var(--dim); font-family: var(--ff-b); font-weight: 400; }
.price-featured .price-per { color: rgba(8,5,0,0.45); }
.price-annual-note { font-size: 12px; color: var(--dim); margin-top: 4px; margin-bottom: 2px; min-height: 18px; transition: opacity 0.2s; }
.price-featured .price-annual-note { color: rgba(8,5,0,0.45); }
.price-custom { font-size: 34px; letter-spacing: -0.5px; }
.price-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 10px 0 20px; font-weight: 400; flex: 1; }
.price-featured .price-desc { color: rgba(8,5,0,0.65); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); line-height: 1.4; }
.price-list li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.price-featured .price-list li { color: rgba(8,5,0,0.7); }
.price-featured .price-list li svg { color: rgba(8,5,0,0.4); }
.price-btn { width: 100%; padding: 12px; border-radius: var(--r); font-size: 13px; font-weight: 700; font-family: var(--ff-b); letter-spacing: 0.3px; cursor: pointer; border: none; transition: background var(--trans), color var(--trans); text-decoration: none; display: block; text-align: center; }
.price-btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.price-btn-outline:hover { background: rgba(255,255,255,0.05); }
.price-btn-dark { background: #080500; color: var(--gold); }
.price-btn-dark:hover { background: #0f0a00; }
.price-btn-gold { background: var(--gold); color: #080500; }
.price-btn-gold:hover { background: #D4AA4A; }
.pricing-note { text-align: center; font-size: 12px; color: var(--dim); margin-top: 24px; line-height: 1.7; }

/* Billing toggle */
.billing-toggle { display: inline-flex; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 3px; margin: 0 auto 36px; gap: 2px; }
.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 0; }
.billing-opt { background: transparent; border: none; border-radius: 2px; padding: 7px 18px; font-size: 13px; font-weight: 600; font-family: var(--ff-b); color: var(--muted); cursor: pointer; transition: background var(--trans), color var(--trans); white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.billing-opt.active { background: var(--bg3); color: var(--text); }
.billing-opt:hover:not(.active) { color: var(--text); }
.billing-save { font-size: 10px; font-weight: 700; color: var(--green); background: var(--green-dim); border: 1px solid rgba(78,168,122,0.2); border-radius: 3px; padding: 1px 6px; letter-spacing: 0.3px; text-transform: uppercase; }

@media(max-width:767px){ .pricing-grid { display: flex; flex-direction: column; } .price-card { width: 100%; } }

/* ── SIGN UP CTA ── */
.signup-cta { text-align: center; max-width: 560px; margin: 0 auto; }
.signup-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 18px; }
.signup-note { font-size: 12px; color: var(--dim); line-height: 1.6; }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 44px 0 24px; background: var(--bg); }
.footer-inner { display: grid; gap: 36px; margin-bottom: 36px; }
@media(min-width:768px){ .footer-inner { grid-template-columns: 1fr auto; align-items: start; } }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
.footer-tagline { font-size: 12px; color: var(--dim); }
.footer-links { display: flex; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-title { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--dim); text-decoration: none; transition: color var(--trans); }
.footer-col a:hover { color: var(--muted); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--border); font-size: 11px; color: var(--dim); }

/* ── INNER PAGES ── */
.inner-hero { padding: 64px 0 40px; }
.inner-hero h1 { font-size: clamp(36px,5vw,56px); margin-bottom: 14px; }
.inner-content { max-width: 740px; margin: 0 auto; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 36px 24px; }
@media(min-width:768px){ .inner-content { padding: 48px 52px; } }
.inner-content h2 { font-size: 20px; margin: 32px 0 10px; }
.inner-content h2:first-child { margin-top: 0; }
.inner-content p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.inner-content ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.inner-content ul li { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 5px; }
.inner-content a { color: var(--gold); }
.inner-updated { font-size: 12px; color: var(--dim); margin-bottom: 28px; }

/* ── CONTACT ── */
.contact-grid { display: grid; gap: 16px; max-width: 800px; margin: 0 auto; }
@media(min-width:768px){ .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }
.contact-info h2 { font-size: 28px; margin-bottom: 14px; }
.contact-info p { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }
.contact-detail { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.contact-item a { color: var(--gold); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-form-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }

/* ── VOICE TO SCOPE DEMO ── */
.vd-grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: stretch; }
@media(min-width:768px){ .vd-grid { grid-template-columns: 1fr 44px 1fr; } }
.vd-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.vd-scope { background: rgba(196,154,60,0.05); border-color: rgba(196,154,60,0.25); }
.vd-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.vd-label-gold { color: var(--gold); }
.vd-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.vd-text { font-size: 14px; color: rgba(232,230,225,0.65); line-height: 1.7; min-height: 124px; }
.vd-lines { display: flex; flex-direction: column; gap: 8px; min-height: 124px; }
.vd-line { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text); line-height: 1.5; opacity: 0; transform: translateY(5px); transition: opacity 0.45s ease, transform 0.45s ease; }
.vd-line.show { opacity: 1; transform: none; }
.vd-line svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.vd-arrow { display: flex; align-items: center; justify-content: center; color: var(--gold); }
@media(max-width:767px){ .vd-arrow { transform: rotate(90deg); padding: 2px 0; } }
.vd-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; gap: 12px; margin-top: 12px; }
@media(min-width:768px){ .testi-grid { grid-template-columns: repeat(3,1fr); align-items: center; } }
.testi-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-top: 2px solid rgba(196,154,60,0.45); border-radius: 0 0 var(--r) var(--r); padding: 28px 24px; display: flex; flex-direction: column; }
.testi-head { font-family: var(--ff-h); font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); line-height: 1.1; margin-bottom: 12px; }
.testi-quote { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.testi-author { margin-top: 18px; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.testi-feature { background: rgba(196,154,60,0.05); border-color: rgba(196,154,60,0.3); border-top: 3px solid var(--gold); padding: 36px 28px; }
.testi-feature .testi-head { font-size: 23px; color: var(--gold); }
.testi-feature .testi-quote { font-size: 14px; color: rgba(232,230,225,0.65); }
@media(min-width:768px){ .testi-feature { transform: scale(1.045); z-index: 1; box-shadow: 0 18px 44px rgba(0,0,0,0.45); } }

/* ── FORMS ── */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
.form-field .req { color: var(--gold); }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  font-size: 14px; font-family: var(--ff-b);
  color: var(--text);
  outline: none; width: 100%;
  transition: border-color 0.22s;
  appearance: none; -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-field select option { background: var(--bg2); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(196,154,60,0.5); }
.form-error { font-size: 13px; color: var(--red); margin-top: 10px; min-height: 18px; }
@media(max-width:767px){
  .form-field input, .form-field textarea, .form-field select { font-size: 16px; }
}
.success-icon {
  width: 44px; height: 44px; margin: 0 auto;
  background: var(--green-dim); border: 1px solid rgba(78,168,122,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--green);
}

/* ── FOUNDER ── */
.founder-card { background: transparent; border: 1px solid var(--border); border-radius: var(--r); padding: 44px 32px; display: grid; gap: 44px; }
@media(min-width:900px){ .founder-card { grid-template-columns: 1fr 1fr; align-items: center; padding: 56px 52px; } }
.founder-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; max-width: 420px; }
.founder-text p:last-of-type { margin-bottom: 22px; }
.founder-close { color: var(--text) !important; font-weight: 600; font-size: 14px !important; letter-spacing: 0.2px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.f-tag { font-size: 11px; font-weight: 700; color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(196,154,60,0.2); border-radius: var(--r); padding: 4px 10px; letter-spacing: 0.5px; text-transform: uppercase; }
.founder-quote { background: rgba(255,255,255,0.025); border: 1px solid var(--border2); border-left: 3px solid var(--gold); border-radius: var(--r); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.quote-mark { font-family: var(--ff-h); font-size: 72px; color: var(--gold); line-height: 0.7; opacity: 0.4; font-weight: 900; }
blockquote { font-family: var(--ff-h); font-size: clamp(20px,2.5vw,28px); font-weight: 700; line-height: 1.2; color: var(--text); text-transform: uppercase; letter-spacing: -0.3px; }
.qa-name { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.qa-title { font-size: 11px; color: var(--dim); margin-top: 2px; }

/* ── FINAL CTA ── */
.final-cta-section { padding-bottom: 36px; }
.final-cta { text-align: center; max-width: 600px; margin: 0 auto; padding: 52px 20px; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.45s ease, transform 0.45s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.07s; }
.fade-in-delay-2 { transition-delay: 0.14s; }
.fade-in-delay-3 { transition-delay: 0.21s; }
.hero .fade-in, .hero .fade-in-delay-1 { opacity: 1; transform: none; }

/* badge (legacy) */
.badge { display: inline-flex; align-items: center; gap: 7px; background: var(--gold-dim); border: 1px solid rgba(196,154,60,0.2); border-radius: var(--r); padding: 5px 12px 5px 9px; font-size: 11px; color: var(--gold); font-weight: 600; margin-bottom: 20px; }

/* ── MOBILE ── */
@media(max-width:600px){
  /* hero stacks — text first, screenshot below, centred and contained */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 52px 20px 40px; }
  .hero-right { padding: 0 20px 52px; justify-content: center; }
  .phone-mockup { width: 220px; margin: 0 auto; }
  .phone-glow { inset: -20px; }

  h1 { font-size: 52px; letter-spacing: -0.5px; }
  h2 { font-size: 28px; letter-spacing: -0.3px; }
  .section { padding: 64px 0; }
  .section-sub { font-size: 15px; }

  /* features: single column on mobile */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 22px 20px; }

  /* screenshot strip: single column, phone centred and sized properly */
  .screenshots-strip { flex-direction: column; align-items: center; gap: 36px; padding-top: 40px; margin-top: 48px; }
  .ss-col, .ss-col-back, .ss-col-front, .ss-col-left, .ss-col-right { transform: none !important; opacity: 1 !important; flex: none; width: 260px; margin-left: 0 !important; }
  .ss-phone { width: 260px; }
  .ss-report-wrap { width: 260px; }

  .compare-card { padding: 22px 18px; }
  .pricing-grid { gap: 10px; }
  .price-card { padding: 24px 20px; }
  .price-amount { font-size: 40px; }
  .cta-band { padding: 32px 22px; }
  .founder-card { padding: 28px 20px; gap: 28px; grid-template-columns: 1fr; }
  .founder-quote { padding: 22px; }
  .footer-inner { gap: 24px; }
  .footer-links { gap: 20px; flex-wrap: wrap; }
  .final-cta { padding: 36px 0; }
}

/* ── HERO APP PREVIEW (enlarged) ── */
.hero-app-preview {
  width: 100%; max-width: 520px;
  background: #0D0F12;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative; z-index: 1;
}
.hap-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: #161819;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hap-topbar-left { display: flex; align-items: center; gap: 10px; }
.hap-dots { display: flex; gap: 5px; }
.hap-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.hap-job { font-size: 12px; font-weight: 600; color: var(--muted); }
.hap-live { font-size: 11px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 5px; }
.hap-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s ease-in-out infinite; }

.hap-rooms {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #111315;
}
.hap-rooms::-webkit-scrollbar { display: none; }
.hap-room {
  flex-shrink: 0; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--dim);
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer; white-space: nowrap;
}
.hap-room.active { color: var(--gold); background: rgba(196,154,60,0.08); }
.hap-room.dim { color: rgba(255,255,255,0.18); }

.hap-capture {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hap-cap-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 8px;
  font-size: 12px; font-weight: 600; color: var(--dim);
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}
.hap-cap-btn:last-child { border-right: none; }
.hap-cap-btn.active { background: rgba(196,154,60,0.08); color: var(--gold); }
.hap-cap-btn.generate { color: rgba(78,168,122,0.8); }
.hap-cap-btn svg { flex-shrink: 0; }

.hap-photos { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hap-photo-label { font-size: 10px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.hap-photo-strip { display: flex; gap: 8px; }
.hap-photo {
  width: 72px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, #1C1F24, #141618);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 4px;
}
.hap-photo-tag { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.5); padding: 2px 5px; border-radius: 2px; }
.hap-photo.add {
  background: rgba(255,255,255,0.03); border-style: dashed; border-color: rgba(255,255,255,0.15);
  align-items: center; justify-content: center; color: var(--dim);
}

.hap-scope { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hap-scope-label { font-size: 10px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.hap-scope-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: rgba(232,230,225,0.75); line-height: 1.45;
  padding: 6px 8px; margin-bottom: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
}
.hap-scope-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.hap-ai {
  padding: 10px 14px;
  background: rgba(196,154,60,0.05);
  border-top: 1px solid rgba(196,154,60,0.15);
  display: flex; align-items: center; gap: 10px;
}
.hap-ai-label { font-size: 9px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; flex-shrink: 0; }
.hap-ai-text { font-size: 11px; color: rgba(232,230,225,0.45); line-height: 1.4; }

/* ── 4-STEP GRID ── */
.steps-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media(min-width:600px){ .steps-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1000px){ .steps-grid { grid-template-columns: repeat(4,1fr); } }

.step-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color var(--trans), background var(--trans);
}
.step-card:hover { border-color: var(--border2); background: rgba(255,255,255,0.02); }
.step-card-final {
  border-top: 2px solid var(--gold);
  background: rgba(196,154,60,0.03);
}
.step-num {
  font-family: var(--ff-h);
  font-size: 13px; font-weight: 800;
  color: #080500; background: var(--gold);
  width: 28px; height: 28px; border-radius: var(--r);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.step-card h3 { font-size: 15px; margin-bottom: 0; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; font-weight: 400; }

/* proof-bar full-width (no wrap) */
.proof-bar .proof-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media(min-width:768px){ .proof-bar .proof-inner { padding: 0 40px; } }

/* ── PHONE (hero right) ── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px 48px; position: relative;
  background: transparent;
}
.hero-right::before { display: none; }
@media(min-width:900px){
  .hero-right { padding: 40px 40px 40px 20px; }
}
.phone-mockup {
  position: relative; z-index: 1;
  width: min(260px, 75vw);
  margin: 0 auto;
}
@media(min-width:900px){ .phone-mockup { width: min(340px, 90%); } }
.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(196,154,60,0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.phone-shell {
  position: relative; z-index: 1;
  background: #111214;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  padding: 10px 8px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}
.phone-notch {
  width: 80px; height: 20px;
  background: #111214;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative; z-index: 2;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
}
.phone-screen-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
}

/* tighter spacing within hero content block */
.hero-left h1 { margin-bottom: 18px; }
.hero-eyebrow { margin-bottom: 18px; }

/* hero badge line */
.hero-badge {
  font-size: 12px; color: var(--dim);
  font-weight: 500; letter-spacing: 0.2px;
  margin-top: 4px;
}

/* ── SCREENSHOT STRIP — depth composition ── */
.screenshots-strip {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
  position: relative;
  isolation: isolate;
}

.ss-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
  position: relative;
}
/* Left: back, raised slightly */
.ss-col-back { flex: 0.75; opacity: 0.82; z-index: 1; }
.ss-col-left  { margin-bottom: 24px; }

/* Centre: focal point */
.ss-col-front { flex: 1; opacity: 1; z-index: 2; }

/* Right: larger, raised, always in front of centre */
.ss-col-right {
  flex: 0.88;
  margin-bottom: 18px;
  margin-left: 16px;
  z-index: 3;
}
.ss-col-right .ss-report-wrap {
  transform: scale(1.12);
  transform-origin: bottom center;
}

.ss-phone {
  background: #111214;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  padding: 10px 8px;
  width: 100%;
  overflow: hidden;
}
.ss-phone-sm { border-radius: 22px; }
.ss-phone-lg {
  border: 2px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 56px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06) inset;
  overflow: hidden;
}
.ss-img {
  width: 100%; border-radius: 20px; display: block;
  border: none;
}
.ss-phone-sm .ss-img { border-radius: 14px; }

.ss-report-wrap {
  background: #111214;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05) inset;
  width: 100%;
  border: 2px solid rgba(255,255,255,0.18);
  padding: 10px 8px;
}
.ss-report-img {
  width: 100%; display: block;
  border-radius: 12px;
}

.ss-label {
  font-size: 10px; font-weight: 700; color: var(--dim);
  text-transform: uppercase; letter-spacing: 2.5px;
  text-align: center;
}
.ss-col-front .ss-label { color: rgba(232,230,225,0.45); }

@media(max-width:767px){
  .screenshots-strip {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding-top: 36px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .screenshots-strip::-webkit-scrollbar { display: none; }
  .ss-col-back, .ss-col-front, .ss-col-right {
    transform: none !important;
    opacity: 1 !important;
    flex: 0 0 85vw;
    width: 85vw;
    max-width: 300px;
    margin: 0 12px !important;
    scroll-snap-align: center;
  }
  .ss-col-right .ss-report-wrap { transform: none; }
  .ss-col-back { margin-left: calc((100vw - 85vw) / 2) !important; }
  .ss-col-right { margin-right: calc((100vw - 85vw) / 2) !important; }
}
