:root {
  --bg: #0B0D12;
  --bg-2: #0F121A;
  --bg-3: #141823;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(201, 168, 106, 0.45);
  --text: #ECECF1;
  --muted: #9AA0AD;
  --muted-2: #6B7280;
  --gold: #C9A86A;
  --gold-soft: #E2C78F;
  --gold-deep: #A9853F;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-text, .playfair {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }

/* ===== Brand logo (app icon) ===== */
.brand-logo { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; box-shadow: 0 4px 14px -6px rgba(201,168,106,0.5); flex-shrink: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1A1206;
  box-shadow: 0 12px 30px -10px rgba(201, 168, 106, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201, 168, 106, 0.75); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 13, 18, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand-mark { color: var(--gold); display: grid; place-items: center; }
.brand-text { font-size: 1.35rem; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--gold-soft) !important;
}
.nav-cta:hover { background: rgba(201, 168, 106, 0.12); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: 150px 0 60px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(closest-side, rgba(201, 168, 106, 0.22), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(201, 168, 106, 0.10);
  border: 1px solid var(--border-strong);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 22px 0 18px; }
.hero-sub { color: var(--muted); font-size: 1.08rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin: 30px 0 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; list-style: none; }
.hero-stats strong { display: block; font-family: "Playfair Display", serif; font-size: 2.1rem; color: var(--text); }
.hero-stats span { color: var(--muted-2); font-size: 0.85rem; }

.trust-strip { margin-top: 36px; }
.trust-strip > span { display: block; color: var(--muted-2); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.trust-cities { color: var(--muted); font-size: 0.92rem; font-weight: 500; }

/* Phone mockup */
.hero-card { display: grid; place-items: center; }
.phone {
  width: 300px; height: 600px;
  background: linear-gradient(160deg, #1b2030, #0c0f16);
  border: 1px solid var(--border);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: #05070b; border-radius: 0 0 16px 16px; z-index: 2; }
.phone-screen { background: linear-gradient(180deg, #0d1018, #0a0c12); border-radius: 30px; height: 100%; padding: 34px 16px 16px; overflow: hidden; }
.ps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ps-title { font-weight: 600; font-size: 0.95rem; }
.ps-badge { font-size: 0.65rem; color: var(--gold-soft); border: 1px solid var(--border-strong); padding: 3px 8px; border-radius: 999px; }
.car-listing { display: flex; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px; margin-bottom: 12px; }
.car-thumb { width: 64px; height: 64px; border-radius: 10px; background: linear-gradient(135deg, #2a3142, #161b27); flex-shrink: 0; }
.car-thumb.alt { background: linear-gradient(135deg, #3a2f1f, #211a10); }
.car-meta { display: flex; flex-direction: column; gap: 2px; }
.car-name { font-weight: 600; font-size: 0.85rem; }
.car-spec { font-size: 0.7rem; color: var(--muted-2); }
.car-price { font-size: 0.85rem; color: var(--gold-soft); font-weight: 600; }
.offer-row { margin-top: 8px; background: rgba(201,168,106,0.08); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 12px; }
.offer-label { font-size: 0.7rem; color: var(--muted); display: block; }
.offer-flow { font-size: 0.78rem; color: var(--text); }
.offer-flow b { color: var(--gold-soft); }

/* Marquee */
.marquee { margin-top: 64px; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: scroll 28s linear infinite; font-family: "Playfair Display", serif; font-size: 1.15rem; color: var(--muted-2); }
.marquee-track span { opacity: 0.7; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-tint { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.lead { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* Compare */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; max-width: 920px; margin: 0 auto; }
.compare-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.compare-col.good { background: linear-gradient(160deg, rgba(201,168,106,0.10), rgba(201,168,106,0.02)); border-color: var(--border-strong); }
.compare-col h3 { font-size: 1.3rem; margin-bottom: 18px; }
.compare-col.bad h3 { color: var(--muted); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { padding-left: 28px; position: relative; color: var(--muted); font-size: 0.97rem; }
.compare-col.bad li::before { content: "✕"; position: absolute; left: 0; color: #c9645f; font-weight: 700; }
.compare-col.good li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.compare-arrow { display: grid; place-items: center; padding: 0 18px; font-size: 1.8rem; color: var(--gold); }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s; }
.feature:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.feature-icon { font-size: 1.6rem; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(201,168,106,0.10); border: 1px solid var(--border-strong); margin-bottom: 18px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.95rem; }
.feature code { color: var(--gold-soft); background: rgba(201,168,106,0.10); padding: 1px 6px; border-radius: 6px; font-size: 0.85em; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.step-num { font-family: "Playfair Display", serif; font-size: 2.4rem; color: var(--gold); opacity: 0.85; display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column; position: relative; }
.plan-pop { background: linear-gradient(165deg, rgba(201,168,106,0.14), rgba(201,168,106,0.03)); border-color: var(--border-strong); box-shadow: 0 20px 60px -28px rgba(201,168,106,0.5); }
.plan-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #1A1206; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 1.5rem; margin-bottom: 10px; }
.plan-price { font-family: "Playfair Display", serif; font-size: 2.4rem; color: var(--text); }
.plan-price span { font-family: "Inter", sans-serif; font-size: 0.9rem; color: var(--muted-2); font-weight: 400; }
.plan-listings { color: var(--gold-soft); font-weight: 600; margin: 6px 0 18px; font-size: 0.92rem; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan li { color: var(--muted); font-size: 0.93rem; padding-left: 24px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.plan .btn { width: 100%; }

/* Network */
.network-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.network-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.network-list li { padding-left: 26px; position: relative; color: var(--muted); }
.network-list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 2px; }
.network-list strong { color: var(--text); }
.network-visual { position: relative; height: 380px; display: grid; place-items: center; }
.network-visual::before { content: ""; position: absolute; inset: 10%; border-radius: 50%; background: radial-gradient(closest-side, rgba(201,168,106,0.12), transparent 70%); }
.node { position: absolute; background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: 999px; padding: 10px 18px; font-size: 0.85rem; font-weight: 600; color: var(--gold-soft); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.6); }
.node-center { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #1A1206; border: 0; font-family: "Playfair Display", serif; font-size: 1.1rem; padding: 16px 26px; z-index: 2; }
.n1 { top: 6%; left: 50%; transform: translateX(-50%); }
.n2 { top: 30%; left: 6%; }
.n3 { top: 30%; right: 6%; }
.n4 { bottom: 14%; left: 16%; }
.n5 { bottom: 14%; right: 16%; }
.n6 { bottom: 4%; left: 50%; transform: translateX(-50%); }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.quote blockquote { font-family: "Playfair Display", serif; font-size: 1.05rem; line-height: 1.5; margin-bottom: 18px; color: var(--text); }
.quote figcaption { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.9rem; }
.q-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); display: grid; place-items: center; color: #1A1206; font-weight: 700; }

/* CTA */
.cta-section { text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-inner p { color: var(--muted); margin: 16px 0 32px; font-size: 1.05rem; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 620px; margin: 0 auto; }
.cta-form input { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; color: var(--text); font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; }
.cta-form input:focus { outline: none; border-color: var(--border-strong); }
.cta-form input::placeholder { color: var(--muted-2); }
.cta-form button { grid-column: 1 / -1; }
.cta-note { margin-top: 16px; color: var(--gold-soft); font-size: 0.92rem; min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer-brand .brand-text { font-size: 1.5rem; }
.footer-brand p { color: var(--muted); margin-top: 10px; max-width: 320px; font-size: 0.95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { font-family: "Inter", sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: 14px; }
.footer-cols a { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-cols a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border); margin-top: 44px; padding-top: 22px; color: var(--muted-2); font-size: 0.82rem; flex-wrap: wrap; gap: 8px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ===== Links / inline CTAs ===== */
.center-cta { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.text-link { color: var(--gold-soft); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.text-link:hover { color: var(--gold); }

/* ===== Showcase (app screenshot slot) ===== */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.check-list li { padding-left: 28px; position: relative; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.screenshot-frame {
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: linear-gradient(160deg, #141926, #0a0c12);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.screenshot-img { width: 100%; height: auto; max-height: 560px; object-fit: contain; border-radius: 16px; display: none; }
.screenshot-img.loaded { display: block; }
.screenshot-fallback { text-align: center; color: var(--muted-2); display: grid; gap: 8px; place-items: center; }
.screenshot-fallback span { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--muted); }
.screenshot-fallback code { color: var(--gold-soft); background: rgba(201,168,106,0.10); padding: 2px 8px; border-radius: 6px; font-size: 0.82rem; }

/* ===== Blog cards (teaser) ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.blog-tag { align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-soft); background: rgba(201,168,106,0.10); border: 1px solid var(--border-strong); padding: 4px 10px; border-radius: 999px; margin-bottom: 16px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.blog-read { margin-top: 18px; color: var(--gold-soft); font-weight: 600; font-size: 0.9rem; }

/* ===== Download ===== */
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 720px; margin: 0 auto; }
.download-card { display: flex; align-items: center; gap: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s; }
.download-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.dl-icon { font-size: 2rem; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: rgba(201,168,106,0.10); border: 1px solid var(--border-strong); flex-shrink: 0; }
.dl-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.dl-meta strong { font-size: 1.15rem; font-family: "Playfair Display", serif; }
.dl-meta span { color: var(--muted-2); font-size: 0.82rem; }
.dl-btn { color: var(--gold-soft); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.download-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 28px; }
.download-note code { color: var(--gold-soft); background: rgba(201,168,106,0.10); padding: 2px 7px; border-radius: 6px; font-size: 0.85em; }

/* ===== Support / contact ===== */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 620px; margin: 30px auto 0; }
.support-card { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 26px; transition: transform 0.3s var(--ease), background 0.3s; }
.support-card:hover { transform: translateY(-4px); background: var(--surface-2); }
.support-icon { font-size: 1.8rem; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(201,168,106,0.10); border: 1px solid var(--border-strong); }
.support-card strong { font-family: "Playfair Display", serif; font-size: 1.15rem; }
.support-card span:last-child { color: var(--gold-soft); font-weight: 600; }

/* Article (blog post) */
.article-head { max-width: 760px; padding-top: 130px; padding-bottom: 14px; }
.back-link { color: var(--muted); font-size: 0.88rem; display: inline-block; margin-bottom: 18px; transition: color 0.2s; }
.back-link:hover { color: var(--gold-soft); }
.article-sub { color: var(--muted); font-size: 1.15rem; margin-top: 12px; font-family: "Playfair Display", serif; }
.article-body { max-width: 760px; padding-bottom: 80px; }
.article-body h2 { font-size: 1.7rem; margin: 40px 0 14px; }
.article-body p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.article-body .lead { color: var(--text); font-size: 1.18rem; }
.article-body ul { color: var(--muted); margin: 0 0 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { padding-left: 6px; }
.article-body a { color: var(--gold-soft); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.article-body a:hover { border-color: var(--gold-soft); }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 20px; margin: 24px 0; color: var(--text); font-family: "Playfair Display", serif; font-size: 1.2rem; }
.article-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.blog-hero { padding: 150px 0 30px; text-align: center; }
.blog-hero .kicker { margin-bottom: 14px; }
.blog-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.blog-hero .lead { margin: 16px auto 0; max-width: 640px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { order: -1; }
  .feature-grid, .steps, .pricing-grid, .quotes, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .network-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .network-visual { height: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 72px; right: 0; left: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(11,13,18,0.97); backdrop-filter: blur(14px);
    padding: 18px 24px 26px; border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.3s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .compare { grid-template-columns: 1fr; }
  .compare-arrow { padding: 14px 0; transform: rotate(90deg); }
  .feature-grid, .steps, .pricing-grid, .quotes, .blog-grid, .cta-form, .download-grid, .support-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
