/* ============================================================
   MyQuestionBox — Design tokens
   Brand blue (Goalstox) used sparingly: primary actions, mark,
   accents. Surfaces stay light & neutral. Inter for all text.
   ============================================================ */
:root {
  /* Brand blue scale */
  --blue-50:  #eef1f9;
  --blue-100: #dce3f3;
  --blue-200: #b8c5e7;
  --blue-500: #304aa6;  /* brand core */
  --blue-600: #2a4193;
  --blue-700: #233677;

  /* Neutral scale (cool-tinted) */
  --neutral-0:   #ffffff;
  --neutral-50:  #f6f8fa;
  --neutral-100: #eef1f4;
  --neutral-200: #e2e6ec;
  --neutral-300: #cdd3dc;
  --neutral-400: #9aa3b2;
  --neutral-500: #6b7480;
  --neutral-700: #353b44;
  --neutral-900: #12151a;
  --ink-black:   #0c0c0e; /* deep panel background */

  /* Semantic status */
  --positive-700: #156040;
  --warning-bg:   #fbf2e3;
  --warning-700:  #8f6010;

  /* Semantic aliases */
  --brand: var(--blue-500);
  --brand-hover: var(--blue-600);
  --surface-page: var(--neutral-0);
  --surface-sunken: #f7f8fb;
  --text-strong: var(--neutral-900);
  --text-body: var(--neutral-700);
  --text-muted: var(--neutral-500);
  --border-subtle: var(--neutral-200);
  --border-default: var(--neutral-300);
  --divider: var(--neutral-200);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing / radius / shadow */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-lg: 0 12px 28px rgba(21, 31, 68, 0.10), 0 4px 10px rgba(21, 31, 68, 0.05);
  --shell: min(1180px, calc(100% - 64px));
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 400 15px/1.65 var(--font-sans);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
h1, h2, h3, h4, p { margin: 0; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--text-strong); color: #fff; border-radius: var(--radius-sm); }
.skip-link:focus { top: 16px; }
::selection { background: var(--blue-100); color: var(--blue-700); }

.eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}
.accent { font-style: italic; }
.hidden { display: none !important; }

/* ============================================================
   Buttons
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover { background: var(--brand-hover); color: #fff; }
.button-secondary { background: transparent; color: var(--text-strong); border-color: var(--border-default); }
.button-secondary:hover { background: var(--neutral-50); }
.button-small { min-height: 40px; padding-inline: 18px; font-size: 14px; }

/* ============================================================
   Header
   ============================================================ */
