/* AsteHub — Landing
   Inspired: Linear · Cash App · Wise · Robinhood · Notion
   Brand: ink #0A0A0A · indigo #1E2A5E · surface #FFFFFF
*/

:root {
  --ink: #0A0A0A;
  --ink-2: #1F1F1F;
  --indigo: #1E2A5E;
  --indigo-soft: #2E3F87;
  --indigo-50: #EEF0F8;
  --muted: #6B6B6B;
  --muted-2: #9B9B9B;
  --hairline: #ECECEC;
  --hairline-2: #E0E0E0;
  --surface: #FFFFFF;
  --surface-2: #FAFAFA;
  --surface-3: #F4F4F5;
  --green: #0A7B4F;
  --green-soft: #E5F4EE;
  --amber: #F59E0B;
  --red: #DC2626;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --maxw: 1200px;
  --pad: 24px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04), 0 1px 1px rgba(10,10,10,0.03);
  --shadow-md: 0 8px 24px -4px rgba(10,10,10,0.08), 0 2px 6px rgba(10,10,10,0.04);
  --shadow-lg: 0 30px 60px -20px rgba(10,10,10,0.18), 0 10px 30px -10px rgba(10,10,10,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--indigo); }
button { font-family: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.muted { color: var(--muted); }
.small { font-size: 13px; }


/* ===== Logo wordmark ===== */
.logo {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.logo-aste { color: var(--ink); }
.logo-hub { color: var(--indigo); }
.logo-sm { font-size: 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--indigo); color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
}
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px var(--pad) 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30,42,94,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(30,42,94,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--indigo-50);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--indigo);
  position: relative;
}
.badge-dot::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--indigo);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(2.2); opacity: 0; }
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
}
.hero h1 em { font-style: normal; color: var(--indigo); }
.lede {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 540px;
  line-height: 1.5;
}

/* Download CTA (hero) */
.download-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.store-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.store-cta svg { flex-shrink: 0; color: #fff; }
.store-cta > span:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.store-cta-pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.store-cta-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.store-cta-light { background: var(--ink); }

.android-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px dashed var(--hairline-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: not-allowed;
}
.android-soon svg { color: var(--muted-2); }

.android-note {
  margin-top: 16px;
  text-align: center;
  font-style: italic;
}

/* Rating row (hero social proof) */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.rating-stars {
  color: #F59E0B;
  letter-spacing: 1px;
  font-size: 14px;
}
.rating strong { color: var(--ink); font-weight: 800; font-size: 16px; }
.rating .muted strong { color: var(--ink); }
.rating-stars-sm { color: #F59E0B; letter-spacing: 1px; }

/* Follow CTA (replaces email form) */
.follow-cta {
  margin-bottom: 32px;
  max-width: 540px;
}
.follow-label {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.follow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
}
.follow-btn:hover { transform: translateY(-1px); border-color: var(--ink); color: var(--ink); }
.follow-btn svg { flex-shrink: 0; }
.follow-ig:hover { background: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%); color: #fff; border-color: transparent; }
.follow-tt:hover { background: #0A0A0A; color: #fff; border-color: transparent; }
.follow-x:hover  { background: #0A0A0A; color: #fff; border-color: transparent; }
.follow-li:hover { background: #0A66C2; color: #fff; border-color: transparent; }

/* Lead magnet status (replaces email form) */
.leadmag-status {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.leadmag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: var(--indigo-50);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.leadmag-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--indigo);
  animation: pulse 2s ease-in-out infinite;
}

/* Waitlist form (legacy, kept hidden) */
.waitlist { margin-bottom: 32px; }
.waitlist-row {
  display: flex;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  padding: 6px;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.waitlist-row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.06);
}
.waitlist input[type=email] {
  flex: 1;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
  outline: none;
}
.waitlist input::placeholder { color: var(--muted-2); }
.form-note, .form-success, .form-error {
  margin: 12px 0 0 6px;
  font-size: 13px;
  color: var(--muted);
}
.form-success { color: var(--green); font-weight: 600; }
.form-error { color: var(--red); font-weight: 600; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13.5px;
  color: var(--muted);
}
.trust-row li {
  position: relative;
  padding-left: 18px;
}
.trust-row li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}
.avatars { display: flex; }
.av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -10px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  background: var(--surface-3);
}
.avatars > .av:first-child { margin-left: 0; }
.av-large { width: 48px; height: 48px; margin-left: 0; }

/* Hero phone art */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone {
  width: 300px;
  height: 600px;
  border-radius: 44px;
  background: var(--ink);
  padding: 11px;
  box-shadow: var(--shadow-lg);
}
.phone-front {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
}
.phone-back {
  position: absolute;
  width: 240px;
  height: 380px;
  border-radius: 36px;
  top: 60px;
  right: -20px;
  z-index: 1;
  transform: rotate(8deg);
  opacity: 0.95;
}
.phone-back .phone-screen {
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 33px;
  background: var(--surface-2);
  padding: 24px 16px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-screen-dark {
  background: linear-gradient(180deg, #1E2A5E 0%, #0F1530 100%);
}
.phone-status {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600;
  color: var(--ink);
  padding: 0 6px;
}
.phone-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 6px 8px;
}
.phone-header strong { font-size: 22px; letter-spacing: -0.02em; }
.phone-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--indigo-50);
  color: var(--indigo);
}
.phone-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--hairline);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phone-img {
  width: 100%;
  height: 120px;
  border-radius: 11px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #B8C4DD 0%, #4A5680 100%);
}
.phone-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.phone-row strong { font-weight: 700; }
.phone-row .score {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
}
.score-good { background: var(--indigo); }
.score-mid { background: var(--ink); }
.phone-row.sub { font-size: 12px; }
.phone-row.sub strong { font-size: 14px; }
.phone-row .muted { color: var(--muted); }
.phone-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.phone-tags .tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--surface-3);
  color: var(--ink-2);
  font-weight: 500;
}
.phone-tags .tag-good { background: var(--green-soft); color: var(--green); }

