/* ==========================================================================
   Haun Player — Marketing Site
   Design: cinematic dark, blue→cyan→violet aurora, glass surfaces, grain.
   Type:   Cabinet Grotesk (display) + Satoshi (body) via Fontshare.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --blue:        #0a84ff;
  --cyan:        #64d2ff;
  --violet:      #7b5cff;
  --violet-deep: #5b3df5;

  /* Surfaces */
  --bg:          #060609;
  --bg-2:        #0a0a10;
  --surface:     rgba(20, 21, 30, 0.55);
  --surface-2:   rgba(28, 29, 40, 0.7);
  --hairline:    rgba(255, 255, 255, 0.09);
  --hairline-2:  rgba(255, 255, 255, 0.14);

  /* Text */
  --text:        #f4f5fb;
  --text-soft:   #c5c7d4;
  --text-muted:  #8a8c9e;
  --text-faint:  #5f6173;

  /* Effects */
  --grad-brand:  linear-gradient(120deg, var(--blue) 0%, var(--cyan) 55%, var(--violet) 110%);
  --grad-text:   linear-gradient(110deg, #ffffff 0%, #cfe4ff 40%, var(--cyan) 70%, var(--violet) 100%);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 60px -30px rgba(0,0,0,0.8);
  --shadow-glow: 0 20px 70px -20px rgba(10, 132, 255, 0.55);
  --radius:      22px;
  --radius-sm:   14px;

  /* Type */
  --font-display: "Cabinet Grotesk", "Satoshi", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Satoshi", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Aurora + grain backdrop */
body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 130vh;
  z-index: -2;
  background:
    radial-gradient(48% 40% at 18% 8%, rgba(10,132,255,0.30), transparent 70%),
    radial-gradient(42% 38% at 85% 0%, rgba(123,92,255,0.28), transparent 72%),
    radial-gradient(50% 45% at 60% 38%, rgba(100,210,255,0.14), transparent 75%);
  filter: blur(10px);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

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

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 140px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cyan);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: rgba(100,210,255,0.06);
  backdrop-filter: blur(8px);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4.6vw, 52px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.01em; }

.section-head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { margin: 18px 0 16px; }
.section-head p { color: var(--text-muted); font-size: 18px; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 24px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  color: #fff; background: var(--grad-brand); background-size: 160% 160%;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 80px -18px rgba(10,132,255,0.7); background-position: 100% 0; }
.btn-ghost { color: var(--text); background: var(--surface); border-color: var(--hairline-2); backdrop-filter: blur(12px); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--cyan); background: var(--surface-2); }
.btn svg { width: 20px; height: 20px; }

/* App Store badge button */
.appstore-btn {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 13px 24px 13px 20px; border-radius: 15px;
  background: #fff; color: #0a0a10;
  box-shadow: 0 18px 50px -18px rgba(255,255,255,0.35);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.appstore-btn:hover { transform: translateY(-2px); box-shadow: 0 26px 70px -18px rgba(120,180,255,0.55); }
.appstore-btn svg { width: 30px; height: 30px; flex: none; }
.appstore-btn .as-label { display: flex; flex-direction: column; line-height: 1.1; }
.appstore-btn .as-small { font-size: 11px; letter-spacing: 0.02em; color: #44464f; }
.appstore-btn .as-big { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,8,12,0.72); backdrop-filter: blur(18px) saturate(160%); border-bottom-color: var(--hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 6px 18px -6px rgba(10,132,255,0.7); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--text-soft); font-size: 15px; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--grad-brand); transition: width .25s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(40px, 7vw, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(42px, 6.6vw, 82px); margin: 22px 0 22px; }
.hero p.lead { font-size: clamp(18px, 2.1vw, 21px); color: var(--text-soft); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--text-muted); font-size: 14.5px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 17px; height: 17px; color: var(--cyan); }