.site-header { border-bottom: 1px solid var(--border-subtle); background: rgba(255,255,255,.97); position: sticky; top: 0; z-index: 30; }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; color: var(--text-strong); letter-spacing: -.01em; }
.brand-mark { width: 22px; height: 22px; }
.brand .beta { font-size: 11.5px; font-weight: 600; color: var(--brand); border: 1px solid var(--brand); border-radius: var(--radius-pill); padding: 2px 8px; margin-left: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a, .text-link { font-size: 14px; font-weight: 500; color: var(--text-body); }
.desktop-nav a.active, .desktop-nav a:hover { color: var(--text-strong); }
.desktop-actions { display: flex; align-items: center; gap: 20px; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; right: 0; top: 48px; width: min(260px, calc(100vw - 40px)); padding: 16px; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-lg); display: grid; gap: 4px; }
.mobile-menu nav a { padding: 10px 8px; font-size: 14px; font-weight: 500; color: var(--text-body); border-radius: var(--radius-sm); }
.mobile-menu nav a:hover { background: var(--neutral-50); color: var(--text-strong); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 64px 0 76px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-kicker { font-size: 13px; letter-spacing: .04em; font-weight: 600; color: var(--text-muted); margin-bottom: 20px; }
.hero-kicker strong { color: var(--brand); font-weight: 800; }
.hero h1 { font-size: clamp(38px, 5.4vw, 56px); line-height: 1.14; font-weight: 600; color: var(--text-strong); letter-spacing: -.02em; margin: 0 0 22px; }
.hero-intro { font-size: 16.5px; line-height: 1.7; color: var(--text-body); max-width: 460px; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.micro-note { font-size: 13px; color: var(--text-muted); }

/* Doc stack (report mockup illustration) */
.doc-stack { position: relative; height: 440px; }
.doc { position: absolute; background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); box-sizing: border-box; }
.doc-back { width: 82%; right: 0; top: 26px; padding: 26px 22px; opacity: .55; transform: rotate(3deg); }
.doc-front { width: 86%; left: 0; top: 0; padding: 24px 22px; }
.doc-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.doc-head strong { font-size: 15px; color: var(--text-strong); }
.doc-head small { font-size: 10.5px; color: var(--text-muted); }
.doc-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.doc-rule { height: 1px; background: var(--border-subtle); margin-bottom: 16px; }
.doc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.doc-kicker { font-size: 10.5px; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; margin-bottom: 10px; }
.donut { width: 64px; height: 64px; border-radius: 50%; flex: none; position: relative; background: conic-gradient(var(--brand) 0 48%, var(--text-strong) 48% 76%, var(--border-default) 76% 100%); }
.donut::after { content: ''; position: absolute; inset: 13px; border-radius: 50%; background: #fff; }
.doc-legend { font-size: 10.5px; color: var(--text-body); display: flex; flex-direction: column; gap: 3px; }
.doc-check { font-size: 10.5px; color: var(--text-body); display: flex; flex-direction: column; gap: 6px; }
.doc-check .warn { color: var(--warning-700); }
.goal-row { display: flex; align-items: center; gap: 8px; }
.goal-row span:first-child { font-size: 10.5px; width: 74px; color: var(--text-body); }
.goal-row span:last-child { font-size: 10.5px; color: var(--text-muted); }
.bar-track { flex: 1; height: 6px; border-radius: 3px; background: var(--border-subtle); overflow: hidden; }
.bar-fill { height: 100%; background: var(--text-strong); border-radius: 3px; }
.goal-list { display: flex; flex-direction: column; gap: 9px; }
.doc-front-tall { display: flex; flex-direction: column; justify-content: space-between; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 76px 0; }
.section-bordered { border-top: 1px solid var(--border-subtle); }
.section-boxed { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.section-sunken { background: var(--surface-sunken); }
.section-heading { max-width: 640px; margin-bottom: 40px; }
.section-heading h2 { font-size: 30px; font-weight: 700; color: var(--text-strong); letter-spacing: -.01em; margin: 0 0 12px; }
.section-heading p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.section-split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 36px; }
.section-split h2 { font-size: 34px; font-weight: 800; color: var(--text-strong); letter-spacing: -.015em; max-width: 420px; margin: 0; }
.section-split .aside { font-size: 13px; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.section-narrow { max-width: 760px; }
.section-narrow h2 { font-size: 28px; font-weight: 700; color: var(--text-strong); letter-spacing: -.01em; margin: 0 0 20px; }
.section-narrow p { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.section-narrow p + p { margin-top: 16px; }

/* Three-icon feature rows */
.icon-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.icon-row svg { color: var(--brand); }
.icon-row h3 { font-size: 15px; font-weight: 600; color: var(--text-strong); margin: 14px 0 6px; }
.icon-row p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Numbered tools list */
.list-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border-subtle); }
.list-row:first-child { border-top: 1px solid var(--border-subtle); }
.list-row:hover { background: var(--neutral-50); }
.list-num { font-size: 13px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.list-title { font-size: 16px; font-weight: 600; color: var(--text-strong); display: block; }
.list-body { font-size: 13px; color: var(--text-muted); }
.list-arrow { color: var(--text-muted); font-size: 16px; }

/* Positioning banner (dark) */
.positioning { padding: 88px 0; background: var(--ink-black); }
.positioning-inner { max-width: 820px; display: flex; gap: 22px; align-items: flex-start; }
.positioning-inner svg { flex: none; margin-top: 10px; }
.positioning-inner .statement { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.22; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.positioning-inner .statement em { font-style: italic; font-weight: 800; color: rgba(255,255,255,.7); }
.positioning-rule { height: 1px; background: rgba(255,255,255,.16); margin: 40px 0 22px; max-width: 820px; margin-inline: auto; }
.positioning-note { max-width: 820px; margin-inline: auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.positioning-note span { font-size: 11.5px; letter-spacing: .1em; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; }

/* Pricing */
.pricing-split { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 40px; }
.pricing-split .divider { background: var(--border-subtle); }
.pricing-split h3 { font-size: 15px; font-weight: 600; color: var(--text-strong); margin: 0 0 12px; }
.pricing-included { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--text-body); }
.pricing-note { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.pricing-note strong { color: var(--text-strong); }

/* Quote / reasons rows */
.quote-row { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border-subtle); }
.quote-row:first-child { border-top: 1px solid var(--border-subtle); }
.quote-mark { font-size: 34px; font-weight: 700; color: var(--border-default); line-height: 1; }
.quote-text { font-size: 15.5px; color: var(--text-body); line-height: 1.75; padding-top: 6px; }

/* Proposal / "beautifully framed" split */
.proposal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.proposal-grid h2 { font-size: 32px; font-weight: 800; color: var(--text-strong); letter-spacing: -.015em; margin: 0 0 16px; }
.proposal-grid p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; max-width: 380px; margin: 0 0 20px; }
.arrow-link { font-size: 13.5px; font-weight: 600; color: var(--text-strong); border-bottom: 1px solid var(--text-strong); padding-bottom: 2px; }

/* Newsletter / lead form */
.newsletter-box { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 32px; }
.newsletter-box h3 { font-size: 15px; font-weight: 600; color: var(--text-strong); margin: 0 0 6px; }
.newsletter-box p { font-size: 13px; color: var(--text-muted); margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 11px 14px; font-size: 13.5px; width: 100%; max-width: 220px; }

.lead-form-box { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 36px; max-width: 680px; }
.lead-form-box h2 { font-size: 22px; font-weight: 700; color: var(--text-strong); margin: 0 0 6px; }
.lead-form-box .sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.form-field { display: grid; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--text-body); }
.form-field input, .form-field textarea {
  width: 100%; box-sizing: border-box; border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 10px 12px; font-size: 13.5px; color: var(--text-strong);
}
.form-field textarea { resize: vertical; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--surface-sunken); border-top: 1px solid var(--border-subtle); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 40px; margin-bottom: 36px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 320px; margin-top: 14px; }
.footer-col h3 { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin: 0 0 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-body); }
.footer-col a:hover { color: var(--text-strong); }
.legal-notice { background: var(--warning-bg); border-radius: var(--radius-md); padding: 16px 20px; font-size: 12.5px; color: var(--warning-700); line-height: 1.7; margin-bottom: 24px; }
.footer-rule { height: 1px; background: var(--divider); margin-bottom: 24px; }
.footer-disclosure { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-disclosure a { font-size: 12px; }
.legal-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--text-muted); }