.ai-bubble {
  background: rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 16px;
  color: #fff;
  backdrop-filter: blur(12px);
}
.ai-bubble .ai-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.ai-bubble p { margin: 0; font-size: 14px; line-height: 1.45; }

/* ===== METRICS BAR ===== */
.metrics {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  padding: 32px 0;
}
.metrics-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.metric strong {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.metric span { font-size: 13px; color: var(--muted); }

/* ===== Section heads ===== */
.section-head { margin-bottom: 56px; max-width: 700px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}
h2 em { font-style: normal; color: var(--indigo); }

/* ===== FEATURE blocks ===== */
.feature {
  padding: 100px var(--pad);
}
.feature-alt { background: var(--surface-2); }
.feature-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-inner.reverse > .feature-copy { order: 2; }
.feature-inner.reverse > .feature-art { order: 1; }
.feature-copy { max-width: 520px; }
.feature-copy p {
  font-size: 17px;
  color: var(--muted);
  margin: 16px 0 24px;
  line-height: 1.55;
}
.check { display: flex; flex-direction: column; gap: 12px; }
.check li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-2);
}
.check li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--indigo);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-art { display: flex; justify-content: center; align-items: center; }

/* Card demo (Score AI) */
.card-demo {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hairline);
}
.card-demo-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}
.ring-score {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.ring-score svg { width: 100%; height: 100%; }
.ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-num strong {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ring-num span { font-size: 12px; color: var(--muted); }
.card-demo-hero h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card-demo-hero p { margin: 0; font-size: 13px; }
.card-demo-bars { display: flex; flex-direction: column; gap: 14px; }
.bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bar > span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
}
.bar-track {
  height: 6px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--indigo);
  border-radius: 999px;
}