/* App window mockup */
.mockup {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, #15161e, #0c0d14);
  border: 1px solid var(--hairline-2);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04) inset, var(--shadow-glow);
}
.mockup::after { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(120% 60% at 50% -10%, rgba(100,210,255,0.10), transparent 60%); }
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,0.02); }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-dot.r { background:#ff5f57; } .mock-dot.y { background:#febc2e; } .mock-dot.g { background:#28c840; }
.mock-title { margin-left: 12px; font-size: 12.5px; color: var(--text-faint); font-weight: 600; }
.mock-body { display: grid; grid-template-columns: 140px 1fr; min-height: 360px; }
.mock-side { border-right: 1px solid var(--hairline); padding: 16px 12px; display: flex; flex-direction: column; gap: 6px; }
.mock-navitem { display:flex; align-items:center; gap:10px; padding: 9px 11px; border-radius: 10px; font-size: 13.5px; color: var(--text-muted); }
.mock-navitem.active { background: rgba(10,132,255,0.16); color: #fff; }
.mock-navitem i { width: 8px; height: 8px; border-radius: 3px; background: currentColor; opacity:.7; }
.mock-main { padding: 16px; }
.mock-player { aspect-ratio: 16/9; border-radius: 12px; background: linear-gradient(135deg, #0a2540, #131b3a 60%, #1a1030); position: relative; overflow:hidden; border: 1px solid var(--hairline); display:flex; align-items:center; justify-content:center; }
.mock-player::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 30% 20%, rgba(100,210,255,0.25), transparent 60%), radial-gradient(50% 60% at 80% 90%, rgba(123,92,255,0.3), transparent 60%); }
.mock-play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,0.3); display:flex; align-items:center; justify-content:center; position: relative; }
.mock-play::after { content:""; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.mock-live { position:absolute; top:12px; left:12px; font-size:10.5px; font-weight:800; letter-spacing:.12em; color:#fff; background:#ff3b30; padding:4px 9px; border-radius:6px; }
.mock-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 14px; }
.mock-tile { aspect-ratio: 3/4; border-radius: 9px; background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)); border:1px solid var(--hairline); }
.mock-tile:nth-child(2){ background: linear-gradient(160deg, rgba(10,132,255,0.25), rgba(10,132,255,0.04)); }
.mock-tile:nth-child(3){ background: linear-gradient(160deg, rgba(123,92,255,0.25), rgba(123,92,255,0.04)); }

.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