/* ============================================================
   Billing / pricing page
   ============================================================ */
.billing-hero { text-align: center; padding: 64px 0 40px; }
.billing-hero h1 { font-size: clamp(38px, 5.6vw, 58px); font-weight: 800; letter-spacing: -.02em; color: var(--text-strong); margin: 0 0 20px; }
.billing-hero > p:not(.eyebrow) { max-width: 600px; margin: 0 auto 32px; color: var(--text-muted); font-size: 16px; }
.billing-boundary { display: flex; justify-content: center; flex-wrap: wrap; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.billing-boundary span { padding: 10px 18px; border: 1px solid var(--border-default); }
.billing-boundary span + span { border-left: 0; }

.plan-section { padding-top: 40px; }
.cycle-switch { width: max-content; margin: 0 auto 44px; padding: 4px; display: flex; border: 1px solid var(--border-default); border-radius: var(--radius-md); }
.cycle-button { min-height: 40px; padding: 0 18px; border: 0; background: transparent; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--text-body); }
.cycle-button.is-active { background: var(--brand); color: #fff; }
.cycle-button span { margin-left: 6px; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }

.billing-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
.plan-card { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 32px; display: flex; flex-direction: column; background: #fff; }
.plan-card-dark { background: var(--text-strong); color: #fff; border-color: var(--text-strong); }
.plan-card-enterprise { background: var(--surface-sunken); }
.plan-top { min-height: 110px; }
.plan-top > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.plan-name { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.plan-badge { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; border: 1px solid currentColor; border-radius: var(--radius-pill); padding: 4px 10px; }
.plan-top p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.plan-card-dark .plan-top p { color: rgba(255,255,255,.7); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0; }
.plan-price strong { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.plan-price span { font-size: 12px; color: var(--text-muted); }
.plan-card-dark .plan-price span { color: rgba(255,255,255,.7); }
.plan-list { list-style: none; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.plan-card-dark .plan-list { border-color: rgba(255,255,255,.2); }
.plan-list li { position: relative; padding-left: 22px; }
.plan-list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); }
.plan-card-dark .plan-list li::before { color: #fff; }
.pricing-footnote { max-width: 820px; margin: 28px auto 0; font-size: 12px; color: var(--text-muted); text-align: center; }
.htmx-added { opacity: 0; transform: translateY(10px); }
.plan-card { transition: opacity .3s ease, transform .3s ease; }

.button-white { background: #fff; color: var(--text-strong); border-color: #fff; }
.button-white:hover { background: #eee; color: var(--text-strong); }
.button-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.button-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.button-full { width: 100%; }

/* Split heading (used by comparison + FAQ sections) */
.split-heading { display: grid; grid-template-columns: .6fr 1fr .7fr; gap: 40px; align-items: start; margin-bottom: 60px; }
.split-heading h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -.015em; color: var(--text-strong); }
.split-heading > p:last-child { color: var(--text-muted); font-size: 14.5px; max-width: 320px; margin: 14px 0 0; }

.comparison-section { padding: 76px 0; }
.table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.comparison-table th, .comparison-table td { padding: 16px 18px; border-bottom: 1px solid var(--border-subtle); text-align: left; font-size: 13.5px; }
.comparison-table thead th { text-transform: uppercase; letter-spacing: .08em; font-size: 11px; color: var(--text-muted); border-bottom-color: var(--border-default); }
.comparison-table tbody th { font-weight: 600; color: var(--text-strong); }
.comparison-table td { color: var(--text-body); }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.faq-section .split-heading { display: block; margin: 0; }
.faq-section .split-heading h2 { margin-bottom: 20px; }
.faq-list { border-top: 1px solid var(--border-default); }
.faq-list details { border-bottom: 1px solid var(--border-subtle); }
.faq-list summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 15.5px; font-weight: 600; color: var(--text-strong); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 20px; font-weight: 400; color: var(--text-muted); transition: transform .15s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 0 22px; color: var(--text-muted); font-size: 13.5px; line-height: 1.7; max-width: 640px; }

.billing-cta { padding: 88px 0; text-align: center; background: var(--ink-black); color: #fff; }
.billing-cta .eyebrow { color: rgba(255,255,255,.6); }
.billing-cta h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -.02em; color: #fff; margin: 0 0 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 980px) {
  .split-heading { grid-template-columns: .45fr 1fr; }
  .split-heading > p:last-child { grid-column: 2; }
  .faq-section { gap: 40px; }
}
@media (max-width: 780px) {
  .billing-plans { grid-template-columns: 1fr; max-width: 480px; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-section .split-heading { margin-bottom: 30px; }
  .split-heading { display: block; margin-bottom: 40px; }
  .split-heading h2 { margin-bottom: 16px; }
}
@media (max-width: 640px) {
  .cycle-switch { width: 100%; }
  .cycle-button { flex: 1; padding-inline: 8px; }
  .cycle-button span { display: block; margin: 0; }
  .billing-boundary { display: grid; }
  .billing-boundary span + span { border-left: 1px solid var(--border-default); border-top: 0; }
  .plan-card { padding: 26px 22px; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  :root { --shell: calc(100% - 48px); }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .doc-stack { height: 380px; }
  .icon-row { grid-template-columns: 1fr; gap: 26px; }
  .pricing-split { grid-template-columns: 1fr; gap: 24px; }
  .pricing-split .divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proposal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .site-header { position: static; }
  .desktop-nav, .desktop-actions { display: none; }
  .mobile-menu { display: block; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --shell: calc(100% - 36px); }
  .list-row { grid-template-columns: 32px 1fr; grid-template-rows: auto auto; }
  .list-row .list-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .button { width: 100%; }
  .hero-actions { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}