/* Chat demo */
.chat-demo {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 24px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hairline);
}
.chat-msg {
  padding: 14px 18px;
  border-radius: 18px;
  max-width: 85%;
  font-size: 14.5px;
  line-height: 1.5;
}
.chat-user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.chat-ai {
  align-self: flex-start;
  background: var(--indigo-50);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.chat-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Map demo */
.map-demo {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hairline);
  background: var(--surface-3);
}
.map-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.map-canvas .maplibregl-ctrl-attrib {
  font-size: 10px;
  background: rgba(255,255,255,0.7);
}
.map-pin-wrap {
  display: inline-block;
  cursor: pointer;
}
.map-pin {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(10,10,10,0.25);
  border: 2px solid #fff;
  transition: transform .15s ease;
  will-change: transform;
}
.map-pin-wrap:hover .map-pin { transform: scale(1.1); }
.map-pin-accent {
  background: var(--indigo);
  animation: pinBounce 2.4s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 2px solid #fff;
}
.pin-1 { background: var(--indigo); animation: bounce 2.4s ease-in-out infinite; }
.pin-2 { background: var(--ink); }
.pin-3 { background: var(--ink); }
.pin-4 { background: var(--indigo); animation: bounce 2.4s ease-in-out 0.6s infinite; }
.pin-5 { background: var(--ink); opacity: 0.6; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 6px)); }
}

/* ===== HOW ===== */
.how {
  padding: 100px var(--pad);
  background: var(--ink);
  color: #fff;
}
.how-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.how h2 { color: #fff; }
.how .eyebrow { color: rgba(255,255,255,0.6); }
.how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.how .step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background .2s ease, transform .2s ease;
}
.how .step:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.how .step-num {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  color: var(--indigo-soft);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.how .step h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.how .step p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
}

/* ===== DATA ===== */
.data {
  padding: 100px var(--pad);
  text-align: center;
}
.data-inner { max-width: 900px; margin: 0 auto; }
.data h2 { margin-bottom: 16px; }
.data-sub { font-size: 17px; color: var(--muted); margin: 0 0 40px; }
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.logo-pill {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--surface-3);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--hairline);
}

/* ===== QUOTE ===== */
.quote {
  padding: 100px var(--pad);
  background: var(--surface-2);
}
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 32px;
  color: var(--ink);
}
.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.quote-author strong { display: block; font-weight: 700; font-size: 15px; }
.quote-author .muted { font-size: 13px; }

/* ===== FAQ ===== */
.faq {
  padding: 100px var(--pad);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--hairline); }
.faq summary {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 92%;
}

