:root {
  --bg: #060b14;
  --bg-soft: #0a1220;
  --card: rgba(15, 23, 42, .72);
  --card-strong: #0f172a;
  --border: rgba(148, 163, 184, .16);
  --border-bright: rgba(96, 165, 250, .34);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --purple: #8b5cf6;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, .13), transparent 34rem),
    radial-gradient(circle at 10% 28%, rgba(124, 58, 237, .08), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-dark);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; border-top: 1px solid rgba(148, 163, 184, .08); }
.section-soft { background: rgba(15, 23, 42, .25); }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #93c5fd;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(2.7rem, 7vw, 5.8rem); line-height: .99; letter-spacing: -.055em; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.06; letter-spacing: -.04em; }
h3 { margin-bottom: 10px; font-size: 1.2rem; line-height: 1.25; }
p { color: var(--muted); }
.gradient-text { background: linear-gradient(90deg, #60a5fa, #a78bfa); background-clip: text; -webkit-background-clip: text; color: transparent; }
.text-white { color: var(--text); }
.text-center { text-align: center; }
.small { font-size: .9rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, .1);
  background: rgba(6, 11, 20, .76);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 11px; font-size: 1.06rem; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.brand-mark { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; border: 1px solid rgba(96,165,250,.25); background: #0b1629; box-shadow: inset 0 0 24px rgba(59,130,246,.10); }
.brand-mark img { display:block; width:100%; height:100%; border-radius:11px; }
.desktop-nav { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.1vw, 22px); color: #cbd5e1; font-size: .88rem; font-weight: 650; }
.desktop-nav a { display: inline-flex; align-items: center; min-height: 42px; white-space: nowrap; line-height: 1; text-align: center; }
.desktop-nav a:hover { color: #fff; }
.nav-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.nav-actions .button { white-space: nowrap; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); cursor: pointer; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: #e2e8f0; }
.mobile-menu { display: none; padding: 8px 20px 24px; border-top: 1px solid var(--border); background: #07101d; }
.mobile-menu a { display: block; padding: 12px 4px; color: #dbeafe; }
.mobile-menu.open { display: block; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #4f46e5); box-shadow: 0 15px 34px rgba(37,99,235,.27); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(37,99,235,.37); }
.button-secondary { border-color: var(--border); background: rgba(15,23,42,.75); color: #e2e8f0; }
.button-secondary:hover { border-color: rgba(96,165,250,.42); background: #111c31; }
.button-small { min-height: 42px; padding: 9px 15px; font-size: .86rem; }
.button-block { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 52px 0 64px; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(148,163,184,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 44px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy > p { max-width: 690px; margin-bottom: 34px; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; padding: 7px 12px; border: 1px solid rgba(96,165,250,.23); border-radius: 999px; color: #bfdbfe; background: rgba(30,64,175,.14); font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 20px; padding: 0; margin: 0; list-style: none; color: #cbd5e1; font-size: .88rem; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: #4ade80; font-weight: 900; }
.hero-card { position: relative; width: 100%; margin: 72px 0 0; align-self: start; }
.hero-card::before { content: ""; position: absolute; inset: -16px; border-radius: 32px; background: linear-gradient(135deg, rgba(59,130,246,.32), rgba(139,92,246,.05)); filter: blur(28px); opacity: .65; }
.hero-showcase-image { display: block; width: 100%; height: auto; border: 1px solid rgba(148,163,184,.2); border-radius: 24px; box-shadow: var(--shadow); background: #07101d; }
.browser-frame { position: relative; overflow: hidden; border: 1px solid rgba(148,163,184,.2); border-radius: 24px; background: #0b1322; box-shadow: var(--shadow); }
.browser-top { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--border); background: #0b1423; }
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: #334155; }
.browser-address { flex: 1; height: 22px; margin-left: 7px; border-radius: 8px; background: rgba(148,163,184,.08); }
.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.floating-stat { position: absolute; right: -18px; bottom: 26px; z-index: 4; padding: 13px 15px; border: 1px solid rgba(34,197,94,.25); border-radius: 15px; background: rgba(6,11,20,.92); box-shadow: 0 16px 40px rgba(0,0,0,.38); }
.floating-stat strong { display: block; color: #86efac; font-size: 1.05rem; }
.floating-stat span { color: var(--muted); font-size: .75rem; }

.trust-strip { border-top: 1px solid rgba(148,163,184,.08); border-bottom: 1px solid rgba(148,163,184,.08); background: rgba(15,23,42,.28); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(148,163,184,.09); }
.trust-item { min-height: 105px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 20px; text-align: center; background: #080f1b; }
.trust-item strong { color: #e2e8f0; }
.trust-item span { color: var(--muted); font-size: .8rem; }

.demo-shell { overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: #0a1220; box-shadow: var(--shadow); }
.demo-tabs { display: flex; gap: 8px; padding: 14px; border-bottom: 1px solid var(--border); overflow-x: auto; }
.demo-tab { flex: 0 0 auto; padding: 10px 14px; border: 1px solid transparent; border-radius: 11px; color: #94a3b8; background: transparent; cursor: pointer; font-weight: 750; }
.demo-tab.active { color: #fff; border-color: rgba(96,165,250,.25); background: rgba(37,99,235,.13); }
.demo-panel { display: none; }
.demo-panel.active { display: block; }
.demo-media { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--border); background: #050a12; }
.demo-media img { display: block; width: 100%; max-width: 100%; height: auto; max-height: none; aspect-ratio: auto; object-fit: contain; object-position: center; }
.demo-expand { position: absolute; right: 16px; bottom: 16px; z-index: 2; padding: 9px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; color: #fff; background: rgba(6,11,20,.86); backdrop-filter: blur(10px); font-size: .76rem; font-weight: 800; box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.demo-expand:hover { background: #111c31; }
.demo-summary { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; align-items: start; padding: 34px 40px 38px; }
.demo-copy { padding: 0; }
.demo-copy p { margin-bottom: 0; }
.demo-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 24px; padding: 4px 0 0; margin: 0; list-style: none; }
.demo-points li { position: relative; padding-left: 25px; color: #cbd5e1; font-size: .94rem; }
.demo-points li::before { content: "✓"; position: absolute; left: 0; color: #60a5fa; font-weight: 900; }

.problem-grid, .feature-grid, .score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.feature-card { padding: 28px; }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid rgba(96,165,250,.18); border-radius: 13px; color: #93c5fd; background: rgba(37,99,235,.10); font-size: 1.2rem; }
.feature-card p { margin-bottom: 0; font-size: .91rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step-card { position: relative; min-height: 220px; padding: 30px; overflow: hidden; }
.step-card::after { counter-increment: step; content: "0" counter(step); position: absolute; right: 18px; bottom: -18px; color: rgba(96,165,250,.08); font-size: 7rem; font-weight: 900; line-height: 1; }
.step-number { display: inline-grid; width: 34px; height: 34px; place-items: center; margin-bottom: 22px; border-radius: 10px; color: #bfdbfe; background: rgba(37,99,235,.16); font-size: .82rem; font-weight: 900; }

.score-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: start; }
.score-summary { padding: 34px; }
.factor-list { display: grid; gap: 12px; margin-top: 26px; }
.factor { padding: 14px; border: 1px solid var(--border); border-radius: 14px; background: rgba(15,23,42,.55); }
.factor-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; font-size: .86rem; font-weight: 750; }
.factor-bar { height: 7px; overflow: hidden; border-radius: 999px; background: #1e293b; }
.factor-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
.platform-card { padding: 30px; }
.platform-label { display: inline-flex; margin-bottom: 16px; padding: 5px 10px; border-radius: 999px; color: #bfdbfe; background: rgba(37,99,235,.13); font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.metric-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.metric-chip { padding: 7px 10px; border: 1px solid var(--border); border-radius: 999px; color: #cbd5e1; background: rgba(15,23,42,.6); font-size: .76rem; }
.trust-note { margin-top: 20px; padding: 15px; border: 1px solid rgba(245,158,11,.22); border-radius: 13px; color: #fde68a; background: rgba(245,158,11,.07); font-size: .84rem; }

.pricing-top-note { max-width: 850px; margin: -25px auto 40px; padding: 18px 22px; border: 1px solid rgba(34,197,94,.22); border-radius: 18px; background: rgba(34,197,94,.07); text-align: center; color: #bbf7d0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px; }
.price-card.featured { border-color: rgba(96,165,250,.48); transform: translateY(-10px); background: linear-gradient(180deg, rgba(30,64,175,.20), rgba(15,23,42,.78)); box-shadow: 0 24px 80px rgba(37,99,235,.15); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 5px 12px; border-radius: 999px; color: #fff; background: linear-gradient(90deg, var(--blue), var(--purple)); font-size: .72rem; font-weight: 900; white-space: nowrap; text-transform: uppercase; letter-spacing: .08em; }
.discount-badge { display: inline-flex; align-self: flex-start; margin-bottom: 20px; padding: 5px 9px; border-radius: 999px; color: #bbf7d0; background: rgba(34,197,94,.11); font-size: .72rem; font-weight: 850; }
.price-name { font-size: 1.32rem; }
.price-row { display: flex; align-items: baseline; gap: 9px; margin: 14px 0 4px; }
.price-current { font-size: 2.55rem; font-weight: 900; letter-spacing: -.045em; }
.price-period { color: var(--muted); font-size: .86rem; }
.price-regular { min-height: 25px; color: var(--muted-2); font-size: .88rem; }
.price-regular s { color: #94a3b8; }
.price-card ul { flex: 1; padding: 0; margin: 24px 0; list-style: none; }
.price-card li { position: relative; margin: 13px 0; padding-left: 24px; color: #cbd5e1; font-size: .89rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #4ade80; font-weight: 900; }
.price-card li.not-included { color: #64748b; }
.price-card li.not-included::before { content: "—"; color: #64748b; }
.csv-highlight { margin: 18px 0 2px; padding: 16px; border: 1px solid rgba(96,165,250,.28); border-radius: 15px; background: rgba(37,99,235,.09); }
.csv-highlight strong { display: block; margin-bottom: 5px; color: #dbeafe; }
.csv-highlight span { color: #93c5fd; font-size: .8rem; }
.price-footnote { margin: 34px auto 0; max-width: 820px; color: var(--muted-2); text-align: center; font-size: .78rem; }

.founder-card { display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; }
.founder-visual { min-height: 420px; display: grid; place-items: center; padding: 40px; background: radial-gradient(circle at 50% 35%, rgba(59,130,246,.25), transparent 42%), #0b1423; }
.founder-symbol { width: 180px; height: 180px; display: grid; place-items: center; border: 1px solid rgba(96,165,250,.2); border-radius: 48px; background: rgba(15,23,42,.75); box-shadow: 0 24px 80px rgba(0,0,0,.28); font-size: 4.5rem; }
.founder-copy { padding: 54px; }

.faq-list { max-width: 900px; margin: 0 auto; }
details { border: 1px solid var(--border); border-radius: 16px; background: rgba(15,23,42,.58); }
details + details { margin-top: 12px; }
summary { position: relative; padding: 20px 56px 20px 22px; cursor: pointer; list-style: none; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: #93c5fd; font-size: 1.45rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 22px 22px; margin-bottom: 0; }

.final-cta { position: relative; overflow: hidden; border: 1px solid rgba(96,165,250,.24); border-radius: 30px; padding: 72px 30px; text-align: center; background: linear-gradient(135deg, rgba(30,64,175,.28), rgba(76,29,149,.13)); }
.final-cta::before { content: ""; position: absolute; inset: -50%; background: radial-gradient(circle, rgba(96,165,250,.16), transparent 38%); animation: floatGlow 8s ease-in-out infinite alternate; }
.final-cta > * { position: relative; }
@keyframes floatGlow { to { transform: translate(8%, 5%); } }

.site-footer { padding: 64px 0 30px; border-top: 1px solid rgba(148,163,184,.1); background: #050a12; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 38px; }
.footer-brand p { max-width: 430px; margin-top: 18px; font-size: .88rem; }
.footer-col h4 { margin-bottom: 16px; color: #e2e8f0; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; margin: 10px 0; color: var(--muted); font-size: .86rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(148,163,184,.1); color: var(--muted-2); font-size: .76rem; }

.legal-main { min-height: 70vh; padding: 80px 0 110px; }
.legal-article { max-width: 860px; margin: 0 auto; padding: 44px; }
.legal-article h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.legal-article h2 { margin-top: 38px; font-size: 1.45rem; }
.legal-article h3 { margin-top: 25px; font-size: 1.1rem; }
.legal-article li, .legal-article p { color: #b6c2d3; }
.legal-article a { color: #93c5fd; text-decoration: underline; text-underline-offset: 3px; }
.notice { padding: 16px 18px; border: 1px solid rgba(245,158,11,.25); border-radius: 14px; color: #fde68a; background: rgba(245,158,11,.07); }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 1000; max-width: 390px; padding: 15px 18px; border: 1px solid var(--border-bright); border-radius: 14px; background: #0b1423; box-shadow: var(--shadow); color: #dbeafe; transform: translateY(25px); opacity: 0; pointer-events: none; transition: .22s ease; }
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 1020px) {
  .desktop-nav, .nav-actions .button-secondary { display: none; }
  .menu-button { display: block; }
  .hero-grid, .score-layout, .founder-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-card { width: 100%; max-width: 900px; margin: 25px auto 0; align-self: auto; }
  .demo-summary { grid-template-columns: 1fr; gap: 24px; }
  .problem-grid, .feature-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: 1 / -1; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .hero { padding: 30px 0 70px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .floating-stat { right: 8px; bottom: 8px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .feature-grid, .score-grid, .steps, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: auto; }
  .demo-summary { padding: 26px 24px 30px; }
  .demo-points { grid-template-columns: 1fr; }
  .demo-copy, .founder-copy { padding: 0; }
  .founder-visual { min-height: 290px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-article { padding: 28px 22px; }
}

@media (max-width: 460px) {
  .nav-actions .button-primary { display: none; }
  .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: auto; }
  .browser-frame img { aspect-ratio: auto; }
}


/* Trial, success and subscription-management pages */
.account-main { min-height: calc(100vh - 82px); padding: 72px 0 100px; }
.account-card { width: min(100%, 760px); margin: 0 auto; padding: 38px; }
.account-card h1 { margin-bottom: 10px; }
.account-card .lead { margin-bottom: 28px; }
.form-group { margin: 18px 0; }
.form-label { display: block; margin-bottom: 7px; color: #dbeafe; font-size: .88rem; font-weight: 750; }
.form-input {
  width: 100%; min-height: 48px; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); background: rgba(15,23,42,.72); outline: none;
}
.form-input:focus { border-color: var(--border-bright); box-shadow: 0 0 0 4px rgba(59,130,246,.12); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.inline-status { min-height: 24px; margin-top: 16px; color: #bfdbfe; font-size: .9rem; }
.inline-status.error { color: #fecaca; }
.inline-status.success { color: #bbf7d0; }
.license-box { margin: 24px 0; padding: 22px; border: 1px solid rgba(34,197,94,.28); border-radius: 18px; background: rgba(34,197,94,.07); }
.license-key { display: block; margin: 12px 0; padding: 14px; overflow-wrap: anywhere; border-radius: 12px; color: #fff; background: #07101d; font: 800 1.05rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .04em; }
.muted-list { margin: 20px 0 0; color: var(--muted); font-size: .9rem; }
.muted-list li { margin: 8px 0; }
.hidden { display: none !important; }
@media (max-width: 720px) {
  .account-main { padding: 42px 0 70px; }
  .account-card { padding: 26px 20px; }
}


/* Browser support */
.browser-support-section { padding-top: 82px; padding-bottom: 82px; }
.browser-support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 920px; margin: 0 auto; }
.browser-support-card { display: grid; justify-items: center; gap: 8px; padding: 28px 20px; text-align: center; transition: transform .18s ease, border-color .18s ease; }
.browser-support-card:hover { transform: translateY(-3px); border-color: rgba(96,165,250,.42); }
.browser-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(96,165,250,.25); border-radius: 15px; color: #dbeafe; background: rgba(37,99,235,.12); font-weight: 900; }
.browser-support-card strong { color: #f8fafc; }
.browser-support-card span:last-child { color: #93c5fd; font-size: .82rem; }
.browser-support-card.store-link-pending span:last-child { color: var(--muted); }

.form-help { margin: 7px 0 0; color: var(--muted-2); font-size: .8rem; }
.form-consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 20px 0; color: #cbd5e1; font-size: .86rem; line-height: 1.5; cursor: pointer; }
.form-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); }

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

/* Phase 6: concrete hero, tutorials, plan locks and support channels */
.desktop-nav { gap: clamp(12px, 1.1vw, 20px); }
.hero-grid { grid-template-columns: .82fr 1.18fr; align-items: center; }
.hero-card { margin: 10px 0 0; }
.hero-card::before { inset: -12px; opacity: .78; }
.hero-showcase-image { border-radius: 22px; }
.hero-proof-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 14px 10px 0;
  padding: 12px 14px;
  border: 1px solid rgba(96,165,250,.23);
  border-radius: 14px;
  color: #cbd5e1;
  background: rgba(7,16,29,.94);
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
  font-size: .78rem;
  text-align: center;
}
.hero-proof-row b { display: block; color: #f8fafc; font-size: 1.1rem; }
.hero-proof-row i { color: #60a5fa; font-style: normal; font-weight: 900; }
.hero-image-caption { margin: 10px 12px 0; color: #7f8ca2; font-size: .76rem; text-align: center; }

.tutorial-preview-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; align-items: stretch; }
.tutorial-featured-video { overflow: hidden; }
.tutorial-featured-video video,
.tutorial-hero-video video,
.tutorial-video-panel video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #030712;
  object-fit: cover;
}
.tutorial-video-copy { padding: 24px 26px 26px; }
.tutorial-video-copy h2 { margin-top: 6px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.tutorial-video-copy h3 { margin-top: 4px; }
.tutorial-video-copy p { margin-bottom: 0; }
.tutorial-link-grid { display: grid; gap: 12px; }
.tutorial-link-card { display: grid; grid-template-columns: 38px 1fr; column-gap: 12px; align-items: center; padding: 18px; transition: transform .18s ease, border-color .18s ease; }
.tutorial-link-card:hover { transform: translateY(-2px); border-color: rgba(96,165,250,.42); }
.tutorial-link-card > span { grid-row: 1 / 3; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #bfdbfe; background: rgba(37,99,235,.15); font-size: .78rem; font-weight: 900; }
.tutorial-link-card strong { color: #f8fafc; }
.tutorial-link-card small { color: var(--muted); }
.tutorial-all-link { margin-top: 26px; }

.plan-unlock-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin: 22px 0 30px; }
.plan-unlock-grid > div { padding: 17px; border: 1px solid var(--border); border-radius: 15px; background: rgba(15,23,42,.55); }
.plan-unlock-grid strong, .plan-unlock-grid span, .plan-unlock-grid em { display: block; }
.plan-unlock-grid strong { color: #e2e8f0; }
.plan-unlock-grid span { margin-top: 5px; color: #aebbd0; font-size: .8rem; }
.plan-unlock-grid em { margin-top: 9px; color: #94a3b8; font-size: .72rem; font-style: normal; }
.plan-unlock-grid .unlocked { border-color: rgba(34,197,94,.27); background: rgba(34,197,94,.06); }
.plan-unlock-grid .unlocked em { color: #86efac; }

.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.support-card { display: grid; justify-items: center; gap: 7px; padding: 28px 20px; text-align: center; transition: transform .18s ease, border-color .18s ease; }
.support-card:hover { transform: translateY(-3px); border-color: rgba(96,165,250,.42); }
.support-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 4px; border: 1px solid rgba(96,165,250,.23); border-radius: 15px; color: #dbeafe; background: rgba(37,99,235,.12); font-weight: 900; }
.support-card strong { color: #f8fafc; }
.support-card small { color: #93c5fd; }

/* Tutorial library page */
.tutorial-hero { padding: 76px 0 82px; }
.tutorial-hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: center; }
.tutorial-hero h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); }
.tutorial-hero p { max-width: 680px; font-size: 1.08rem; }
.tutorial-hero-video { overflow: hidden; }
.tutorial-jump-nav { position: sticky; top: 72px; z-index: 70; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(7,16,29,.92); backdrop-filter: blur(14px); }
.tutorial-jump-nav .container { display: flex; gap: 10px; padding-block: 12px; overflow-x: auto; }
.tutorial-jump-nav a { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; color: #cbd5e1; font-size: .8rem; font-weight: 750; }
.tutorial-jump-nav a:hover { color: #fff; border-color: var(--border-bright); background: rgba(37,99,235,.12); }
.tutorial-chapter { scroll-margin-top: 132px; }
.tutorial-chapter-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.tutorial-chapter-grid.reverse .tutorial-video-panel { order: 2; }
.tutorial-video-panel { overflow: hidden; box-shadow: var(--shadow); }
.tutorial-chapter-copy > p { font-size: 1rem; }
.tutorial-steps { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; counter-reset: tutorial-step; }
.tutorial-steps li { position: relative; padding: 14px 16px 14px 54px; border: 1px solid var(--border); border-radius: 14px; background: rgba(15,23,42,.5); counter-increment: tutorial-step; }
.tutorial-steps li::before { content: counter(tutorial-step); position: absolute; left: 14px; top: 14px; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: #dbeafe; background: rgba(37,99,235,.18); font-size: .72rem; font-weight: 900; }
.tutorial-steps strong, .tutorial-steps span { display: block; }
.tutorial-steps strong { color: #e2e8f0; }
.tutorial-steps span { margin-top: 3px; color: var(--muted); font-size: .84rem; }
.profile-explainer-grid { display: grid; gap: 12px; margin-top: 24px; }
.profile-explainer-grid > div { position: relative; padding: 16px 18px; border: 1px solid var(--border); border-radius: 14px; background: rgba(15,23,42,.5); }
.profile-explainer-grid strong, .profile-explainer-grid span { display: block; }
.profile-explainer-grid strong { color: #e2e8f0; }
.profile-explainer-grid span { margin-top: 4px; color: var(--muted); font-size: .86rem; }
.profile-explainer-grid .pro-feature { border-color: rgba(96,165,250,.24); }
.profile-explainer-grid .pro-feature::after { content: "PRO"; position: absolute; right: 14px; top: 14px; padding: 4px 7px; border-radius: 999px; color: #bfdbfe; background: rgba(37,99,235,.16); font-size: .65rem; font-weight: 900; letter-spacing: .07em; }

@media (max-width: 1020px) {
  .tutorial-preview-layout, .tutorial-hero-grid, .tutorial-chapter-grid { grid-template-columns: 1fr; }
  .tutorial-chapter-grid.reverse .tutorial-video-panel { order: 0; }
  .plan-unlock-grid { grid-template-columns: repeat(2,1fr); }
  .hero-card { margin-top: 24px; }
}

@media (max-width: 720px) {
  .hero-proof-row { grid-template-columns: 1fr; gap: 5px; }
  .hero-proof-row i { transform: rotate(90deg); }
  .tutorial-link-grid, .support-grid, .plan-unlock-grid { grid-template-columns: 1fr; }
  .tutorial-hero { padding: 48px 0 64px; }
  .tutorial-jump-nav { top: 72px; }
  .tutorial-video-copy { padding: 20px; }
}

/* SEO and tutorial library — v7 */
.tutorial-library-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.tutorial-library-card{overflow:hidden}.tutorial-library-card video{display:block;width:100%;aspect-ratio:16/9;background:#030712}.tutorial-library-card>div{padding:20px}.tutorial-library-card span{color:#60a5fa;font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.tutorial-library-card h3{margin:.45rem 0}.tutorial-library-card p{color:var(--muted);margin:0 0 12px}.tutorial-library-card a{font-weight:700}.seo-topic-section{border-top:1px solid rgba(148,163,184,.12)}.seo-topic-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.seo-topic-card{display:flex;flex-direction:column;gap:10px;padding:24px;text-decoration:none}.seo-topic-card strong{font-size:1.08rem;color:var(--text)}.seo-topic-card span{color:var(--muted);line-height:1.65}.seo-landing-hero{padding:150px 0 78px;background:radial-gradient(circle at 78% 12%,rgba(37,99,235,.16),transparent 38%)}.seo-landing-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(380px,.92fr);gap:58px;align-items:center}.seo-landing-grid h1{font-size:clamp(2.4rem,5vw,4.5rem);line-height:1.02;margin:.6rem 0 1.2rem}.seo-landing-grid p{font-size:1.12rem;color:var(--muted);line-height:1.75}.seo-landing-visual{padding:14px}.seo-landing-visual img,.seo-guide-image{width:100%;height:auto;border-radius:16px}.seo-guide-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:48px;align-items:start}.seo-guide-main{display:grid;gap:46px}.seo-guide-section h2{font-size:clamp(1.65rem,3vw,2.35rem);margin-bottom:14px}.seo-guide-section p{color:var(--muted);line-height:1.8;font-size:1.04rem}.seo-guide-image{margin-top:20px;border:1px solid rgba(148,163,184,.18)}.seo-guide-aside{position:sticky;top:110px;padding:26px}.seo-guide-aside ul{padding-left:20px;color:var(--muted);line-height:1.8;margin:18px 0 24px}.tutorial-transcript{margin-top:18px;border:1px solid rgba(148,163,184,.2);border-radius:14px;padding:14px 16px}.tutorial-transcript summary{cursor:pointer;font-weight:700}.tutorial-transcript p{margin:12px 0 0;color:var(--muted);line-height:1.75}@media(max-width:980px){.tutorial-library-grid,.seo-topic-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.seo-landing-grid,.seo-guide-layout{grid-template-columns:1fr}.seo-guide-aside{position:static}}@media(max-width:640px){.tutorial-library-grid,.seo-topic-grid{grid-template-columns:1fr}.seo-landing-hero{padding-top:118px}}

/* BuyerPilot v10 — final responsive/mobile overrides.
   Kept at the end intentionally so these rules win over earlier phase styles. */
@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    align-items: start;
    gap: 34px;
  }
  .hero-copy {
    width: min(100%, 760px);
    margin-inline: auto;
    text-align: center;
  }
  .hero-copy > p { margin-inline: auto; }
  .hero-badge { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-card { margin-top: 0; }
  .score-layout, .founder-card, .demo-summary { grid-template-columns: 1fr; }
  .founder-copy { padding: 42px; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
}

@media (max-width: 720px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading.left { text-align: left; }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 10.8vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -.045em;
  }
  h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 8.4vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -.035em;
  }
  h3 { font-size: 1.08rem; }
  p { line-height: 1.65; }

  .nav-wrap { min-height: 64px; gap: 12px; }
  .brand { gap: 9px; font-size: 1rem; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .nav-actions { gap: 8px; }
  .nav-actions .button { display: none; }
  .menu-button { display: block; width: 40px; height: 40px; border-radius: 11px; }
  .mobile-menu {
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 8px 16px 20px;
  }
  .mobile-menu a { padding: 11px 4px; }

  .hero { padding: 30px 0 52px; }
  .hero-grid { gap: 28px; }
  .hero-copy { text-align: center; }
  .hero-copy > p {
    margin-bottom: 24px;
    font-size: 1rem;
  }
  .hero-badge {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 7px 10px;
    justify-content: center;
    white-space: normal;
    font-size: .68rem;
    line-height: 1.35;
    letter-spacing: .055em;
    text-align: center;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-actions .button { width: 100%; }
  .hero-points {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-inline: auto;
    text-align: left;
  }
  .hero-card { margin: 0; }
  .hero-card::before { inset: -6px; filter: blur(18px); }
  .hero-showcase-image { border-radius: 16px; }
  .hero-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 10px 0 0;
    padding: 10px 8px;
    border-radius: 12px;
    font-size: .67rem;
    line-height: 1.35;
  }
  .hero-proof-row i { display: none; }
  .hero-proof-row b { font-size: 1rem; }
  .hero-image-caption { margin: 9px 4px 0; font-size: .7rem; line-height: 1.45; }

  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { min-height: 92px; padding: 14px 10px; }
  .trust-item strong { font-size: .86rem; line-height: 1.25; }
  .trust-item span { font-size: .7rem; line-height: 1.35; }

  .browser-support-section { padding-top: 62px; padding-bottom: 62px; }
  .browser-support-grid { grid-template-columns: 1fr; gap: 12px; }
  .browser-support-card { padding: 22px 18px; }

  .demo-shell { border-radius: 18px; }
  .demo-tabs { gap: 6px; padding: 9px; }
  .demo-tab { padding: 9px 11px; font-size: .78rem; }
  .demo-expand { right: 10px; bottom: 10px; padding: 7px 9px; font-size: .68rem; }
  .demo-summary { gap: 18px; padding: 22px 18px 24px; }
  .demo-points { grid-template-columns: 1fr; gap: 10px; }
  .demo-points li { font-size: .88rem; }

  .problem-grid, .feature-grid, .score-grid, .steps, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card, .step-card, .score-summary, .platform-card, .price-card { padding: 22px; }
  .step-card { min-height: 0; }
  .step-card::after { font-size: 5.4rem; }
  .score-layout { gap: 18px; }
  .factor-top { gap: 10px; }

  .pricing-top-note {
    margin: -8px auto 28px;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: .9rem;
  }
  .price-card.featured { transform: none; }
  .price-current { font-size: 2.25rem; }
  .price-card ul { margin: 18px 0; }

  .founder-card { grid-template-columns: 1fr; }
  .founder-visual { min-height: 220px; padding: 24px; }
  .founder-symbol { width: 118px; height: 118px; border-radius: 32px; font-size: 3rem; }
  .founder-copy { padding: 28px 22px; }

  summary { padding: 17px 48px 17px 18px; font-size: .94rem; }
  summary::after { right: 18px; }
  details p { padding: 0 18px 18px; }

  .support-grid { grid-template-columns: 1fr; gap: 12px; }
  .support-card { padding: 22px 18px; }
  .support-card small { overflow-wrap: anywhere; }

  .final-cta { padding: 46px 20px; border-radius: 22px; }

  .site-footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col a { margin: 8px 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 34px;
    text-align: left;
  }

  .tutorial-preview-layout,
  .tutorial-hero-grid,
  .tutorial-chapter-grid,
  .seo-landing-grid,
  .seo-guide-layout { grid-template-columns: 1fr; gap: 24px; }
  .tutorial-link-grid, .plan-unlock-grid, .tutorial-library-grid, .seo-topic-grid { grid-template-columns: 1fr; }
  .tutorial-featured-video, .tutorial-hero-video, .tutorial-video-panel { border-radius: 16px; }
  .tutorial-video-copy { padding: 18px; }
  .tutorial-hero { padding: 42px 0 54px; }
  .tutorial-hero h1 { font-size: clamp(2.2rem, 10.8vw, 3.1rem); }
  .tutorial-hero p { font-size: 1rem; }
  .tutorial-jump-nav { top: 64px; }
  .tutorial-jump-nav .container { padding-block: 9px; }
  .tutorial-jump-nav a { padding: 7px 10px; font-size: .73rem; }
  .tutorial-chapter { scroll-margin-top: 112px; }
  .tutorial-steps li { padding: 13px 14px 13px 49px; }
  .tutorial-steps li::before { left: 12px; top: 13px; }

  .seo-landing-hero { padding: 58px 0 54px; }
  .seo-landing-grid h1 { font-size: clamp(2.2rem, 10.8vw, 3.1rem); }
  .seo-landing-grid p { font-size: 1rem; line-height: 1.65; }
  .seo-landing-visual { padding: 8px; }
  .seo-guide-main { gap: 34px; }
  .seo-guide-aside { position: static; padding: 20px; }
  .seo-guide-section p { font-size: .98rem; line-height: 1.7; }

  .legal-main { padding: 42px 0 64px; }
  .legal-article { padding: 24px 18px; border-radius: 18px; }
  .legal-article h1 { font-size: clamp(2rem, 10vw, 2.7rem); }

  .account-main { padding: 36px 0 58px; }
  .account-card { padding: 24px 18px; }
  .form-actions { flex-direction: column; }
  .form-actions .button { width: 100%; }

  .toast { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.78rem; }
  .hero-proof-row { padding-inline: 6px; }
  .hero-proof-row span { min-width: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .price-card, .feature-card, .platform-card, .score-summary { padding: 20px 18px; }
}


/* BuyerPilot v11 — compact header + above-the-fold hero */
@media (min-width: 1021px) {
  .site-header { background: rgba(4, 10, 20, .94); }
  .nav-wrap { min-height: 76px; gap: 24px; }
  .brand-primary { gap: 12px; font-size: 1.36rem; font-weight: 900; letter-spacing: -.035em; color: #fff; }
  .brand-primary .brand-mark { width: 44px; height: 44px; border-radius: 13px; border-color: rgba(96,165,250,.38); box-shadow: 0 0 0 1px rgba(96,165,250,.08), 0 8px 30px rgba(37,99,235,.16), inset 0 0 22px rgba(59,130,246,.1); }
  .brand-name { background: linear-gradient(105deg,#fff 15%,#dbeafe 62%,#a5b4fc); -webkit-background-clip:text; background-clip:text; color:transparent; }

  .compact-nav { justify-content: flex-end; gap: 8px; font-size: .84rem; }
  .compact-nav > a, .nav-dropdown-trigger { min-height: 40px; padding: 0 11px; border-radius: 10px; color: #cbd5e1; }
  .compact-nav > a:hover, .nav-dropdown-trigger:hover, .nav-dropdown:focus-within .nav-dropdown-trigger { color:#fff; background:rgba(148,163,184,.08); }
  .nav-dropdown { position: relative; }
  .nav-dropdown-trigger { display:flex; align-items:center; gap:6px; border:0; background:transparent; cursor:pointer; font-size:inherit; font-weight:700; white-space:nowrap; }
  .nav-dropdown-trigger span { color:#60a5fa; font-size:.72rem; transition:transform .16s ease; }
  .nav-dropdown:hover .nav-dropdown-trigger span, .nav-dropdown:focus-within .nav-dropdown-trigger span { transform:rotate(180deg); }
  .nav-dropdown-menu { position:absolute; top:calc(100% + 8px); left:50%; z-index:50; width:310px; padding:8px; border:1px solid rgba(148,163,184,.18); border-radius:16px; background:rgba(7,15,28,.98); box-shadow:0 22px 60px rgba(0,0,0,.42); opacity:0; visibility:hidden; transform:translate(-50%,-6px); transition:opacity .15s ease, transform .15s ease, visibility .15s ease; }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity:1; visibility:visible; transform:translate(-50%,0); }
  .nav-dropdown-menu a { display:grid; gap:2px; min-height:auto; padding:11px 12px; border-radius:11px; text-align:left; }
  .nav-dropdown-menu a:hover { background:rgba(59,130,246,.1); }
  .nav-dropdown-menu strong { color:#f8fafc; font-size:.88rem; }
  .nav-dropdown-menu span { color:#8492a8; font-size:.73rem; font-weight:500; line-height:1.35; }
  .nav-actions { flex:0 0 auto; }
  .nav-actions .button-primary { padding-inline:18px; }

  .hero { padding: 30px 0 38px; }
  .hero-grid { grid-template-columns: .88fr 1.12fr; gap: 40px; align-items: center; }
  .hero-copy h1 { max-width: 650px; margin-bottom: 18px; font-size: clamp(3rem, 4.25vw, 4.35rem); line-height: .98; }
  .hero-copy > p { max-width: 650px; margin-bottom: 22px; font-size: clamp(.94rem, 1.15vw, 1.05rem); line-height:1.65; }
  .hero-badge { margin-bottom: 17px; padding:6px 11px; font-size:.7rem; }
  .hero-actions { gap:11px; margin-bottom:19px; }
  .hero-actions .button { min-height:44px; padding:10px 17px; font-size:.88rem; }
  .hero-points { gap:8px 16px; font-size:.77rem; }
  .hero-card { margin:0; max-width:760px; justify-self:end; }
  .hero-card::before { inset:-9px; filter:blur(22px); }
  .hero-showcase-image { border-radius:18px; }
  .hero-proof-row { margin-top:10px; padding:11px 14px; }
  .hero-proof-row b { font-size:1rem; }
  .hero-image-caption { margin-top:8px; font-size:.7rem; }
}

@media (max-width: 1020px) {
  .brand-primary .brand-name { font-size:1.08rem; font-weight:900; }
}


/* Keep the BuyerPilot identity visually stronger than navigation on all headers. */
.site-header .brand { color:#fff; font-weight:900; letter-spacing:-.035em; }
@media (min-width: 1021px) {
  .site-header .brand { font-size:1.34rem; }
  .site-header .brand-mark { width:44px; height:44px; border-radius:13px; }
}