/* ---------- Logo / trust strip ---------- */
.strip { border-block: 1px solid var(--hairline); background: rgba(255,255,255,0.015); }
.strip-inner { display: flex; flex-wrap: wrap; align-items:center; justify-content: center; gap: clamp(24px, 5vw, 64px); padding-block: 30px; }
.strip-item { display:flex; align-items:center; gap:10px; color: var(--text-muted); font-size: 14.5px; font-weight: 600; }
.strip-item svg { width: 20px; height: 20px; color: var(--cyan); }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 30px;
  backdrop-filter: blur(14px); box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, background .35s;
  position: relative; overflow: hidden;
}
.card::before { content:""; position:absolute; inset:0; border-radius: inherit; padding:1px; background: linear-gradient(140deg, rgba(100,210,255,0.4), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:0; transition: opacity .35s; }
.card:hover { transform: translateY(-6px); border-color: var(--hairline-2); background: var(--surface-2); }
.card:hover::before { opacity:1; }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(140deg, rgba(10,132,255,0.22), rgba(123,92,255,0.18));
  border: 1px solid var(--hairline-2); margin-bottom: 20px;
}
.card .ic svg { width: 26px; height: 26px; color: var(--cyan); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15.5px; }
.card.span-2 { grid-column: span 2; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--hairline); background: var(--surface); backdrop-filter: blur(12px); }
.step .num { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--cyan); letter-spacing: .1em; margin-bottom: 16px; display:block; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* ---------- Split feature (player tech) ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items:center; }
.spec-list { list-style:none; display:grid; gap: 14px; margin-top: 28px; }
.spec-list li { display:flex; gap: 14px; align-items:flex-start; }
.spec-list .chk { flex:none; width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(140deg, var(--blue), var(--violet)); display:flex; align-items:center; justify-content:center; }
.spec-list .chk svg { width: 15px; height: 15px; color:#fff; }
.spec-list b { color: var(--text); font-weight: 600; }
.spec-list span { color: var(--text-muted); }

/* ---------- Pricing ---------- */
.price-card {
  max-width: 520px; margin-inline: auto; text-align:center;
  border-radius: 28px; padding: 48px 40px;
  background: var(--surface-2); border: 1px solid var(--hairline-2);
  box-shadow: var(--shadow-card), var(--shadow-glow); backdrop-filter: blur(16px);
  position: relative; overflow:hidden;
}
.price-card::before { content:""; position:absolute; inset:-1px; border-radius:inherit; background: var(--grad-brand); opacity:.10; pointer-events:none; }
.price-tag { display:inline-block; padding:6px 14px; border-radius:999px; background: rgba(40,200,64,0.14); color:#4ade80; font-weight:700; font-size:13px; letter-spacing:.04em; margin-bottom: 22px; border:1px solid rgba(74,222,128,0.3); }
.price-amount { font-family: var(--font-display); font-size: 60px; font-weight: 700; letter-spacing:-0.03em; line-height:1; margin-bottom: 6px; }
.price-amount small { font-size: 18px; color: var(--text-muted); font-weight:600; }
.price-sub { color: var(--text-muted); margin-bottom: 30px; }
.price-feats { list-style:none; text-align:left; max-width: 340px; margin: 0 auto 32px; display:grid; gap:13px; }
.price-feats li { display:flex; gap:12px; align-items:center; color: var(--text-soft); font-size:15.5px; }
.price-feats svg { width:19px; height:19px; color: var(--cyan); flex:none; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline:auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width:100%; text-align:left; background:none; border:0; cursor:pointer; color:var(--text); font-family: var(--font-body); font-weight:600; font-size:18px; padding: 24px 44px 24px 0; position:relative; display:flex; }
.faq-q::after { content:""; position:absolute; right:6px; top:50%; width:13px; height:13px; transform: translateY(-50%); transition: transform .3s; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364d2ff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--text-muted); font-size: 16px; }
.faq-a-inner { padding: 0 44px 24px 0; }
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- CTA ---------- */
.cta-band {
  border-radius: 32px; padding: clamp(48px,7vw,80px) clamp(28px,5vw,64px); text-align:center;
  background: linear-gradient(135deg, rgba(10,132,255,0.18), rgba(123,92,255,0.16));
  border: 1px solid var(--hairline-2); position:relative; overflow:hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 50% 0%, rgba(100,210,255,0.25), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: var(--text-soft); max-width: 560px; margin: 0 auto 32px; font-size: 18px; }
.cta-actions { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); padding-block: 56px 36px; margin-top: 40px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { margin-bottom: 16px; }
.footer-about { color: var(--text-muted); font-size: 14.5px; max-width: 300px; }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing:.12em; color: var(--text-faint); margin-bottom: 16px; font-weight:700; }
.footer-col a { display:block; color: var(--text-muted); font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; padding-top: 28px; border-top: 1px solid var(--hairline); color: var(--text-faint); font-size: 13.5px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Legal / content pages ---------- */
.legal { padding-top: clamp(40px,6vw,72px); }
.legal-head { max-width: 760px; margin-bottom: 48px; }
.legal-head h1 { font-size: clamp(34px,5vw,56px); margin: 18px 0 14px; }
.legal-head .updated { color: var(--text-faint); font-size: 14.5px; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: clamp(22px,2.8vw,30px); margin: 44px 0 14px; }
.legal-body h3 { font-size: 19px; margin: 28px 0 10px; color: var(--text); }
.legal-body p, .legal-body li { color: var(--text-soft); font-size: 16.5px; margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--text); }
.legal-toc { background: var(--surface); border:1px solid var(--hairline); border-radius: var(--radius-sm); padding: 22px 26px; margin-bottom: 40px; }
.legal-toc h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 12px; }
.legal-toc a { color: var(--text-soft); font-size: 15px; display:block; padding: 4px 0; }
.legal-toc a:hover { color: var(--cyan); }
.callout { border-radius: var(--radius-sm); border:1px solid var(--hairline-2); background: rgba(10,132,255,0.07); padding: 18px 22px; margin: 22px 0; }
.callout p { margin: 0; color: var(--text-soft); }

/* Support specifics */
.support-cards { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 56px; }
.support-card { background: var(--surface); border:1px solid var(--hairline); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(12px); }
.support-card .ic { width:48px;height:48px;border-radius:13px;display:flex;align-items:center;justify-content:center;background:linear-gradient(140deg,rgba(10,132,255,0.22),rgba(123,92,255,0.18));border:1px solid var(--hairline-2);margin-bottom:18px; }
.support-card .ic svg { width:24px;height:24px;color:var(--cyan); }
.support-card h3 { font-size: 19px; margin-bottom: 8px; }
.support-card p { color: var(--text-muted); font-size: 15px; }
.support-card a { color: var(--cyan); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
  .feature-grid, .steps, .support-cards { grid-template-columns: 1fr 1fr; }
  .card.span-2 { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 6px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(8,8,12,0.96); backdrop-filter: blur(20px);
    padding: 18px 24px 24px; border-bottom: 1px solid var(--hairline);
  }
  .nav.open .nav-links a { padding: 12px 0; font-size: 17px; }
  .nav.open .nav-links a::after { display:none; }
  .feature-grid, .steps, .support-cards { grid-template-columns: 1fr; }
  .card.span-2 { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { width: 100%; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 100px 1fr; }
}
