/* ===========================================================================
   CrateMatch — Landing Page
   Eigenständiges Design-System (Brand aus dem App-Icon: zwei ineinander-
   greifende Kreise = zwei Bibliotheken im Sync). Cyan + Amber auf Dunkel.
   =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,300..800;1,400..600&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg:            #0a0c11;
  --bg-2:          #0d1016;
  --surface:       #12151c;
  --surface-2:     #171b23;
  --surface-3:     #1d222c;
  --inset:         #0c0e13;

  --border:        #232a35;
  --border-soft:   #1a1f28;
  --border-strong: #313a48;

  --text:          #eef1f5;
  --text-2:        #aab2bf;
  --text-3:        #727a88;
  --text-faint:    #4d5460;

  --cyan:          #24c8db;
  --cyan-dim:      #1aa0b1;
  --cyan-ghost:    rgba(36, 200, 219, 0.12);
  --cyan-ghost-2:  rgba(36, 200, 219, 0.22);
  --amber:         #ffc131;
  --amber-dim:     #d99e1c;
  --amber-ghost:   rgba(255, 193, 49, 0.12);

  --match:         #35d27f;
  --match-ghost:   rgba(53, 210, 127, 0.13);
  --missing:       #ff5f6e;
  --missing-ghost: rgba(255, 95, 110, 0.13);
  --spotify:       #1db954;

  --font:   'Hanken Grotesk', system-ui, sans-serif;
  --display:'Space Grotesk', system-ui, sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, monospace;

  --r:      14px;
  --r-sm:   9px;
  --r-lg:   22px;
  --r-pill: 999px;

  --shadow:    0 12px 40px rgba(0,0,0,.45);
  --shadow-lg: 0 40px 100px -20px rgba(0,0,0,.7);
  --ease: cubic-bezier(.2, .7, .3, 1);

  --maxw: 1180px;
  --gut:  24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--cyan-ghost-2); color: #fff; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; border: 3px solid transparent; background-clip: padding-box; }

/* =========================================================================
   Layout primitives
   ========================================================================= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section.tight { padding: clamp(48px, 6vw, 84px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--cyan-ghost); border: 1px solid var(--cyan-ghost-2);
}
.eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 var(--cyan-ghost-2); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(36,200,219,.4);} 70%{box-shadow:0 0 0 8px rgba(36,200,219,0);} 100%{box-shadow:0 0 0 0 rgba(36,200,219,0);} }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -.02em; line-height: 1.06; margin: 0; }
.h-display { font-size: clamp(38px, 6.2vw, 76px); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; }
.h-section { font-size: clamp(30px, 4.4vw, 50px); letter-spacing: -.025em; }
.lede { font-size: clamp(16px, 1.7vw, 20px); color: var(--text-2); line-height: 1.6; }
.text-grad {
  background: linear-gradient(110deg, var(--cyan) 0%, #6fe0ec 40%, var(--amber) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.sec-head .lede { max-width: 560px; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  font-family: var(--font); font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-sm);
  border: 1px solid var(--border-strong); background: var(--surface-2); color: var(--text);
  cursor: pointer; white-space: nowrap; transition: all .16s var(--ease);
}
.btn:hover { background: var(--surface-3); border-color: #3d4756; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn.primary {
  background: linear-gradient(180deg, #2ad3e6, var(--cyan)); color: #04181c;
  border-color: transparent; font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 10px 30px -8px var(--cyan-ghost-2);
}
.btn.primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 16px 40px -8px rgba(36,200,219,.4); filter: brightness(1.05); }
.btn.ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn.ghost:hover { background: var(--surface); border-color: var(--border-strong); }
.btn.lg { padding: 16px 28px; font-size: 16px; }
.btn.sm { padding: 9px 15px; font-size: 13.5px; }
.btn.block { width: 100%; }

/* =========================================================================
   Navbar
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s, backdrop-filter .25s;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--border-soft);
}
.nav-in { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 2px 10px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.07); }
.brand .name { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.brand .name b { font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { font-size: 14.5px; color: var(--text-2); padding: 8px 13px; border-radius: var(--r-sm); transition: color .15s, background .15s; font-weight: 500; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); border-radius: var(--r-sm); padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

/* mobile menu */
.mobile-menu { display: none; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(40px, 5vw, 72px); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg .glow-c { position: absolute; top: -12%; right: -6%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(36,200,219,.16), transparent 62%); filter: blur(20px); }
.hero-bg .glow-a { position: absolute; top: 18%; left: -10%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,193,49,.1), transparent 62%); filter: blur(20px); }
.hero-bg .grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px); background-size: 56px 56px; opacity: .35; mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%); }
.hero-in { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.hero h1 { max-width: 16ch; }
.hero .lede { max-width: 620px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; }
.hero-micro { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 13.5px; color: var(--text-3); font-family: var(--mono); }
.hero-micro .mi { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro .mi svg { width: 15px; height: 15px; color: var(--match); }

/* product shot */
.shot { position: relative; z-index: 1; margin-top: clamp(40px, 5vw, 64px); perspective: 1800px; }
.shot-frame {
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: rotateX(2deg); transform-origin: center top;
}
.shot::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: -30px; height: 60px; background: radial-gradient(ellipse, rgba(36,200,219,.18), transparent 70%); filter: blur(18px); z-index: -1; }

/* =========================================================================
   Compatibility strip
   ========================================================================= */
.compat { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-2); }
.compat-in { display: flex; align-items: center; gap: clamp(20px, 5vw, 56px); flex-wrap: wrap; justify-content: center; padding: 28px 0; }
.compat .label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); }
.compat .logos { display: flex; align-items: center; gap: clamp(22px, 4vw, 44px); flex-wrap: wrap; justify-content: center; }
.compat .logo { display: inline-flex; align-items: center; gap: 9px; color: var(--text-2); font-weight: 600; font-size: 16px; opacity: .85; transition: opacity .15s; }
.compat .logo:hover { opacity: 1; }
.compat .logo .ci { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; flex: none; }

