/* GlintGG marketing site — dark-first, aligned to docs/design/spec00-design-language.md.
   Palette + type mirror the current app theme (mobile/lib/core/theme/app_theme.dart).
   The PRO badge and EDGE/GRADE wordmark lockups live in the canonical
   component subbrand-badges.css. */

@font-face {
  font-family: "Satoshi";
  src: url("/brand/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  color-scheme: dark;

  /* Surfaces + text (dark) */
  --surface-0: #0b1018;
  --surface-1: #111827;
  --surface-2: #172033;
  --surface-3: #202a3d;
  --surface-4: #2d3a52;
  --ink: #f7f4fa;
  --muted: #aeb8c8;
  --muted-soft: #7f8ba0;
  --line: rgb(185 167 255 / 12%);
  --line-strong: rgb(185 167 255 / 22%);

  /* Accents (luminous) */
  --lavender: #b9a7ff;
  --action: #55d6ff;
  --on-action: #06223a;
  --mint: #7ee36c;
  --gold: #ffe156;
  --rose: #ff6fae;
  --peach: #ffb84d;

  /* Holo — brand identity vs product/value (see spec) */
  --brand-holo: linear-gradient(
    100deg,
    #ff4d8d,
    #a14dff,
    #4f6fff,
    #19c9ff,
    #35d07f,
    #ffd23f
  );
  --product-holo: linear-gradient(120deg, #b9a7ff, #5ce1e6, #7ee36c, #ffe156);

  --max-width: 84rem;
  --content-width: 48rem;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 999px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface-0);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 540px at 8% -6%, rgb(185 167 255 / 16%), transparent 70%),
    radial-gradient(820px 520px at 96% 0%, rgb(85 214 255 / 13%), transparent 70%),
    radial-gradient(900px 700px at 50% 116%, rgb(126 227 108 / 9%), transparent 70%),
    var(--surface-0);
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img,
svg {
  max-width: 100%;
}

.mono {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-feature-settings: "tnum" 1;
}

/* ---------- Layout ---------- */
.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.bleed {
  width: 100%;
  position: relative;
}
.bleed-2 {
  background:
    radial-gradient(1100px 460px at 50% -40%, rgb(85 214 255 / 7%), transparent 70%),
    linear-gradient(180deg, var(--surface-1), rgb(11 16 24 / 0%) 40%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.holo-rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--brand-holo);
  opacity: 0.4;
}

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 620ms cubic-bezier(0.4, 0, 0.2, 1);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(11 16 24 / 72%);
  backdrop-filter: blur(18px);
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--brand-holo);
  opacity: 0.28;
}
.header-inner {
  display: flex;
  height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img,
.wordmark {
  display: block;
  height: 2.6rem;
  width: auto;
}
.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
@media (min-width: 880px) {
  .nav {
    display: flex;
  }
}
.nav a {
  border-radius: var(--radius-full);
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease;
}
.nav a:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.nav a.active {
  color: var(--ink);
}
.header-cta {
  display: none;
}
@media (min-width: 560px) {
  .header-cta {
    display: inline-flex;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease,
    border-color 150ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--action);
  color: var(--on-action);
  box-shadow: 0 12px 34px rgb(85 214 255 / 30%);
}
.btn-primary:hover {
  box-shadow: 0 16px 40px rgb(85 214 255 / 42%);
}
.btn-secondary {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: var(--surface-3);
  border-color: var(--lavender);
}
.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 0.95rem 1.9rem;
  font-size: 1.05rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: var(--surface-1);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.eyebrow .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: var(--mint);
  box-shadow: 0 0 0 4px rgb(126 227 108 / 18%);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 1.5rem;
}
@media (min-width: 1000px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 5rem 0 3rem;
  }
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 1.25rem 0 1.1rem;
}
.hero .lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 0 1.75rem;
}
.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding: 0;
  margin: 1.6rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-bullets svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--mint);
}

