/* =====================================================================
   Northwood Partners - styles.css
   Style: dark, minimal, corporate. Geometric quadrant brand mark,
   near-black surfaces, pale-blue + steel accents, generous whitespace.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand (from the Northwood mark) */
  --accent:      #D4DEEA; /* pale brand blue (light quadrants) */
  --accent-soft: #Aebfd2; /* dimmer accent */
  --steel:       #9DA3AE; /* gray quadrant */
  --link:        #B7CCE6; /* readable cool link on dark */

  /* Neutrals (dark theme) */
  --bg:        #0D0D0F; /* page */
  --surface:   #15161A; /* cards / tiles */
  --surface-2: #1C1E23; /* elevated */
  --line:      rgba(255,255,255,.12);
  --line-2:    rgba(255,255,255,.20);
  --text:      #ECEEF2;
  --muted:     #969AA3;
  --muted-on-dark: #B6BAC3;
  --white:     #15161A; /* legacy "light surface" -> dark surface */

  /* Feature-section gradient stops */
  --feature-start:  #16181D; /* dark slate (hero/feature gradient start) */
  --feature-accent: #C7D2E0; /* soft highlight accent */
  --feature-end:    #0A0B0D; /* gradient end */
  --blue:           #D4DEEA; /* = accent */
  --blue-deep:      #B7CCE6; /* = link */
  --ink:            #0D0D0F; /* near-black (dark bg + seamless borders) */
  --ink-2:          #1C1E23;
  --paper:          #0D0D0F;

  --fg: var(--text);
  --card: var(--surface);
  --border: var(--line);

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-hard:    0 24px 60px -22px rgba(0,0,0,.85);
  --shadow-hard-sm: 0 12px 30px -14px rgba(0,0,0,.7);
  --shadow-blue: var(--shadow-hard);
  --shadow-hard-sm: 0 12px 30px -14px rgba(0,0,0,.7);
  --border-w: 1px;

  /* Layout */
  --container: 1180px;
  --nav-h: 74px;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 600;
}

::selection { background: var(--accent); color: #0D0D0F; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 12px; top: -120px;
  background: var(--accent); color: #0D0D0F; padding: 12px 18px;
  border-radius: var(--radius-sm); z-index: 2000;
  font-family: var(--font-display); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }
.section { padding: 100px 0; }
.section--tight { padding: 72px 0; }

.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
  box-shadow: none;
}
.section--dark .eyebrow { color: var(--accent); border-color: var(--line-2); }

h2.section-title { font-size: clamp(2rem, 4.6vw, 3rem); }
.section-head p.lead {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}
.section-head.center p.lead { margin-inline: auto; }
.section--dark .section-head p.lead { color: var(--muted-on-dark); }