/* =========================================================================
   Bento / Features
   ========================================================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; position: relative; overflow: hidden;
  transition: border-color .18s, transform .18s;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px; }
.card .ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 9px; font-family: var(--display); font-weight: 600; }
.card p { margin: 0; color: var(--text-2); font-size: 14.5px; }
.card.span-3 { grid-column: span 3; }
.card.span-2 { grid-column: span 2; }
.card.span-6 { grid-column: span 6; }
.ic.cyan { background: var(--cyan-ghost); color: var(--cyan); }
.ic.amber { background: var(--amber-ghost); color: var(--amber); }
.ic.match { background: var(--match-ghost); color: var(--match); }

/* feature highlight (big card with mini visual) */
.feat-hi { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.feat-hi .copy h3 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 12px; }
.feat-hi .copy p { font-size: 15.5px; }
.mini-rows { display: flex; flex-direction: column; gap: 8px; }
.mini-row { display: grid; grid-template-columns: 30px 1fr auto auto; gap: 12px; align-items: center; background: var(--inset); border: 1px solid var(--border-soft); border-radius: var(--r-sm); padding: 9px 12px; }
.mini-row .cov { width: 30px; height: 30px; border-radius: 6px; }
.mini-row .tt { font-size: 13px; font-weight: 550; }
.mini-row .ta { font-size: 11px; color: var(--text-3); font-family: var(--mono); }
.mini-ring { width: 26px; height: 26px; }

/* =========================================================================
   Steps
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.stepcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; position: relative; }
.stepcard .num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--cyan); letter-spacing: .1em; }
.stepcard h3 { font-size: 21px; margin: 14px 0 9px; }
.stepcard p { margin: 0; color: var(--text-2); font-size: 14.5px; }
.stepcard .sc-ic { position: absolute; top: 26px; right: 26px; color: var(--text-faint); }
.stepcard .sc-ic svg { width: 26px; height: 26px; }
.steps .connector { position: absolute; top: 44px; right: -10px; color: var(--border-strong); z-index: 2; }

/* =========================================================================
   Pricing
   ========================================================================= */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.plan.featured { border-color: var(--cyan-ghost-2); background: linear-gradient(180deg, rgba(36,200,219,.06), var(--surface) 40%); box-shadow: 0 0 0 1px var(--cyan-ghost), var(--shadow); }