/* ---------- Waitlist form (markup + analytics preserved from the live site) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
  max-width: 30rem;
}
.waitlist-form input[type="email"] {
  flex: 1 1 13rem;
  min-width: 0;
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: var(--surface-1);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.waitlist-form input[type="email"]::placeholder {
  color: var(--muted-soft);
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--action);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgb(85 214 255 / 14%);
}
.waitlist-form button {
  flex: 0 0 auto;
}
.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}
.waitlist-note {
  flex-basis: 100%;
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted-soft);
}
.waitlist-fallback {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--action);
  text-underline-offset: 3px;
}
.waitlist-status {
  margin: 0.5rem 0 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.waitlist-status[data-kind="success"] {
  color: var(--mint);
}
.waitlist-status[data-kind="error"] {
  color: var(--rose);
}

/* ---------- Phone mockup (stylized) ---------- */
.device-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.device-stage::before {
  content: "";
  position: absolute;
  inset: -12% -6% -14% -6%;
  background: radial-gradient(
    closest-side,
    rgb(85 214 255 / 30%),
    rgb(161 77 255 / 20%) 52%,
    transparent 78%
  );
  filter: blur(16px);
  z-index: 0;
}
.device-stage::after {
  content: "";
  position: absolute;
  inset: 4% 14% 8%;
  border-radius: 3rem;
  background: var(--brand-holo);
  opacity: 0.18;
  filter: blur(34px);
  z-index: 0;
}
/* A real iPhone: the screenshot sits inside the transparent screen cutout of
   Apple's official product bezel art (/shots/frame-iphone.webp, synced from
   docs/design/panels/frames/ — the same frame the app's FRE and the store
   panels use). Cutout geometry in bezel-art coordinates (1470×3000): rect
   (75, 66, 1320×2868), display corner radius 190px; measured by
   `python -m tools.marketing_panels.measure_frame`. */
.phone {
  position: relative;
  z-index: 1;
  width: min(320px, 80vw);
  aspect-ratio: 1470 / 3000;
  filter: drop-shadow(0 30px 70px rgb(0 0 0 / 52%));
}
/* Bezel art on top; the Dynamic Island is part of the art. */
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/shots/frame-iphone.webp") no-repeat center / contain;
  z-index: 2;
  pointer-events: none;
}
.screen {
  position: absolute;
  left: 5.102%;
  top: 2.2%;
  width: 89.796%;
  height: 95.6%;
  display: flex;
  flex-direction: column;
  /* 190px display corner radius: 14.39% of cutout width, 6.62% of height. */
  border-radius: 14.39% / 6.62%;
  overflow: hidden;
  background: #070809;
}
/* Blank status strip in the app's own top-bar surface so content starts
   below the Dynamic Island (island bottom is ~5.4% of the screen). */
.screen::before {
  content: "";
  flex: 0 0 7%;
  background: var(--surface-1);
}
.screen img {
  display: block;
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Two-phone hero: same-size, straight, staggered — back up-left, front
   down-right, separated by its drop shadow (mirrors the FRE dual hero). */
.device-duo {
  position: relative;
  display: flow-root;
  width: min(380px, 88vw);
  margin: 0 auto;
}
.device-duo .phone {
  width: 63%;
  margin: 0;
}
.device-duo .phone-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.device-duo .phone-front {
  position: relative;
  margin-left: 37%;
  margin-top: 11%;
  z-index: 2;
}

/* Screenshot gallery band */
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 2rem;
  margin-top: 3rem;
  align-items: start;
}
.shots .phone {
  width: min(100%, 264px);
  margin: 0 auto;
}
.shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.shot figcaption {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--ink);
  max-width: 22ch;
}
@media (max-width: 760px) {
  .shots {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    max-width: 20rem;
    margin-inline: auto;
  }
}
/* Former hero CSS mockup styles removed — the hero now uses real screenshots. */

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0 1rem;
}
.section-head {
  max-width: 60ch;
  margin-bottom: 2.25rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
  margin: 0 0 0.6rem;
}
.section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
.section .section-lead {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pillar {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-holo);
  opacity: 0;
  transition: opacity 180ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.pillar:hover::before {
  opacity: 0.85;
}
.pillar .glyph {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 0.4rem;
}
.pillar .glyph svg {
  width: 1.4rem;
  height: 1.4rem;
}
.pillar h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.g-lav {
  background: rgb(185 167 255 / 14%);
  color: var(--lavender);
}
.g-mint {
  background: rgb(126 227 108 / 14%);
  color: var(--mint);
}
.g-action {
  background: rgb(85 214 255 / 14%);
  color: var(--action);
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 160ms ease, border-color 160ms ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.feature .pill {
  height: 0.32rem;
  width: 2.6rem;
  border-radius: var(--radius-full);
  background: var(--product-holo);
  margin-bottom: 0.7rem;
}
.feature h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}
.tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-full);
}
.tag-free {
  background: rgb(126 227 108 / 14%);
  color: var(--mint);
}

/* ---------- Social showcase ---------- */
.bleed-social {
  background:
    radial-gradient(900px 460px at 50% -30%, rgb(185 167 255 / 9%), transparent 70%),
    radial-gradient(700px 420px at 86% 124%, rgb(126 227 108 / 7%), transparent 70%),
    linear-gradient(180deg, var(--surface-1), rgb(11 16 24 / 0%) 46%);
  border-top: 1px solid var(--line);
}
.social {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1000px) {
  .social {
    grid-template-columns: 0.92fr 1.08fr;
  }
}
.feed-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.feed-stage::before {
  content: "";
  position: absolute;
  inset: -10% 2%;
  background: radial-gradient(
    closest-side,
    rgb(185 167 255 / 24%),
    rgb(85 214 255 / 12%) 55%,
    transparent 78%
  );
  filter: blur(22px);
  z-index: 0;
}
.feed-stage .phone {
  width: min(300px, 80vw);
}

