/* Hands Down — site-wide design system.
   Sections: tokens/base → shared components (nav, buttons, badges, cards,
   forms, footer) → landing sections → per-page sections appended by later
   tasks (thanks, portal, privacy, 404). */

/* ── Tokens & base ─────────────────────────────────────────── */
:root {
  --bg: #fbfaf8;
  --card: #fff;
  --accent: #5e5ce6;
  --accent-hover: #6d6bf0;
  --accent-deep: #4a48c9;
  --accent-tint: rgba(94, 92, 230, 0.09);
  --ok: #1f9d3a;
  --ok-dot: #28c840;
  --ok-bg: rgba(40, 199, 64, 0.14);
  --err: #c0392b;
  --err-text: #a33125;
  --err-bg: rgba(192, 57, 43, 0.08);
  --ink: rgba(0, 0, 0, 0.92);
  --ink-soft: rgba(0, 0, 0, 0.55);
  --ink-faint: rgba(0, 0, 0, 0.45);
  --ink-ghost: rgba(0, 0, 0, 0.4);
  --line: rgba(0, 0, 0, 0.07);
  --line-mid: rgba(0, 0, 0, 0.09);
  --line-strong: rgba(0, 0, 0, 0.12);
  --radius-card: 14px;
  --radius-btn: 11px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-btn: 0 1px 2px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(94, 92, 230, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

body > main {
  flex: 1 0 auto;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
h1, h2, h3 { margin: 0; color: var(--ink); }
p { margin: 0; }
button { font: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.muted { color: var(--ink-soft); }
.small { font-size: 13px; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { height: 60px; display: flex; align-items: center; gap: 24px; }
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand:hover { color: var(--ink); }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(94, 92, 230, 0.35);
  flex: none;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav__links a:hover { color: var(--ink); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-btn); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; }
.btn--secondary {
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn--secondary:hover { background: #f4f3f0; color: rgba(0, 0, 0, 0.85); }
.btn--danger {
  background: var(--card);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: var(--err);
  font-weight: 500;
}
.btn--danger:hover { background: var(--err-bg); color: var(--err); }
.btn--small { height: 32px; padding: 0 13px; font-size: 13px; border-radius: 8px; }
.btn--nav { height: 36px; padding: 0 16px; font-size: 14px; border-radius: 8px;
  box-shadow: 0 1px 2px rgba(94, 92, 230, 0.35); }

/* ── Badges & eyebrows ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-tint);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.badge--ok { background: var(--ok-bg); color: var(--ok); }
.badge--ok .badge__dot { background: var(--ok-dot); }
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.section-head { text-align: center; margin: 0 auto 52px; }
.section-head h2 {
  font-size: 38px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-head p { font-size: 17px; color: var(--ink-soft); max-width: 540px; margin: 0 auto; text-wrap: pretty; }

/* ── Cards, checks, forms ──────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.check-row { display: flex; align-items: center; gap: 11px; }
.check-row__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ok-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.check-row span:last-child { font-size: 14.5px; color: rgba(0, 0, 0, 0.75); letter-spacing: -0.01em; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: rgba(0, 0, 0, 0.6); margin: 0 0 7px; }
.field {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  border-radius: 9px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.field:focus { border-color: var(--accent); background: var(--card); }
.field--mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.notice { font-size: 13.5px; color: var(--ok); font-weight: 500; margin: 10px 0 0; }
.error-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--err-bg);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--err-text);
  margin: 12px 0 0;
}
.error-box::before {
  content: "!";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--err);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
/* `display: flex` above would defeat the hidden attribute (author styles
   override the UA's [hidden] rule) — the JS toggles .hidden on these. */
.error-box[hidden] { display: none; }
.form-row { display: flex; gap: 10px; }
.form-row .field { flex: 1; }
.form-row .btn { height: 42px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--card); border-top: 1px solid var(--line-mid); padding: 52px 0 36px; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__blurb { font-size: 14px; color: var(--ink-soft); max-width: 260px; margin-top: 14px; text-wrap: pretty; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.footer__head { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-ghost); margin: 0 0 14px; text-transform: uppercase; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: rgba(0, 0, 0, 0.62); }
.footer__col a:hover { color: var(--accent); }
.footer__legal {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-ghost);
}

/* ── Popover mockup (hero + showcase) ──────────────────────── */
.pop {
  position: relative;
  width: 300px;
  border-radius: 16px;
  background: rgba(247, 246, 245, 0.98);
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.12), 0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pop__arrow {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(247, 246, 245, 0.98);
  border-radius: 3px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -1px -1px 0 0.5px rgba(0, 0, 0, 0.06);
}
.pop__head { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.pop__title { font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.pop__head .badge, .pop__stage .badge { padding: 3px 9px; font-size: 11px; }
.pop__stage { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.pop__scene {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 34%, #1e1e25, #0b0b0f);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.pop__scene--drag { cursor: ns-resize; touch-action: none; }
.pop__face {
  position: absolute;
  left: 50%;
  top: 24%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}
.pop__torso {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 110px;
  height: 88px;
  border-radius: 55px 55px 0 0;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-50%);
}
.pop__neckline { position: absolute; left: 0; right: 0; border-top: 1.5px dashed #6f6cff; }
.pop__handle {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
}
.pop__panel {
  background: var(--card);
  border-radius: 9px;
  padding: 11px 12px;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pop__row { display: flex; align-items: center; justify-content: space-between; }
.pop__label { font-size: 12px; color: var(--ink-soft); }
.pop__value { font-size: 11px; color: rgba(0, 0, 0, 0.35); }
.pop__slider { position: relative; height: 16px; display: flex; align-items: center; cursor: pointer; touch-action: none; }
.pop__slider-track { width: 100%; height: 4px; border-radius: 2px; background: var(--line-strong); }
.pop__slider-fill { position: absolute; left: 0; height: 4px; border-radius: 2px; background: var(--accent); }
.pop__slider-thumb {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}
.pop__seg { display: flex; background: rgba(0, 0, 0, 0.06); border-radius: 7px; padding: 2px; }
.pop__seg > * {
  border: 0;
  background: transparent;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 11.5px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.pop__seg > .is-active {
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.15);
}
.pop__toggle {
  position: relative;
  width: 34px;
  height: 20px;
  border: 0;
  padding: 0;
  border-radius: 10px;
  background: var(--accent);
  flex: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.pop__toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: left 0.15s ease;
}
.pop__toggle[aria-checked="false"] { background: var(--line-strong); }
.pop__toggle[aria-checked="false"]::after { left: 2px; }
.pop--dark .pop__toggle[aria-checked="false"] { background: rgba(255, 255, 255, 0.18); }
.pop__hint { text-align: center; font-size: 10.5px; color: rgba(0, 0, 0, 0.35); letter-spacing: -0.01em; }
.pop__divider { height: 1px; background: rgba(0, 0, 0, 0.08); margin: 0 4px; }
.pop__menu { display: flex; flex-direction: column; gap: 1px; }
.pop__menu > span {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: space-between;
}
.pop__menu .pop__shortcut { color: rgba(0, 0, 0, 0.35); }

/* Dark variant (showcase) */
.pop--dark { background: #26262b; box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.1), 0 26px 60px rgba(0, 0, 0, 0.6); }
.pop--dark .pop__arrow { background: #26262b; box-shadow: none; }
.pop--dark .pop__title { color: rgba(255, 255, 255, 0.92); }
.pop--dark .badge { background: rgba(94, 92, 230, 0.22); color: #c8c7ff; }
.pop--dark .badge__dot { background: #9b99ff; }
.pop--dark .pop__scene { background: #050506; }
.pop--dark .pop__face, .pop--dark .pop__torso { background: rgba(255, 255, 255, 0.05); }
.pop--dark .pop__neckline { border-top-color: #8f8dff; }
.pop--dark .pop__handle { border-color: #7e7bff; box-shadow: none; }
.pop--dark .pop__panel { background: rgba(255, 255, 255, 0.06); box-shadow: none; }
.pop--dark .pop__label { color: rgba(255, 255, 255, 0.5); }
.pop--dark .pop__value { color: rgba(255, 255, 255, 0.35); }
.pop--dark .pop__slider-track { background: rgba(255, 255, 255, 0.14); }
.pop--dark .pop__slider-fill { background: #8f8dff; }
.pop--dark .pop__slider-thumb { background: #eee; border: 0; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }
.pop--dark .pop__seg { background: rgba(255, 255, 255, 0.08); }
.pop--dark .pop__seg > * { color: rgba(255, 255, 255, 0.5); }
.pop--dark .pop__seg > .is-active { background: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.95); box-shadow: none; }
.pop--dark .pop__divider { background: rgba(255, 255, 255, 0.08); }
.pop--dark .pop__menu > span { color: rgba(255, 255, 255, 0.9); }
.pop--dark .pop__menu .pop__shortcut { color: rgba(255, 255, 255, 0.35); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding: 76px 0 48px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.hero .badge { margin-bottom: 22px; padding: 5px 13px; font-size: 12.5px; }
.hero h1 {
  font-size: 52px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero__sub { font-size: 18px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 30px; max-width: 500px; text-wrap: pretty; }
.hero__ctas { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.hero__meta { margin-top: 18px; font-size: 13px; color: rgba(0, 0, 0, 0.42); letter-spacing: -0.01em; }
.hero__stage { display: flex; justify-content: center; align-items: center; position: relative; padding: 20px 0; }
.hero__glow {
  position: absolute;
  inset: -8% 6%;
  background: radial-gradient(60% 55% at 60% 35%, rgba(94, 92, 230, 0.14), transparent 70%);
  filter: blur(6px);
}
.hero__stage .pop { position: relative; }

/* ── Trust bar ─────────────────────────────────────────────── */
.trust { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { padding: 18px 32px; display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; }
.trust .check-row span:last-child { font-size: 13.5px; font-weight: 500; color: rgba(0, 0, 0, 0.7); }
.trust .check-row__icon { width: 18px; height: 18px; }

/* ── How it works ──────────────────────────────────────────── */
.how { padding: 92px 0; scroll-margin-top: 64px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.how__card { padding: 26px; }
.how__art { height: 150px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.how__scene { width: 132px; height: 132px; }
.how__scene .pop__face { width: 38px; height: 38px; }
.how__scene .pop__torso { width: 96px; height: 78px; border-radius: 48px 48px 0 0; }
.how__frame { position: absolute; inset: 9px; border-radius: 50%; border: 2px dashed rgba(111, 108, 255, 0.55); }
.how__title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.how__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.how__card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.how__card > p { font-size: 14.5px; line-height: 1.5; color: rgba(0, 0, 0, 0.52); text-wrap: pretty; }
.sound-list { display: flex; flex-direction: column; justify-content: center; gap: 8px; width: 100%; padding: 0 4px; }
.sound-list__item { display: flex; align-items: center; gap: 10px; background: rgba(0, 0, 0, 0.03); border-radius: 9px; padding: 9px 11px; font-size: 13px; color: rgba(0, 0, 0, 0.6); }
.sound-list__item--active { background: rgba(94, 92, 230, 0.08); font-weight: 600; color: rgba(0, 0, 0, 0.85); }
.sound-list__radio { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(0, 0, 0, 0.25); flex: none; }
.sound-list__item--active .sound-list__radio { border: 4px solid var(--accent); background: #fff; }
.sound-list__name { flex: 1; }
.sound-list__play { width: 0; height: 0; border-left: 8px solid rgba(0, 0, 0, 0.4); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.sound-list__item--active .sound-list__play { border-left-color: var(--accent); }

/* ── Benefits ──────────────────────────────────────────────── */
.benefits { background: var(--card); border-top: 1px solid var(--line); padding: 92px 0; }
.benefits__head { margin-bottom: 44px; max-width: 640px; }
.benefits__head h2 { font-size: 38px; line-height: 1.08; font-weight: 700; letter-spacing: -0.025em; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px 22px; overflow: hidden; }
.benefit__num { position: absolute; top: 14px; right: 18px; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: rgba(94, 92, 230, 0.1); }
.benefit__chip { width: 10px; height: 10px; border-radius: 3px; background: var(--accent); margin-bottom: 16px; }
.benefit h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.benefit p { font-size: 14px; line-height: 1.5; color: rgba(0, 0, 0, 0.52); text-wrap: pretty; }

/* ── Showcase (dark) ───────────────────────────────────────── */
.showcase { background: linear-gradient(165deg, #26272e, #141419); padding: 92px 0; }
.showcase .eyebrow { color: #9b99ff; }
.showcase .section-head h2 { color: #fff; }
.showcase .section-head p { color: rgba(255, 255, 255, 0.55); }
.showcase__row { display: flex; gap: 40px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
.showcase__item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.showcase__caption { font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, 0.5); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing { background: var(--card); border-top: 1px solid var(--line); padding: 92px 0; scroll-margin-top: 64px; }
.price-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line-mid);
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 18px 50px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.price-card__head { padding: 30px 32px 24px; border-bottom: 1px solid var(--line); }
.price-card__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.price-card__amount { display: flex; align-items: baseline; gap: 9px; }
.price-card__amount strong { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.price-card__amount span { font-size: 15px; font-weight: 500; color: var(--ink-faint); }
.price-card__tagline { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; }
.price-card__body { padding: 24px 32px 30px; }
.price-card__features { display: flex; flex-direction: column; gap: 13px; margin: 0 0 24px; padding: 0; list-style: none; }
.price-card__body .btn { width: 100%; }
.price-card__alt { text-align: center; margin-top: 14px; font-size: 14px; color: var(--ink-soft); }
.price-card__alt a { font-weight: 600; }
.price-card__fine { text-align: center; margin-top: 16px; font-size: 12.5px; color: rgba(0, 0, 0, 0.38); letter-spacing: -0.01em; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding: 92px 0; scroll-margin-top: 64px; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 13px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(0, 0, 0, 0.88);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 1; }
.faq-item__chev { flex: none; color: var(--accent); transition: transform 0.2s ease; }
.faq-item[open] .faq-item__chev { transform: rotate(90deg); }
.faq-item > p { padding: 0 22px 20px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); max-width: 640px; text-wrap: pretty; }

/* ── Subpage scaffold (thanks / portal / privacy / 404) ────── */
.subpage { max-width: 600px; margin: 0 auto; padding: 72px 32px 96px; }
.subpage h1 { font-size: 42px; line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; margin: 0 0 14px; }
.subpage__lede { font-size: 17.5px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 32px; text-wrap: pretty; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .how__grid, .benefits__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .hero { padding: 48px 0 36px; }
  .hero h1 { font-size: 36px; }
  .section-head h2, .benefits__head h2 { font-size: 30px; }
  .how, .benefits, .showcase, .pricing, .faq { padding: 64px 0; }
  .subpage { padding: 48px 24px 72px; }
  .subpage h1 { font-size: 32px; }
}

/* ── Thanks page ───────────────────────────────────────────── */
.thanks__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ok-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.key-card { padding: 22px; margin-bottom: 26px; }
.key-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-ghost);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.key-card__row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.key-card__key {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.thanks__ctas { display: flex; gap: 13px; margin-bottom: 40px; flex-wrap: wrap; }
.thanks__steps-head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-ghost);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.thanks__steps { list-style: none; margin: 0 0 36px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.thanks__steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; color: rgba(0, 0, 0, 0.7); }
.thanks__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(94, 92, 230, 0.12);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.thanks__resend { border-top: 1px solid var(--line-mid); padding-top: 24px; }
.thanks__resend summary { font-size: 14px; font-weight: 600; color: var(--accent); cursor: pointer; }
.thanks__resend form { margin-top: 14px; }
.thanks__note {
  margin-top: 32px;
  background: rgba(94, 92, 230, 0.06);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  text-wrap: pretty;
}
.thanks__note strong { color: rgba(0, 0, 0, 0.8); font-weight: 600; }

/* ── License portal ────────────────────────────────────────── */
.portal__card { padding: 22px; }
.portal__card + .portal__card, form.portal__card + section.portal__card { margin-top: 24px; }
main.subpage > .portal__card { margin-bottom: 24px; }
.portal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.portal__meta { display: flex; flex-direction: column; gap: 8px; margin: 0 0 18px; }
.portal__meta div { display: flex; gap: 10px; align-items: baseline; }
.portal__meta dt {
  width: 52px;
  flex: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-ghost);
  text-transform: uppercase;
}
.portal__meta dd { margin: 0; font-size: 14.5px; font-weight: 600; color: rgba(0, 0, 0, 0.85); }
.portal__subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin: 0 0 4px;
}
.portal__activations { list-style: none; margin: 0; padding: 0; }
.activation { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(0, 0, 0, 0.06); }
.activation:first-child { border-top: 0; }
.activation__name { flex: 1; min-width: 0; font-size: 14.5px; font-weight: 600; color: rgba(0, 0, 0, 0.85); }
.activation__date { font-size: 12.5px; color: var(--ink-faint); }
.activation--empty { justify-content: center; padding: 22px 0; font-size: 14px; }

/* ── Privacy page ──────────────────────────────────────────── */
.privacy-page { max-width: 680px; }
.privacy-page > .badge { margin-bottom: 22px; padding: 5px 13px; font-size: 12.5px; }
.privacy-page__sections { display: flex; flex-direction: column; gap: 32px; }
.privacy-page__sections h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 9px; }
.privacy-page__sections p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.privacy-page__cta {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-mid);
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

/* ── 404 ───────────────────────────────────────────────────── */
.notfound { text-align: center; padding-top: 110px; }
.notfound__scene {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin-bottom: 34px;
}
.notfound__ctas { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