.plan .badge-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg, #2ad3e6, var(--cyan)); color: #04181c; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: var(--r-pill); font-family: var(--mono); letter-spacing: .03em; white-space: nowrap; }
.plan .pname { font-family: var(--display); font-size: 20px; font-weight: 600; }
.plan .pdesc { font-size: 13.5px; color: var(--text-3); margin-top: 2px; }
.plan .price { display: flex; align-items: baseline; gap: 8px; }
.plan .price .amt { font-family: var(--display); font-size: 46px; font-weight: 700; letter-spacing: -.03em; }
.plan .price .per { font-size: 14px; color: var(--text-3); font-family: var(--mono); }
.plan .feats { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan .feats .f { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); }
.plan .feats .f svg { width: 18px; height: 18px; color: var(--match); flex: none; margin-top: 1px; }
.plan .feats .f.off { color: var(--text-faint); }
.plan .feats .f.off svg { color: var(--text-faint); }
.price-note { text-align: center; margin-top: 22px; font-size: 13px; color: var(--text-3); }

.deal-strip { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: -8px; }
.deal-strip .was { font-family: var(--mono); font-size: 17px; color: var(--text-faint); text-decoration: line-through; }
.deal-strip .save-pill { font-family: var(--font); font-size: 12.5px; font-weight: 700; color: #2a1d00; background: linear-gradient(180deg,#ffcf5c,var(--amber)); padding: 4px 11px; border-radius: var(--r-pill); }
.deal-strip .upd { font-size: 12.5px; color: var(--amber); font-weight: 600; }

/* billing toggle */
.bill-toggle { display: inline-flex; gap: 4px; background: var(--inset); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px; }
.bill-toggle button { font-family: var(--font); font-size: 13.5px; font-weight: 600; border: none; background: transparent; color: var(--text-3); padding: 8px 18px; border-radius: var(--r-pill); cursor: pointer; transition: all .15s; }
.bill-toggle button.on { background: var(--surface-3); color: var(--text); }
.bill-toggle .save { font-family: var(--mono); font-size: 11px; color: var(--match); margin-left: 5px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .15s; }
.qa[open] { border-color: var(--border-strong); }
.qa summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 16px; font-family: var(--display); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .chev { transition: transform .2s var(--ease); color: var(--text-3); flex: none; }
.qa[open] summary .chev { transform: rotate(180deg); }
.qa .answer { padding: 0 22px 20px; color: var(--text-2); font-size: 14.5px; line-height: 1.65; }

/* =========================================================================
   Testimonials
   ========================================================================= */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.quote p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.6; }
.quote .by { display: flex; align-items: center; gap: 11px; }
.quote .av { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 15px; }
.quote .by .nm { font-size: 13.5px; font-weight: 600; }
.quote .by .rl { font-size: 12px; color: var(--text-3); font-family: var(--mono); }

/* =========================================================================
   Final CTA
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(48px, 7vw, 80px); text-align: center; background: linear-gradient(135deg, #0e1c22, #131820 55%, #1c1710); border: 1px solid var(--border-strong); display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-band .glow1 { position: absolute; top: -40%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(36,200,219,.18), transparent 65%); filter: blur(10px); }
.cta-band .glow2 { position: absolute; bottom: -50%; right: 8%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,193,49,.14), transparent 65%); filter: blur(10px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 16ch; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { border-top: 1px solid var(--border-soft); background: var(--bg-2); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .fbrand p { color: var(--text-3); font-size: 14px; max-width: 30ch; margin: 14px 0 0; }
.footer .fcol h4 { font-size: 13px; font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin: 0 0 14px; font-weight: 600; }
.footer .fcol a { display: block; color: var(--text-2); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer .fcol a:hover { color: var(--text); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--border-soft); color: var(--text-faint); font-size: 13px; font-family: var(--mono); }

/* =========================================================================
   Shared bits used in product shot
   ========================================================================= */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: var(--r-pill); font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.badge.match { background: var(--match-ghost); color: var(--match); } .badge.match .dot { background: var(--match); }
.badge.review { background: var(--amber-ghost); color: var(--amber); } .badge.review .dot { background: var(--amber); }
.badge.missing { background: var(--missing-ghost); color: var(--missing); } .badge.missing .dot { background: var(--missing); }
.fmt { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 5px; background: var(--surface-3); color: var(--text-2); }
.fmt.flac { color: var(--cyan); background: var(--cyan-ghost); }

/* =========================================================================
   Product shot internals
   ========================================================================= */