/* ===== FINAL CTA ===== */
.cta {
  padding: 0 var(--pad) 100px;
}
.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30,42,94,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.cta h2 {
  position: relative;
  color: #fff;
  margin: 0 0 14px;
}
.cta p {
  position: relative;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  font-size: 18px;
}
.cta .btn-primary {
  position: relative;
  background: #fff;
  color: var(--ink);
}
.cta .btn-primary:hover { background: var(--indigo); color: #fff; }
.cta .small {
  position: relative;
  margin-top: 20px;
  color: rgba(255,255,255,0.6);
}
.cta .small strong { color: #fff; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--hairline);
  background: var(--surface);
  padding: 60px var(--pad) 24px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.footer-brand p { margin: 12px 0 0; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-cols a:hover { color: var(--ink); }
.footer-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

/* ===== WAITLIST SUCCESS (referral) ===== */
.waitlist-success {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.ws-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.ws-check {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px;
  flex-shrink: 0;
}
.ws-head h3 { margin: 0 0 2px; font-size: 19px; letter-spacing: -0.01em; }
.ws-head p  { margin: 0; color: var(--muted); font-size: 14px; }
.ws-tiers {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.ws-tiers-label { margin: 0 0 10px; font-size: 13px; color: var(--ink-2); }
.ws-tier-list { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--ink-2); }
.ws-tier-list li { display: flex; align-items: center; gap: 10px; }
.ws-tier-num {
  display: inline-block;
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 64px;
  text-align: center;
}
.ws-share { }
.ws-share-label { margin: 0 0 8px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.ws-link-row {
  display: flex; gap: 8px; align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  margin-bottom: 12px;
}
.ws-link-row code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 13px;
  color: var(--ink-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ws-share-buttons {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  cursor: pointer;
  transition: opacity .15s ease, transform .15s ease;
}
.share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.share-wa { background: #25D366; }
.share-tg { background: #229ED9; }
.share-x  { background: #0A0A0A; }
.share-li { background: #0A66C2; }

/* ===== LEAD MAGNET ===== */
.leadmag {
  padding: 100px var(--pad);
  background: var(--surface-2);
}
.leadmag-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.leadmag-art { display: flex; justify-content: center; }
.ebook-img {
  width: 320px;
  height: 440px;
  border-radius: 6px 14px 14px 6px;
  object-fit: cover;
  transform: rotate(-4deg);
  box-shadow:
    -10px 0 0 -2px rgba(255,255,255,0.15) inset,
    var(--shadow-lg);
  display: block;
}
.leadmag-copy { max-width: 540px; }
.leadmag-copy h2 { margin-bottom: 16px; }
.leadmag-copy p {
  font-size: 17px; color: var(--muted); line-height: 1.55;
  margin: 0 0 24px;
}
.leadmag-form {
  display: flex; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  padding: 6px;
  max-width: 480px;
  margin-bottom: 12px;
}
.leadmag-form input {
  flex: 1;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  font: inherit;
  outline: none;
}
.leadmag-success { color: var(--green); font-weight: 600; font-size: 14px; }

/* ===== FOOTER social ===== */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.footer-social svg { display: block; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); }
.cookie-banner p { margin: 0; color: rgba(255,255,255,0.85); }
.cookie-banner .btn-primary { align-self: flex-start; background: #fff; color: var(--ink); }
.cookie-banner .btn-primary:hover { background: var(--indigo); color: #fff; }

/* ===== COMPARISON ===== */
.compare {
  padding: 100px var(--pad);
}
.compare-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.compare-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 640px;
  line-height: 1.55;
}
.compare-table-wrap {
  margin-top: 56px;
}
.compare-table-scroll {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 720px;
}
.compare-table thead th {
  text-align: center;
  padding: 18px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface-2);
  border-bottom: 1px solid var(--hairline);
  letter-spacing: -0.005em;
}
.compare-table thead .compare-th-feat { text-align: left; width: 38%; }
.compare-table thead .compare-th-us {
  color: var(--ink);
  background: var(--indigo-50);
  text-align: center;
  vertical-align: middle;
}
.compare-logo {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.compare-table tbody th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.compare-table tbody td {
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
  background: var(--surface);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .ok-us {
  color: var(--indigo);
  font-weight: 800;
  font-size: 18px;
  background: var(--indigo-50);
}
.compare-table .ok {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}
.compare-table .ko {
  color: var(--muted-2);
  font-weight: 500;
}
.compare-table .meh {
  color: var(--muted);
  font-style: italic;
  font-size: 12.5px;
}
.compare-disclaimer {
  margin: 16px 4px 0;
  font-size: 12px;
  color: var(--muted-2);
  text-align: right;
}

/* ===== STORE BADGES ===== */
.store-badges {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  padding: 10px 18px 10px 14px;
  border-radius: 14px;
  font-family: inherit;
  cursor: not-allowed;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .15s ease, background .15s ease;
}
.store-badge:hover { opacity: 1; background: rgba(255,255,255,0.12); }
.store-badge svg { color: #fff; flex-shrink: 0; }
.store-badge > span:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.store-pre {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.store-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* ===== STICKY CTA mobile ===== */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  display: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .leadmag { padding: 64px var(--pad); }
  .leadmag-inner { grid-template-columns: 1fr; gap: 48px; }
  .ebook-cover { width: 260px; height: 360px; padding: 28px 24px; }
  .ebook-cover h3 { font-size: 30px; }
}
@media (max-width: 960px) {
  .hero { padding-top: 40px; padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { min-height: 520px; }
  .feature { padding: 64px var(--pad); }
  .feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-inner.reverse > .feature-copy { order: 1; }
  .feature-inner.reverse > .feature-art { order: 2; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .how { padding: 64px var(--pad); }
  .how .steps { grid-template-columns: 1fr 1fr; }
  .data, .quote, .faq { padding: 64px var(--pad); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .sticky-cta { display: block; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 42px; }
  .lede { font-size: 17px; }
  .phone { width: 280px; height: 560px; }
  .phone-back { display: none; }
  .phone-front { transform: rotate(0); }
  .how .steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 64px 24px; border-radius: 24px; }
  .quote-text { font-size: 24px; }
  .nav-inner { padding: 14px var(--pad); }
}