.text-blue { color: var(--accent); }
.text-steel { color: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--text);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: .01em;
  padding: 14px 24px;
  min-height: 50px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  transition: transform .16s var(--ease), background .16s var(--ease), border-color .16s var(--ease), opacity .16s var(--ease);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); border-color: var(--accent); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary { --btn-bg: var(--accent); --btn-fg: #0D0D0F; border-color: transparent; }
.btn--primary:hover { background: #E6EDF5; border-color: transparent; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--accent); border-color: var(--line-2); }
.btn--outline:hover { background: rgba(212,222,234,.08); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--lg { font-size: 1.04rem; padding: 17px 30px; min-height: 58px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(13,13,15,.72);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: .01em; text-transform: none; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand img {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--line-2);
}
.brand span b { font-weight: 600; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.navlink {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted-on-dark);
  text-transform: none;
  letter-spacing: 0;
}
.nav-links a.navlink:hover { color: var(--text); text-decoration: none; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-socials { display: flex; gap: 8px; }
.nav-socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px; color: var(--text);
  background: var(--surface);
  transition: transform .16s var(--ease), border-color .16s var(--ease);
}
.nav-socials a:hover { transform: translateY(-2px); border-color: var(--line-2); }
.nav-socials svg { width: 18px; height: 18px; }
.nav-socials a img, .footer-socials a img { width: 22px; height: 22px; display: block; border-radius: 5px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2); border-radius: 10px; background: var(--surface);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav[data-open="true"] .nav-toggle span { background: transparent; }
.nav[data-open="true"] .nav-toggle span::before { transform: rotate(45deg); }
.nav[data-open="true"] .nav-toggle span::after  { transform: rotate(-45deg) translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--text);
  background:
    radial-gradient(90% 80% at 82% -8%, rgba(212,222,234,.12), transparent 60%),
    linear-gradient(165deg, #16181D 0%, #0A0B0D 70%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after { /* faint grid */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 78%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: 56px; align-items: center;
  padding: 110px 0 116px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; max-width: 100%;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 7px 15px; font-family: var(--font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; margin-bottom: 26px;
  color: var(--muted-on-dark);
}
.hero-badge .label { min-width: 0; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(212,222,234,.18); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: none;
}
.hero p.hero-sub {
  margin-top: 24px; font-size: 1.18rem; max-width: 52ch; color: var(--muted-on-dark);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-weight: 500; font-size: .95rem; color: var(--muted-on-dark); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--accent); }

/* Hero card stack visual */
.hero-art { position: relative; min-height: 360px; display: grid; place-items: center; }
.pack {
  position: absolute; width: 212px; aspect-ratio: 3/4; border-radius: 18px;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-hard);
  display: grid; place-items: center; text-align: center; padding: 20px;
  background: var(--surface);
}
.pack .pack-logo { width: 84px; height: 84px; border-radius: 12px; border: 1px solid var(--line-2); }
.pack b { font-family: var(--font-display); display:block; margin-top: 16px; font-size: 1.05rem; font-weight: 600; letter-spacing: .01em; color: var(--text); }
.pack small { display:block; font-weight: 500; color: var(--muted); margin-top: 2px; }
.pack--1 { background: #14151A; transform: rotate(-9deg) translate(-58px, 18px); }
.pack--2 { background: #1C1E25; border-color: rgba(212,222,234,.5); transform: rotate(6deg) translate(64px, -22px); z-index: 2; }
.pack--3 { background: #101117; transform: rotate(-2deg) translate(6px, 60px); z-index: 1; }

/* Marquee */
.marquee {
  background: #0A0B0D; color: var(--muted-on-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 40px; padding: 14px 0; will-change: transform; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; display:inline-flex; align-items:center; gap: 14px; color: var(--muted); }
.marquee__track span::before { content: ""; width: 6px; height: 6px; background: var(--accent); transform: rotate(45deg); display: inline-block; opacity: .8; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Trust / highlight tiles ---------- */
.trust { background: transparent; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 64px 0; }
.trust-tile {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; background: var(--surface); box-shadow: var(--shadow-hard-sm);
}
.trust-tile .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); border: 1px solid var(--line-2); margin-bottom: 18px;
}
.trust-tile:nth-child(2) .ico { color: var(--steel); }
.trust-tile:nth-child(3) .ico { color: var(--accent); }
.trust-tile:nth-child(4) .ico { color: var(--steel); }
.trust-tile .ico svg { width: 23px; height: 23px; }
.trust-tile b { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; display: block; }
.trust-tile p { color: var(--muted); font-size: .96rem; margin-top: 8px; }

/* ---------- Card grids ---------- */
.cards { display: grid; gap: 22px; }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-hard-sm);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.card h3 { font-size: 1.28rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--muted); }

.badge-num {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent); color: #0D0D0F; border: none;
  box-shadow: none; margin-bottom: 18px;
}
.card .ic {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid var(--line-2); margin-bottom: 18px; background: var(--surface-2); color: var(--accent);
}
.card .ic svg { width: 25px; height: 25px; }

/* ---------- Split / panels ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--top { align-items: flex-start; }
@media (min-width: 821px) {
  .split--top .brand-col { align-self: stretch; }
  .split--top .brand-col .brand-panel { position: sticky; top: calc(var(--nav-h) + 24px); }
}
@media (max-width: 820px) {
  .split--top .brand-col { order: 2; }
}
.split .panel {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--surface-2); color: var(--text); padding: 34px; box-shadow: var(--shadow-hard);
}
.checklist { list-style: none; padding: 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist li .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--accent); color: #0D0D0F; border: none; margin-top: 2px;
}
.checklist li .tick svg { width: 15px; height: 15px; }
.checklist li b { font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: 1rem; }
.checklist li span { color: var(--muted-on-dark); display: block; font-size: .95rem; }

/* Sample checklist card */
.sample {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  box-shadow: var(--shadow-hard); overflow: hidden;
}
.sample .sample-h {
  background: var(--surface-2); color: var(--text); padding: 16px 22px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.sample .sample-h b { font-family: var(--font-display); font-weight: 600; text-transform: none; letter-spacing: .01em; }
.sample .sample-h .tag { font-family: var(--font-display); font-weight: 600; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; background: rgba(212,222,234,.14); color: var(--accent); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: 999px; }
.sample table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.sample th, .sample td { text-align: left; padding: 12px 22px; border-bottom: 1px solid var(--line); color: var(--text); }
.sample th { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: .68rem; letter-spacing: .1em; color: var(--muted); }
.sample td.msrp { font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; color: var(--muted-on-dark); }
.sample tr:last-child td { border-bottom: none; }
.sample .sample-f { padding: 14px 22px; font-size: .85rem; color: var(--muted); background: var(--surface-2); border-top: 1px solid var(--line); }

/* ---------- Series info panel ---------- */
.series-info {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-2);
}
.series-info .si-lead {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 26px; max-width: 72ch;
}
.series-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.si-col h4 {
  font-family: var(--font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.si-col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.si-col li {
  position: relative; padding-left: 20px;
  color: var(--muted-on-dark); font-size: .95rem; line-height: 1.5;
}
.si-col li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px; background: var(--accent); transform: rotate(45deg);
}
.series-info .si-closer {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted-on-dark); font-size: 1rem; max-width: 72ch;
}
@media (max-width: 820px) {
  .series-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .series-info { padding: 26px 24px; }
}

/* ---------- Category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  font-family: var(--font-display); font-weight: 500; text-transform: none; letter-spacing: .01em;
  font-size: .88rem; padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.03); color: var(--text);
  box-shadow: none;
}
.chip:nth-child(2n) { color: var(--accent); }
.chip:nth-child(3n) { color: var(--steel); }

.brand-panel {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: linear-gradient(165deg, #1C1E25 0%, #101117 100%);
  color: var(--text); padding: 38px 32px; box-shadow: var(--shadow-hard); text-align: center;
}
.brand-panel img { width: 104px; height: 104px; border-radius: 18px; border: 1px solid var(--line-2); box-shadow: none; margin: 0 auto 20px; }
.brand-panel b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; text-transform: none; display: block; }
.brand-panel span { color: var(--muted-on-dark); font-weight: 500; }

/* ---------- Dark section ---------- */
.section--dark { background: #0A0B0D; color: var(--text); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark .card { background: var(--surface); border-color: var(--line); }
.section--dark .card:hover { border-color: var(--line-2); }
.section--dark .card p { color: var(--muted-on-dark); }
.section--dark .card .ic { background: var(--surface-2); border-color: var(--line-2); color: var(--accent); }
.section--dark .section-title { color: var(--text); }

/* ---------- Feature gradient section ---------- */
.section--feature {
  color: var(--text);
  background: linear-gradient(165deg, #16181D 0%, #0A0B0D 80%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section--feature .section-head p.lead { color: var(--muted-on-dark); }

/* ---------- Social tiles ---------- */
.socials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.social-tile {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); color: var(--text); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-hard-sm);
  transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.social-tile:hover { transform: translateY(-3px); border-color: var(--line-2); text-decoration: none; }
.social-tile .row { display: flex; align-items: center; gap: 14px; }
.social-tile .si {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  border: 1px solid var(--line-2); color: #fff; flex: none; overflow: hidden;
}
.social-tile .si svg { width: 27px; height: 27px; }
.si--whatnot { background: #fff; color: #111; padding: 0; }
.si--whatnot img { width: 100%; height: 100%; object-fit: cover; }
.si--ig { background: linear-gradient(45deg, #feda75, #d62976, #962fbf); }
.si--tt { background: #0A0B0D; color: #fff; }
.social-tile .handle { font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: 1.1rem; }
.social-tile .plat { color: var(--muted); font-weight: 500; font-size: .88rem; }
.social-tile p { color: var(--muted); font-size: .95rem; }
.social-tile .go { margin-top: auto; font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.social-tile .go svg { width: 16px; height: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: none; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; cursor: pointer; background: transparent; border: 0;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: 1.04rem; color: var(--text);
}
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-q .chev { flex: none; width: 30px; height: 30px; border: 1px solid var(--line-2); border-radius: 8px; display: grid; place-items: center; transition: transform .2s var(--ease), background .2s var(--ease); color: var(--accent); }
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); background: rgba(212,222,234,.12); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }
.faq-item[data-open="true"] .faq-a { grid-template-rows: 1fr; }

/* ---------- CTA strip ---------- */
.cta-strip { text-align: center; }
.cta-strip h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
.cta-strip p { margin: 16px auto 32px; max-width: 56ch; font-size: 1.1rem; color: var(--muted-on-dark); }
.cta-strip .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #0A0B0D; color: var(--text); padding: 72px 0 34px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
.footer .brand { color: var(--text); }
.footer .brand span b { color: var(--accent); }
.footer p.about { color: var(--muted); margin-top: 18px; max-width: 42ch; font-size: .96rem; }
.footer h4 { font-family: var(--font-display); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.footer ul a { color: var(--muted-on-dark); font-weight: 500; }
.footer ul a:hover { color: var(--text); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 10px; color: #fff; background: #fff; transition: transform .16s var(--ease); }
.footer-socials a:hover { transform: translateY(-2px); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--muted); font-size: .85rem; }
.footer .disclaimer { max-width: 70ch; line-height: 1.6; }

/* ---------- Legal pages ---------- */
.legal { padding: 72px 0 100px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4.6vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-weight: 500; margin-bottom: 16px; }
.legal .note {
  background: var(--surface-2); border: 1px solid var(--line-2); border-left: 3px solid var(--accent); border-radius: var(--radius-sm);
  padding: 16px 20px; box-shadow: none; margin: 24px 0 36px; font-size: .96rem; color: var(--muted-on-dark);
}
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--muted-on-dark); }
.legal ul, .legal ol { padding-left: 22px; display: grid; gap: 8px; margin-top: 8px; }
.legal a { font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: .9rem; margin-bottom: 24px; color: var(--accent); }
.back-link svg { width: 16px; height: 16px; }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.notfound .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 20vw, 11rem); color: var(--accent); line-height: .9; text-shadow: none; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 80px 0 90px; }
  .hero-art { min-height: 300px; order: -1; }
  .cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .socials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(13,13,15,.97); border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px;
    transform: translateY(-130%); transition: transform .26s var(--ease);
    box-shadow: 0 18px 40px rgba(0,0,0,.6);
  }
  .nav[data-open="true"] .nav-links { transform: translateY(0); }
  .nav-links a.navlink { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.04rem; }
  .nav .desktop-cta { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .cards.cols-3, .cards.cols-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-strip .btn { width: 100%; justify-content: center; }
  .nav-socials { display: none; }
  .pack { width: 150px; }
  .pack--1 { transform: rotate(-7deg) translate(-40px, 14px); }
  .pack--2 { transform: rotate(5deg) translate(44px, -16px); }
  .pack--3 { transform: rotate(-2deg) translate(4px, 46px); }
  .hero-badge { font-size: .64rem; letter-spacing: .08em; padding: 7px 13px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}