.ps-titlebar { height: 38px; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(180deg, #161a21, #11141a); border-bottom: 1px solid var(--border-soft); }
.ps-traffic { position: absolute; left: 14px; display: flex; gap: 8px; }
.ps-traffic i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.ps-traffic .r { background: #ff5f57; } .ps-traffic .y { background: #febc2e; } .ps-traffic .g { background: #28c840; }
.ps-tt { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 7px; }
.ps-tt img { width: 15px; height: 15px; border-radius: 4px; }

.ps-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--surface); }
.ps-pl-name { font-family: var(--display); font-size: 17px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.ps-pl-name svg { width: 17px; height: 17px; }
.ps-pl-sum { display: flex; gap: 12px; font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-top: 5px; flex-wrap: wrap; }
.ps-pl-sum .hl-m { color: var(--match); } .ps-pl-sum .hl-r { color: var(--amber); } .ps-pl-sum .hl-x { color: var(--missing); }
.ps-meter { position: relative; width: 44px; height: 44px; flex: none; }
.ps-meter-v { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text); }

.ps-rows { background: var(--bg-2); }
.ps-row { display: grid; grid-template-columns: 38px minmax(0,1.2fr) minmax(0,1.7fr) 54px 92px; gap: 14px; align-items: center; padding: 13px 20px; border-bottom: 1px solid var(--border-soft); }
.ps-row:last-child { border-bottom: none; }
.ps-row.missing { background: linear-gradient(90deg, var(--missing-ghost), transparent 55%); position: relative; }
.ps-row.missing::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--missing); }
.ps-cov { width: 38px; height: 38px; border-radius: 7px; flex: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.ps-trk { min-width: 0; }
.ps-trk .ps-tt { font-size: 13.5px; font-weight: 550; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-ta { font-size: 11.5px; color: var(--text-3); font-family: var(--mono); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-match { background: var(--inset); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 7px 11px; min-width: 0; }
.ps-match.none { border-style: dashed; border-color: rgba(255,95,110,.35); }
.ps-match.none .ps-mt { color: var(--missing); }
.ps-mt { font-size: 12.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-mm { display: flex; align-items: center; gap: 8px; margin-top: 3px; font-family: var(--mono); font-size: 10.5px; color: var(--text-3); }
.ps-mm .ps-key { color: var(--cyan); } .ps-mm .ps-bpm { color: var(--amber); }
.ps-score { display: flex; justify-content: center; position: relative; }
.ps-ring { width: 30px; height: 30px; }
.ps-ring-v { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--mono); font-size: 10px; font-weight: 700; }
.ps-noscore { color: var(--text-faint); font-family: var(--mono); }

@media (max-width: 640px) {
  .ps-row { grid-template-columns: 34px 1fr 48px 80px; }
  .ps-match { display: none; }
  .ps-pl-sum { font-size: 11px; gap: 9px; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn:not(.primary) { display: none; }
  .feat-hi { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .fbrand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card.span-3, .card.span-2 { grid-column: span 1; }
  .card.span-6 { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .steps .connector { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan.featured { order: -1; }
  .quotes { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --gut: 18px; }
  .bento { grid-template-columns: 1fr; }
  .card.span-6 { grid-column: span 1; }
  .feat-hi .mini-rows { display: none; }
  .hero-micro { gap: 12px; }
  .compat-in { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .shot-frame { transform: none; }
  .btn.lg { padding: 14px 22px; font-size: 15px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
}

/* mobile menu open state */
body.menu-open { overflow: hidden; }
.mobile-menu.show {
  display: flex; flex-direction: column; gap: 6px;
  position: fixed; inset: 70px 0 0; z-index: 49;
  background: var(--bg); padding: 24px var(--gut);
  animation: menuIn .2s var(--ease);
}
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu a { font-family: var(--display); font-size: 22px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.mobile-menu .btn { margin-top: 18px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Legal pages
   ========================================================================= */
.legal-page { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 96px); }
.legal-page .back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--text-2); margin-bottom: 32px;
  transition: color .15s;
}
.legal-page .back:hover { color: var(--cyan); }
.legal-page h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 24px; }
.legal-page h2 { font-size: 17px; margin: 28px 0 10px; color: var(--text); font-family: var(--display); }
.legal-page p, .legal-page li { color: var(--text-2); font-size: 14.5px; margin-bottom: 12px; line-height: 1.65; }
.legal-page ul { padding-left: 20px; margin: 0 0 16px; }
.legal-page a { color: var(--cyan); }
.legal-page em { color: var(--text-3); }

/* Download section */
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; margin: 0 auto; }
.download-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.download-card h3 { font-size: 18px; font-family: var(--display); }
.download-card p { margin: 0; font-size: 13.5px; color: var(--text-3); }
.download-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-3); font-family: var(--mono); }
@media (max-width: 560px) { .download-grid { grid-template-columns: 1fr; } }