/* ---------- TCG tiles ---------- */
.tcg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .tcg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1000px) {
  .tcg-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.tcg-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 5.25rem;
  padding: 1.4rem 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-1);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}
.tcg-tile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--game, var(--lavender));
  opacity: 0.55;
}
.tcg-tile:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.tcg-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--radius-full);
  background: var(--game, var(--lavender));
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--game, var(--lavender)) 14%, transparent);
}
.tcg-name {
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

/* ---------- Pro band ---------- */
.pro-section {
  background:
    radial-gradient(900px 420px at 18% -30%, rgb(255 225 86 / 8%), transparent 70%),
    radial-gradient(900px 420px at 88% 120%, rgb(185 167 255 / 10%), transparent 70%),
    linear-gradient(180deg, #0c1220, #0a0e18);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pro-band {
  position: relative;
  overflow: hidden;
  padding: 2.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, #141d30, #0b1019);
  box-shadow: 0 40px 90px rgb(0 0 0 / 45%);
}
.pro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--brand-holo);
  opacity: 0.6;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pro-band::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 10%;
  right: 10%;
  height: 70%;
  background: var(--brand-holo);
  opacity: 0.16;
  filter: blur(60px);
  pointer-events: none;
}
.pro-band > * {
  position: relative;
  z-index: 1;
}
.pro-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.pro-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}
.pro-top {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .pro-top {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}
.pro-shot {
  display: flex;
  justify-content: center;
}
.pro-shot .phone {
  width: min(248px, 70vw);
}
@media (min-width: 860px) {
  .pro-shot .phone {
    width: min(260px, 30vw);
  }
}
.pro-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.pro-main {
  display: grid;
  gap: 1rem;
  margin-top: 1.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .pro-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pro-main-feature {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 4%);
  border: 1px solid var(--line-strong);
  transition: transform 160ms ease, background 160ms ease;
}
.pro-main-feature:hover {
  transform: translateY(-3px);
  background: rgb(255 255 255 / 6%);
}
.pro-main-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.pro-main-feature.edge::before {
  background: linear-gradient(90deg, #ffe156, #55d6ff);
}
.pro-main-feature.grade::before {
  background: linear-gradient(90deg, #b9a7ff, #55d6ff);
}
.pro-main-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.pro-main-feature > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: none;
}
.pro-subpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.pro-subpoint {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
}
.pro-extras {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .pro-extras {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pro-extra {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.85rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 2.5%);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.pro-extra b {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* ---------- Closing brand CTA ---------- */
.closing {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.25rem 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, #131c2e, #0a0e18);
}
.closing::before {
  content: "";
  position: absolute;
  inset: -60% -10% auto;
  height: 120%;
  background: var(--brand-holo);
  opacity: 0.14;
  filter: blur(70px);
  pointer-events: none;
}
.closing > * {
  position: relative;
  z-index: 1;
}
.closing h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
}
.closing p {
  color: var(--muted);
  margin: 0 auto 1.6rem;
  max-width: 46ch;
}
.closing .waitlist-form {
  margin: 0 auto;
  justify-content: center;
}
.closing .waitlist-note {
  text-align: center;
}
.closing .waitlist-status {
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-card {
  max-width: 32rem;
  padding: 1.6rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-1);
}
.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-soft);
  margin: 0 0 0.4rem;
}
.contact-email {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-color: var(--action);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: var(--ink);
  margin: 0;
}
.contact-company {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

/* ---------- Socials ---------- */
.socials-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .socials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.social-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-1);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--lavender);
  background: var(--surface-2);
}
.social-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.social-name {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-soft);
  display: block;
}
.social-handle {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: rgb(11 16 24 / 70%);
  backdrop-filter: blur(18px);
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.25rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer .wordmark {
  height: 1.5rem;
  margin-bottom: 0.8rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}
.footer-nav a:hover,
.footer-socials a:hover {
  color: var(--ink);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.7rem;
}
.footer-socials a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-soft);
}

/* ---------- Subpages (legal / contact / support) ---------- */
.main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.article {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2.5rem 0;
}
.article header {
  margin-bottom: 2rem;
}
.article h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.article header p {
  color: var(--muted);
  margin: 0;
}
.article h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2rem 0 0.5rem;
}
.article p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.article a.inline {
  text-decoration: underline;
  text-decoration-color: var(--action);
  text-underline-offset: 3px;
}
.callout {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 4px solid var(--gold);
  background: var(--surface-1);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 54px rgb(0 0 0 / 24%);
  margin-bottom: 2rem;
}
.callout strong {
  color: var(--ink);
}
.delete-list {
  margin: 0 0 1rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

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