/* ============================================================
   Manifestly — "Luminous Serenity" design system
   Warm Editorial Minimalism + Luminous Glassmorphism
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --surface: #fcf8ff;
  --surface-bright: #fcf8ff;
  --surface-lowest: #ffffff;
  --surface-low: #f6f2f9;
  --surface-container: #f1ecf3;
  --surface-high: #ebe7ed;
  --surface-highest: #e5e1e8;
  --surface-dim: #dcd9df;
  --inverse-surface: #313035;
  --inverse-on-surface: #f3eff6;

  /* Ink */
  --ink: #1c1b20;
  --ink-strong: #2b2a2f;
  --ink-variant: #494454;
  --ink-muted: #726b73;
  --outline: #7a7486;
  --outline-variant: #cbc3d7;

  /* Iris (primary) */
  --primary: #6738d7;
  --primary-bright: #8d63ff;
  --primary-container: #8056f2;
  --on-primary: #ffffff;
  --primary-fixed: #e8ddff;
  --primary-fixed-dim: #cebdff;
  --on-primary-fixed: #21005e;
  --on-primary-fixed-variant: #5117c1;

  /* Dawn accents */
  --coral: #ffcfcf;
  --coral-dim: #eabbbb;
  --orchid: #ffd1ec;
  --orchid-dim: #e6bad4;
  --butter: #fff3d7;
  --secondary: #795556;
  --on-secondary-container: #7a5656;
  --tertiary: #745168;
  --on-tertiary-container: #5d3c52;

  /* CTA gradient — pink to iris. Every stop clears 4.5:1 against white label text
     (#c2338b 5.07, #8d3fd4 5.1, #6738d7 6.72). */
  --grad-cta: linear-gradient(135deg, #c2338b 0%, #8d3fd4 52%, #6738d7 100%);
  --grad-cta-shadow: 0 8px 24px -6px rgba(140, 56, 190, .45);
  --grad-cta-shadow-hi: 0 12px 30px -6px rgba(140, 56, 190, .55);

  /* Glass */
  --glass-1: rgba(255, 255, 255, 0.72);
  --glass-2: rgba(255, 255, 255, 0.88);
  --glass-3: rgba(255, 255, 255, 0.94);
  --feather: rgba(255, 255, 255, 0.65);
  --hairline: rgba(43, 42, 47, 0.06);

  /* Elevation */
  --shadow-1: 0 4px 20px -2px rgba(43, 42, 47, 0.04);
  --shadow-2: 0 10px 30px -4px rgba(141, 99, 255, 0.08), 0 4px 12px -2px rgba(43, 42, 47, 0.04);
  --shadow-3: 0 20px 48px -8px rgba(43, 42, 47, 0.10);
  --shadow-float: 0 28px 64px -12px rgba(43, 42, 47, 0.16);

  /* Radii */
  --r-sm: .5rem;
  --r-md: .875rem;
  --r-lg: 1.125rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;
  --r-full: 9999px;

  /* Rhythm */
  --gutter: 1.25rem;
  --shell: 1200px;
  --sp-xs: .25rem;
  --sp-sm: .5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2.5rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

@media (min-width: 768px) { :root { --gutter: 2rem; } }
@media (min-width: 1100px) { :root { --gutter: 3rem; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 24px;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
::selection { background: var(--primary-fixed); color: var(--on-primary-fixed); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 0; }
h1 { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 3.25rem); line-height: 1.12; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 1.25rem + 2.1vw, 2.5rem); line-height: 1.2; letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 1.08rem + .7vw, 1.5rem); line-height: 1.3; }
h4 { font-size: 1.125rem; line-height: 1.4; font-weight: 500; }
p { margin: 0; }
.em { font-style: italic; color: var(--primary); }
.em-ink { font-style: italic; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 var(--sp-md);
}
.eyebrow::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--primary-bright); flex: none; }
.eyebrow--pill {
  background: var(--glass-2); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--feather); border-radius: var(--r-full);
  padding: .45rem 1rem; color: var(--ink-variant); box-shadow: var(--shadow-1);
}
.eyebrow--pill::before { background: var(--primary-bright); box-shadow: 0 0 0 3px rgba(141,99,255,.16); }

.lede { font-size: clamp(1rem, .94rem + .3vw, 1.125rem); line-height: 1.72; color: var(--ink-variant); }
.muted { color: var(--ink-muted); }
.small { font-size: 13px; line-height: 20px; }
.label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted);
}
.quote { font-family: var(--serif); font-style: italic; font-size: 1.375rem; line-height: 1.55; color: var(--ink-strong); }

/* ---------- Layout ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: 820px; }
/* Readable prose measure inside a full-width shell, so a page can keep one
   container and still not run text to 1200px. */
.measure { max-width: 46rem; margin-inline: auto; }
.measure--wide { max-width: 54rem; margin-inline: auto; }
section { position: relative; }
.band { padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem); }
.band--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem); }
/* Feature + app landing heroes: shared top offset below the nav */
.band.band--hero-page { padding-top: clamp(3.25rem, 2rem + 5vw, 5.5rem); }
.band--tinted { background: linear-gradient(180deg, transparent, var(--surface-low) 18%, var(--surface-low) 82%, transparent); }
.band--veil { background: linear-gradient(180deg, rgba(255,207,207,.16), rgba(255,209,236,.12) 45%, rgba(255,243,215,.14)); }

.stack > * + * { margin-top: var(--sp-md); }
.head { max-width: 640px; margin-bottom: var(--sp-xl); }

/* Centred first screen: extra breathing room above the title, and the supporting
   card sits under the CTAs rather than beside them. */
.hero-centred { padding-top: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.hero-centred .head { margin-bottom: 0; }
.hero-centred .hero-aside { margin-top: clamp(2.5rem, 1.5rem + 3vw, 3.5rem); text-align: left; }
.hero-centred .hero-aside .stack > * + * { margin-top: var(--sp-md); }
.head--center { margin-inline: auto; text-align: center; }
.head p { margin-top: var(--sp-md); }

.grid { display: grid; gap: var(--sp-md); }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: var(--sp-lg); }
}
.split { display: grid; gap: var(--sp-xl); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
  .split--wide-left { grid-template-columns: 1.08fr .92fr; }
  .split--wide-right { grid-template-columns: .92fr 1.08fr; }
  .split--flip > :first-child { order: 2; }
}

/* ---------- Ambient glow ---------- */
.aura { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aura span {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
}
.aura .a1 { width: 44rem; height: 30rem; top: -14rem; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle at 35% 40%, var(--coral), transparent 70%), radial-gradient(circle at 70% 60%, var(--primary-fixed), transparent 70%); }
.aura .a2 { width: 24rem; height: 24rem; top: 22%; left: -9rem; background: var(--orchid); opacity: .42; }
.aura .a3 { width: 24rem; height: 24rem; top: 14%; right: -9rem; background: var(--primary-fixed-dim); opacity: .36; }
.aura .a4 { width: 30rem; height: 20rem; bottom: -8rem; left: 30%; background: var(--butter); opacity: .5; }
.over { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: 14px; font-weight: 600; letter-spacing: .01em; text-decoration: none;
  padding: .875rem 1.6rem; border-radius: var(--r-full); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn { transition: transform .18s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, filter .2s ease; }
/* Primary and iris are the same conversion button — one CTA look site-wide. */
.btn--primary, .btn--iris {
  background: var(--grad-cta); color: #fff;
  box-shadow: var(--grad-cta-shadow), inset 0 1px 1px rgba(255,255,255,.22);
}
/* Gradients cannot transition, so shift with a filter instead of a colour swap. */
.btn--primary:hover, .btn--iris:hover {
  filter: saturate(1.06) brightness(.94);
  box-shadow: var(--grad-cta-shadow-hi), inset 0 1px 1px rgba(255,255,255,.22);
}
.btn--glass {
  background: var(--glass-2); color: var(--ink); border-color: rgba(255,255,255,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-1);
}
.btn--glass:hover { background: #fff; box-shadow: var(--shadow-2); }
.btn--ghost { color: var(--ink-muted); padding-inline: .9rem; }
.btn--ghost:hover { color: var(--primary); background: rgba(141,99,255,.07); }
.btn--sm { padding: .55rem 1.1rem; font-size: 13px; }
.btn .ico { transition: transform .2s ease; }
.btn:hover .ico { transform: translateX(2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.head--center .cta-row { justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color .2s ease, gap .2s ease;
}
.textlink:hover { border-color: rgba(103,56,215,.35); gap: .6rem; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--glass-2); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--r-xl);
  padding: var(--sp-lg); box-shadow: var(--shadow-2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card--flat { background: var(--glass-1); box-shadow: var(--shadow-1); }
.card--solid { background: var(--surface-lowest); }
.card--lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.card--pad { padding: var(--sp-xl); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-variant); }
.card .label { display: block; margin-bottom: .75rem; }

.card--linked { display: flex; flex-direction: column; }
.card--linked h3 { margin-bottom: .5rem; }
.card--linked h3 a { text-decoration: none; color: inherit; }
.card--linked .textlink { margin-top: auto; padding-top: var(--sp-md); align-self: flex-start; }
.card--linked:hover .textlink { border-color: rgba(103,56,215,.35); }
/* Whole-card click target without nesting anchors */
.cover::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card--linked:focus-within { outline: 2px solid var(--primary-bright); outline-offset: 3px; }
.card--linked .cover:focus-visible { outline: none; }

/* Numbered step cards */
.step .num {
  font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--primary);
  display: block; margin-bottom: .75rem; font-variant-numeric: lining-nums;
}

/* Icon chip */
.chip {
  width: 2.75rem; height: 2.75rem; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: var(--sp-md); flex: none;
  background: linear-gradient(135deg, var(--coral), var(--orchid));
  color: var(--on-secondary-container);
}
.chip svg { width: 20px; height: 20px; }
.chip--iris { background: linear-gradient(135deg, var(--primary-fixed), var(--primary-fixed-dim)); color: var(--on-primary-fixed-variant); }
.chip--butter { background: linear-gradient(135deg, var(--butter), var(--coral)); color: var(--secondary); }
.chip--orchid { background: linear-gradient(135deg, var(--orchid), var(--primary-fixed)); color: var(--on-tertiary-container); }
.chip--sm { width: 2rem; height: 2rem; border-radius: var(--r-sm); margin-bottom: 0; }
.chip--sm svg { width: 15px; height: 15px; }

/* Feature list rows */
.rows { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.rows li {
  display: flex; gap: .875rem; align-items: flex-start;
  background: var(--glass-1); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: .9rem 1.1rem;
}
.rows strong { display: block; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: .15rem; }
.rows p { font-size: 13px; line-height: 20px; color: var(--ink-muted); }

/* Check list */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .625rem; }
/* Marker is absolutely positioned so inline markup (<strong>, <a>, <em>) flows normally
   instead of becoming sibling flex items. */
.checks li { position: relative; padding-left: 1.7rem; font-size: 14px; line-height: 22px; color: var(--ink-variant); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .28rem; width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background: var(--primary-bright) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.65rem no-repeat;
}

/* Pills */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  padding: .4rem .85rem; border-radius: var(--r-full);
  background: var(--glass-2); border: 1px solid var(--feather); color: var(--ink-variant);
  text-decoration: none; transition: background-color .2s ease, color .2s ease;
}
a.pill:hover { background: var(--primary-fixed); color: var(--on-primary-fixed); }
.pill--iris { background: var(--primary-fixed); color: var(--on-primary-fixed-variant); border-color: rgba(141,99,255,.2); }
.pill--coral { background: var(--coral); color: var(--on-secondary-container); border-color: rgba(121,85,86,.12); }
.pill--butter { background: var(--butter); color: var(--secondary); border-color: rgba(121,85,86,.12); }
.pill--orchid { background: var(--orchid); color: var(--on-tertiary-container); border-color: rgba(116,81,104,.12); }

/* Stats */
.stats { display: grid; gap: var(--sp-lg); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat .n { font-family: var(--serif); font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.25rem); line-height: 1.1; color: var(--ink); }
.stat .k { font-size: 12px; color: var(--ink-muted); margin-top: .35rem; letter-spacing: .04em; }

/* Byline + author bio, for blog posts */
.byline { display: flex; align-items: center; gap: .75rem; }
.byline img, .byline-mark {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; flex: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,.9), 0 2px 8px -2px rgba(43,42,47,.18);
}
.byline-mark {
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.05rem;
  background: linear-gradient(135deg, var(--coral), var(--primary-fixed)); color: var(--on-primary-fixed);
}
.byline > span { display: block; font-size: 12px; line-height: 1.45; color: var(--ink-muted); }
.byline strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.byline--compact { display: inline-flex; }
.byline--compact img, .byline--compact .byline-mark { width: 1.75rem; height: 1.75rem; }
.author-bio {
  margin-top: var(--sp-2xl); padding: var(--sp-lg);
  background: var(--glass-1); border: 1px solid var(--hairline); border-radius: var(--r-lg);
}
.author-bio p { margin-top: .875rem; font-size: 14px; line-height: 23px; color: var(--ink-variant); }

/* Testimonial card */
.quote-card {
  margin: 0; display: flex; flex-direction: column; gap: var(--sp-lg);
  background: var(--glass-2); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--r-xl);
  padding: var(--sp-lg); box-shadow: var(--shadow-2);
}
.quote-card blockquote {
  margin: 0; flex: 1;
  font-family: var(--serif); font-size: 1.0625rem; line-height: 1.6; color: var(--ink-strong);
}
.quote-card figcaption { display: flex; align-items: center; gap: .75rem; }
.quote-card figcaption img {
  width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: cover; flex: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,.9), 0 2px 8px -2px rgba(43,42,47,.18);
}
.quote-card figcaption span { display: block; font-size: 12px; line-height: 1.45; color: var(--ink-muted); }
.quote-card figcaption strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }

/* Quote block */
.pull {
  border-left: 2px solid var(--primary-fixed-dim); padding: .25rem 0 .25rem 1.25rem;
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; line-height: 1.6; color: var(--ink-strong);
}

/* ---------- About page ---------- */
.about-page > section > .shell { max-width: 1080px; }
.crumbs + .about-page { margin-top: calc(var(--crumb-h) * -1); }
.crumbs + .about-page .about-hero {
  padding-top: clamp(5rem, 3.8rem + 4vw, 7rem);
}
.about-story .head { max-width: 710px; }
.about-story-grid { display: grid; gap: var(--sp-lg); }
.about-story-card { padding: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem); }
.about-story-card p {
  font-size: 1rem; line-height: 1.75; color: var(--ink-variant);
}
.about-story-card a { color: var(--primary); text-underline-offset: .18em; }
.about-story-card--wide {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,221,255,.5));
}
.about-quote-card {
  position: relative; overflow: hidden; margin: 0;
  padding: clamp(2rem, 1.4rem + 2vw, 3rem);
  border-radius: var(--r-xl); color: var(--ink-strong);
  background: linear-gradient(135deg, var(--coral) 0%, var(--orchid) 52%, var(--primary-fixed) 100%);
  box-shadow: var(--shadow-2);
}
.about-quote-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.65), transparent 38%);
  pointer-events: none;
}
.about-quote-card > * { position: relative; z-index: 1; }
.about-quote-card p {
  max-width: 31ch; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.45rem, 1.15rem + 1.15vw, 2rem); line-height: 1.45;
}
.about-quote-card footer {
  margin-top: var(--sp-lg); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-variant);
}
.about-quote-mark {
  position: absolute; z-index: 0; width: 7rem; right: 1.5rem; top: 1rem;
  color: rgba(81,23,193,.12);
}
.about-quote-mark svg { width: 100%; height: auto; }
@media (min-width: 760px) {
  .about-story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-story-card--wide, .about-quote-card { grid-column: 1 / -1; }
  .about-story-card--wide {
    display: grid; grid-template-columns: auto 1fr; align-items: start; gap: var(--sp-lg);
  }
  .about-story-card--wide .chip { margin-bottom: 0; }
}

/* ---------- Support, privacy and terms ---------- */
.crumbs + .policy-page,
.crumbs + .support-page { margin-top: calc(var(--crumb-h) * -1); }
.policy-page > section > .shell { max-width: 940px; }
.support-page > section > .shell { max-width: 1080px; }
.policy-hero,
.support-hero { padding-top: clamp(5.5rem, 4rem + 5vw, 8rem); }
.policy-hero { padding-bottom: 0; }
.policy-hero h1 { max-width: 16ch; }
.policy-hero > .shell > .lede { max-width: 48rem; }
.policy-highlights {
  display: grid; gap: var(--sp-md);
}
.policy-highlight {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; border-radius: var(--r-xl);
  background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-1); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.policy-highlight .chip { flex: none; margin: 0; }
.policy-highlight h2 {
  font-family: var(--sans); font-size: .95rem; line-height: 1.35; font-weight: 700;
}
.policy-highlight p { margin-top: .3rem; font-size: 13px; line-height: 1.6; color: var(--ink-variant); }
@media (min-width: 760px) {
  .policy-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.policy-content-band { padding-top: var(--sp-lg); }
.policy-content { display: grid; gap: var(--sp-lg); }
.policy-section-card {
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.35rem);
  border-radius: var(--r-xl); background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.92); box-shadow: var(--shadow-1);
}
.policy-section-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,209,236,.22));
}
.policy-section-card:nth-child(3n) {
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(232,221,255,.3));
}
.policy-section-card h2 { font-size: clamp(1.45rem, 1.25rem + .6vw, 1.85rem); }
.policy-section-card > * + * { margin-top: var(--sp-md); }
.policy-section-card p,
.policy-section-card li { font-size: 1rem; line-height: 1.75; color: var(--ink-variant); }
.policy-section-card a { color: var(--primary); text-underline-offset: .18em; }
.policy-section-card .checks { margin-top: var(--sp-md); }
.policy-section-card .table-wrap { margin-top: var(--sp-lg); background: rgba(255,255,255,.65); }

.support-hero .split { align-items: center; }
.support-hero h1 { max-width: 15ch; }
.support-summary {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
  border-radius: var(--r-2xl); background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.94); box-shadow: var(--shadow-float);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}
.support-summary h2 { margin-top: var(--sp-md); font-size: 1.65rem; }
.support-summary > p { margin-top: .65rem; color: var(--ink-variant); line-height: 1.7; }
.support-facts { display: grid; gap: .65rem; margin: var(--sp-lg) 0 0; padding: 0; list-style: none; }
.support-facts li { position: relative; padding-left: 1.5rem; font-size: 14px; color: var(--ink-variant); }
.support-facts li::before {
  content: ""; position: absolute; left: 0; top: .34rem; width: .8rem; height: .8rem;
  border-radius: 50%; background: var(--primary-fixed-dim);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.7);
}
.support-steps { display: grid; gap: var(--sp-md); margin-inline: 0; padding: 0; list-style: none; }
.support-steps .card { height: 100%; }
@media (min-width: 720px) {
  .support-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.support-reading-width { max-width: 980px; }
.contact-checklist {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  border-radius: var(--r-xl); background: linear-gradient(135deg, var(--butter), rgba(255,255,255,.9));
  border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-1);
}
.contact-checklist .chip { margin: 0; }
.contact-checklist p { color: var(--ink-variant); }

/* ---------- Methods and long-form guides ---------- */
.crumbs + section.method-hero {
  padding-top: clamp(5rem, 3.8rem + 4vw, 7rem);
}
.method-hero .split { align-items: center; }
.method-hero-visual { position: relative; padding-bottom: 2.25rem; }
.method-hero-visual .media {
  border-radius: var(--r-2xl); box-shadow: var(--shadow-float);
}
.method-hero-card, .method-hero-note {
  position: relative; z-index: 2; margin: -2.75rem 1.25rem 0;
}
.method-hero-card > .card,
.method-hero-card > .stack > .card:first-child,
.method-hero-note {
  border-color: rgba(255,255,255,.94); box-shadow: var(--shadow-3);
}
.method-hero-note {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: 1.15rem 1.25rem;
}
.method-hero-note .chip { margin: 0; }
.method-hero-note p { font-size: 14px; line-height: 1.55; }
.method-hero-note strong { color: var(--ink); }
.method-reading-shell { max-width: 1040px; }
.method-article { display: grid; gap: var(--sp-lg); }
.method-copy-section {
  position: relative;
  padding: clamp(1.6rem, 1.15rem + 1.8vw, 2.75rem);
  background: var(--glass-2); border: 1px solid rgba(255,255,255,.82);
  border-radius: var(--r-xl); box-shadow: var(--shadow-2);
}
.method-copy-section:nth-child(3n+2) {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,243,215,.42));
}
.method-copy-section:nth-child(3n) {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,221,255,.38));
}
.method-copy-section h2 { margin: 0 0 var(--sp-md); }
.method-copy-section h3 {
  margin: var(--sp-xl) 0 var(--sp-sm); padding-left: .9rem;
  border-left: 3px solid var(--primary-fixed-dim);
  font-size: clamp(1.15rem, 1.05rem + .45vw, 1.35rem);
}
.method-copy-section p {
  font-size: 1rem; line-height: 1.78; color: var(--ink-variant);
}
.method-copy-section p + p { margin-top: var(--sp-md); }
.method-copy-section a { color: var(--primary); text-underline-offset: .18em; }
.method-copy-section > .checks {
  margin-top: var(--sp-lg); padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,.7); border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
}
@media (max-width: 899px) {
  .method-hero-card, .method-hero-note { margin-inline: .75rem; }
}

/* ---------- Media ---------- */
.media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-3); background: var(--surface-high); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.ratio { position: relative; }
.ratio > img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ratio--4x3 { aspect-ratio: 4/3; }
.ratio--1x1 { aspect-ratio: 1/1; }
.ratio--3x4 { aspect-ratio: 3/4; }
.ratio--16x10 { aspect-ratio: 16/10; }

/* Collage / vision-board mosaic */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: .625rem; }
.mosaic > * { border-radius: var(--r-md); overflow: hidden; position: relative; background: var(--surface-high); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.m-a { grid-column: span 3; aspect-ratio: 4/5; }
.m-b { grid-column: span 3; aspect-ratio: 4/5; }
.m-c { grid-column: span 2; aspect-ratio: 1/1; }
.m-d { grid-column: span 2; aspect-ratio: 1/1; }
.m-e { grid-column: span 2; aspect-ratio: 1/1; }
.caption {
  position: absolute; inset: auto 0 0 0; padding: .75rem .875rem;
  background: linear-gradient(to top, rgba(43,42,47,.62), transparent);
  font-family: var(--serif); font-style: italic; font-size: 13px; color: #fff;
}
.note-tile {
  display: flex; flex-direction: column; justify-content: space-between; gap: .5rem;
  padding: 1rem; background: linear-gradient(135deg, var(--coral), var(--orchid));
}
.note-tile .quote { font-size: .95rem; line-height: 1.5; color: var(--on-secondary-container); }
.note-tile .quote { flex: 1; display: flex; align-items: center; }
/* Inside a mosaic the note tile is small and fixed-ratio — keep the quote from overflowing. */
.mosaic .note-tile { overflow: hidden; padding: .7rem .75rem; gap: .35rem; }
.mosaic .note-tile .quote { font-size: .78rem; line-height: 1.38; }
@media (min-width: 900px) { .mosaic .note-tile .quote { font-size: .85rem; } }
/* Large note tile (spans two columns) carries full-size type */
.mosaic .note-tile--lg { padding: 1.1rem 1.25rem; gap: .75rem;
  background: linear-gradient(150deg, var(--coral) 0%, var(--orchid) 55%, var(--primary-fixed) 100%); }
.mosaic .note-tile--lg .quote { font-size: 1rem; line-height: 1.5; }
@media (min-width: 900px) { .mosaic .note-tile--lg .quote { font-size: 1.25rem; line-height: 1.5; } }

/* ---------- Product hero imagery ---------- */
.hero-media { position: relative; }
.hero-media img { width: 100%; height: auto; display: block; }
/* transparent PNG/WebP art needs a soft glow behind it, not a card */
.hero-media::before {
  content: ""; position: absolute; inset: 6% 2% 10%; z-index: -1; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,209,236,.55), rgba(206,189,255,.38) 45%, transparent 72%);
  filter: blur(46px);
}
.hero-media--wide { max-width: 1100px; margin-inline: auto; }
.hero-media--square { max-width: 540px; margin-inline: auto; }
@media (min-width: 900px) { .hero-media--square { margin-inline: 0 0 0 auto; } }
.hero-media--device { max-width: min(100%, 44rem); margin-inline: auto; }
@media (min-width: 900px) { .hero-media--device { margin-inline: 0 0 0 auto; } }

.shot { position: relative; }
.shot img { width: 100%; height: auto; display: block; }
.shot::before {
  content: ""; position: absolute; inset: 8% 4% 12%; z-index: -1; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,207,207,.5), rgba(206,189,255,.32) 48%, transparent 74%);
  filter: blur(38px);
}
/* Portrait phone art is 9:16 while iPad/Mac art is 4:3 — cap the phone so a row of
   three device shots reads at roughly equal visual weight. */
.shot--tall img { max-width: 50%; margin-inline: auto; }
@media (max-width: 719px) { .shot--tall img { max-width: 62%; } }
.feature-row + .feature-row { margin-top: clamp(3rem, 2rem + 5vw, 5.5rem); }
.feature-row h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); }
/* Device app rows alternate with split--flip; equal columns keep screenshots the same
   width on the left or the right (wide-left would put flipped art in the wider track). */
@media (min-width: 900px) {
  .feature-row.split--wide-left { grid-template-columns: 1fr 1fr; }
}
.feature-row .shot { width: 100%; max-width: min(100%, 26rem); margin-inline: auto; }
.feature-row .shot--landscape { max-width: min(100%, 44rem); }
@media (min-width: 900px) { .feature-row .shot--landscape { max-width: 100%; } }
.feature-row .shot--tall img { max-width: 62%; }
@media (max-width: 899px) { .feature-row .shot--tall img { max-width: 58%; } }
.shot figcaption { margin-top: .875rem; text-align: center; font-size: 13px; color: var(--ink-muted); }
.shot figcaption strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: .15rem; }

/* Editorial plate: a centred photo used as punctuation between prose blocks.
   Capped at the source width so the low-res library art never upscales. */
.plate { margin: 0 auto; max-width: 512px; }
.plate img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-lg); box-shadow: var(--shadow-3);
}
.plate figcaption {
  margin-top: .875rem; text-align: center; font-family: var(--serif); font-style: italic;
  font-size: .95rem; line-height: 1.55; color: var(--ink-muted);
}

/* ---------- Device frames ---------- */
.devices { display: grid; gap: var(--sp-lg); align-items: end; }
@media (min-width: 900px) { .devices--trio { grid-template-columns: .85fr 1.3fr .85fr; gap: var(--sp-xl); } }

.mac {
  background: var(--glass-1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--r-xl);
  padding: .7rem .7rem .55rem; box-shadow: var(--shadow-float);
}
.mac .bar { display: flex; align-items: center; gap: .375rem; padding: .1rem .35rem .6rem; }
.mac .bar i { width: .5rem; height: .5rem; border-radius: 50%; display: block; }
.mac .bar i:nth-child(1) { background: var(--coral-dim); }
.mac .bar i:nth-child(2) { background: var(--surface-highest); }
.mac .bar i:nth-child(3) { background: var(--primary-fixed-dim); }
.mac .bar .t { margin-left: auto; margin-right: auto; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.mac .screen { background: var(--surface-lowest); border-radius: var(--r-md); padding: .875rem; overflow: hidden; }
.mac .foot { width: 5rem; height: 3px; border-radius: var(--r-full); background: var(--surface-dim); margin: .5rem auto 0; }

.phone {
  background: var(--glass-1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 2.25rem; padding: .55rem;
  box-shadow: var(--shadow-float);
}
.phone .screen {
  background: var(--surface-lowest); border-radius: 1.85rem; padding: 1.1rem 1rem 1.35rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem;
}
.phone .island { width: 3.75rem; height: .9rem; border-radius: var(--r-full); background: var(--inverse-surface); }

.tablet {
  background: var(--glass-1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--r-xl); padding: .6rem;
  box-shadow: var(--shadow-float);
}
.tablet .screen { background: var(--surface-lowest); border-radius: var(--r-lg); padding: 1rem; }

.aura-disc {
  width: 6.5rem; height: 6.5rem; border-radius: 50%; display: grid; place-items: center; margin-inline: auto;
  background: conic-gradient(from 210deg, var(--coral), var(--orchid), var(--primary-fixed-dim), var(--butter), var(--coral));
  box-shadow: 0 8px 26px -8px rgba(141,99,255,.4);
}
.aura-disc span { width: 4.5rem; height: 4.5rem; border-radius: 50%; background: var(--glass-3); display: grid; place-items: center; color: var(--primary); }
/* Brand mark on the closing CTA: a rounded app-icon tile, not a circle — a circular
   crop cuts the wordmark, and the pastel logo needs a white ring to read on the
   pastel card. */
.aura-disc--logo {
  display: inline-grid; width: auto; height: auto; border-radius: 1.4rem; background: none; padding: .4rem;
  background-color: rgba(255,255,255,.9);
  box-shadow: 0 12px 32px -10px rgba(43,42,47,.28), 0 0 0 1px rgba(255,255,255,.7);
}
.aura-disc--logo img {
  width: 5rem; height: 5rem; border-radius: 1.05rem; object-fit: cover; display: block;
}

/* Waveform (mechanical affirmation) */
.wave { display: flex; align-items: center; gap: 3px; height: 1.75rem; }
.wave i { display: block; width: 3px; border-radius: var(--r-full); background: linear-gradient(to top, var(--coral), var(--primary-bright)); }

/* Progress rail */
.rail { height: 5px; border-radius: var(--r-full); background: var(--surface-high); overflow: hidden; }
.rail span { display: block; height: 100%; border-radius: var(--r-full); background: linear-gradient(90deg, var(--coral), var(--primary-bright)); }

/* Identity card visual */
.idcard {
  border-radius: var(--r-lg); padding: 1.25rem; color: var(--ink-strong);
  background: linear-gradient(140deg, #fff 0%, var(--orchid) 58%, var(--primary-fixed) 100%);
  border: 1px solid rgba(255,255,255,.85); box-shadow: var(--shadow-2);
  display: flex; flex-direction: column; gap: .75rem; min-height: 11rem;
}
.idcard .who { font-family: var(--serif); font-size: 1.2rem; line-height: 1.35; }
.idcard .meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,248,255,.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(43,42,47,.05);
}
.site-head .bar { display: flex; align-items: center; gap: var(--sp-md); height: 4.5rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); flex: none; }
.brand .brand-mark {
  width: 2.1rem; height: 2.1rem; flex: none; border-radius: .6rem; object-fit: cover;
  box-shadow: 0 2px 8px -2px rgba(43, 42, 47, .18), inset 0 0 0 1px rgba(255, 255, 255, .5);
}
.site-foot .brand .brand-mark { width: 2rem; height: 2rem; }
.nav { display: none; margin-inline: auto; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: .125rem; padding: .25rem; background: rgba(246,242,249,.7); border-radius: var(--r-full); }
}
.nav a {
  padding: .5rem .9rem; border-radius: var(--r-full); text-decoration: none;
  font-size: 13px; font-weight: 600; color: var(--ink-variant); transition: background-color .2s ease, color .2s ease;
}
.nav a:hover { background: var(--surface-high); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--primary-fixed); color: var(--on-primary-fixed); }

/* ---- Dropdown groups ---- */
.nav .has-menu { position: relative; display: inline-flex; }
.nav .has-menu > a { display: inline-flex; align-items: center; gap: .3rem; }
.nav .caret { transition: transform .2s ease; opacity: .55; }
.nav .has-menu:hover .caret, .nav .has-menu:focus-within .caret { transform: rotate(180deg); }
.nav .menu {
  position: absolute; top: 100%; left: 0; z-index: 70; min-width: 15.5rem;
  margin-top: .5rem; padding: .4rem; display: grid; gap: .1rem;
  /* Solid, not glass: a nav menu must stay legible even where backdrop-filter is unavailable. */
  background: var(--surface-lowest);
  border: 1px solid var(--outline-variant); border-radius: var(--r-lg); box-shadow: var(--shadow-float);
  opacity: 0; visibility: hidden; transform: translateY(-.35rem);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
/* invisible bridge so the pointer can travel from trigger to menu */
.nav .menu::before { content: ""; position: absolute; left: 0; right: 0; top: -.5rem; height: .5rem; }
.nav .has-menu:hover .menu, .nav .has-menu:focus-within .menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav .menu a { display: block; padding: .55rem .75rem; border-radius: var(--r-sm); white-space: nowrap; }

/* ---- Mobile drawer groups ---- */
.drawer nav a.drawer-group {
  display: block; margin: .875rem 0 .25rem; padding: .35rem .75rem; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted);
}
.drawer nav a.drawer-group[aria-current="page"] { color: var(--primary); background: none; }
.drawer nav a.drawer-sub { padding-left: 1.5rem; }
.head-cta { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
@media (min-width: 1000px) { .head-cta { margin-left: 0; } }
.head-cta .btn--ghost { display: none; }
@media (min-width: 640px) { .head-cta .btn--ghost { display: inline-flex; } }
@media (min-width: 1000px) { .head-cta .btn--ghost { display: none; } }

.menu-btn {
  display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem;
  border-radius: var(--r-full); border: 1px solid var(--hairline); background: var(--glass-2); color: var(--ink);
  cursor: pointer;
}
@media (min-width: 1000px) { .menu-btn { display: none; } }
.menu-btn svg { width: 18px; height: 18px; }
.drawer { display: none; border-top: 1px solid rgba(43,42,47,.05); background: rgba(252,248,255,.96); }
.drawer[data-open="true"] { display: block; }
@media (min-width: 1000px) { .drawer { display: none !important; } }
.drawer nav { display: grid; gap: .125rem; padding-block: var(--sp-md); }
.drawer nav a { padding: .7rem .75rem; border-radius: var(--r-md); text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-variant); }
.drawer nav a[aria-current="page"] { background: var(--primary-fixed); color: var(--on-primary-fixed); }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: .5rem; z-index: 100;
  background: var(--inverse-surface); color: #fff; padding: .6rem 1rem; border-radius: var(--r-full); font-size: 13px;
}
.skip:focus { left: 1rem; }
:focus-visible { outline: 2px solid var(--primary-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------- Breadcrumb ---------- */
/* The crumb strip belongs to the hero, not the header: the following band is pulled
   up by exactly the crumb height so its gradient renders behind the crumbs. */
:root { --crumb-h: 3rem; }
.crumbs {
  position: relative; z-index: 2;
  height: var(--crumb-h); display: flex; align-items: center;
  font-size: 12px; color: var(--ink-muted);
}
.crumbs + section { margin-top: calc(var(--crumb-h) * -1); padding-top: var(--crumb-h); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs a { text-decoration: none; color: var(--ink-muted); }
.crumbs a:hover { color: var(--primary); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--outline-variant); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--glass-2); border: 1px solid rgba(255,255,255,.8); border-radius: var(--r-lg);
  padding: 1.1rem 1.35rem; box-shadow: var(--shadow-1);
}
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.0625rem; line-height: 1.5;
  color: var(--ink); display: flex; gap: 1rem; align-items: flex-start; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 1.25rem; height: 1.25rem; margin-top: .2rem; border-radius: 50%;
  background: var(--primary-fixed) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235117c1' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/.7rem no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; color: var(--ink-variant); font-size: 14px; line-height: 23px; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--r-xl); border: 1px solid var(--hairline); background: var(--glass-2); box-shadow: var(--shadow-1); }
table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 14px; }
caption { text-align: left; padding: 1.1rem 1.35rem .35rem; font-family: var(--serif); font-size: 1.125rem; color: var(--ink); }
th, td { text-align: left; padding: .9rem 1.35rem; border-bottom: 1px solid var(--hairline); vertical-align: top; }
thead th { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
tbody th { font-weight: 600; color: var(--ink); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
td { color: var(--ink-variant); }

/* ---------- Pricing ---------- */
.plan { display: flex; flex-direction: column; gap: var(--sp-md); }
.plan .price { font-family: var(--serif); font-size: 2.5rem; line-height: 1.15; color: var(--ink); }
.plan .price sub { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-muted); vertical-align: baseline; }
.plan--feature { border: 1px solid rgba(141,99,255,.28); box-shadow: var(--shadow-3); }
.plan .btn { width: 100%; margin-top: auto; }
.badge {
  position: absolute; top: -.7rem; right: 1.25rem;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--primary); color: #fff; padding: .3rem .7rem; border-radius: var(--r-full);
}

/* ---------- Closing CTA ---------- */
.closer {
  position: relative; overflow: hidden; text-align: center; border-radius: var(--r-2xl);
  padding: clamp(2.5rem, 1.5rem + 5vw, 4.5rem) var(--sp-lg);
  background: linear-gradient(135deg, var(--coral) 0%, var(--orchid) 48%, var(--primary-fixed) 100%);
}
.closer::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.65), transparent 62%);
  pointer-events: none;
}
.closer > * { position: relative; z-index: 1; }
.closer h2 { max-width: 20ch; margin-inline: auto; }
.closer p { max-width: 52ch; margin: var(--sp-md) auto 0; color: var(--ink-variant); }
.closer .cta-row { justify-content: center; margin-top: var(--sp-xl); }
.closer .small { margin-top: var(--sp-md); color: var(--on-secondary-container); }

/* ---------- Footer ---------- */
.site-foot { background: var(--surface-low); border-top: 1px solid var(--hairline); padding-block: var(--sp-2xl) var(--sp-lg); }
.foot-grid { display: grid; gap: var(--sp-xl); }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--sp-lg); } }
.foot-brand p { margin-top: var(--sp-md); font-size: 13px; line-height: 21px; color: var(--ink-muted); max-width: 32ch; }
.foot-social {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: var(--sp-md); color: var(--ink-muted); text-decoration: none;
  transition: color .2s ease, transform .18s ease;
}
.foot-social:hover { color: var(--primary); }
.foot-social:active { transform: scale(.96); }
.foot-social__icon { display: block; width: 1.25rem; height: 1.25rem; }
.foot-col h2 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: .875rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-col a { font-size: 13px; color: var(--ink-variant); text-decoration: none; }
.foot-col a:hover { color: var(--primary); }
.foot-base {
  margin-top: var(--sp-xl); padding-top: var(--sp-lg); border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: space-between; align-items: center;
  font-size: 12px; line-height: 19px; color: var(--ink-muted);
}
.foot-base p { max-width: 74ch; }

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.mb-lg { margin-bottom: var(--sp-lg); }
.flow > * + * { margin-top: var(--sp-md); }
.flow h3 { margin-top: var(--sp-xl); }
.flow h2 { margin-top: var(--sp-2xl); }
.flow > :first-child { margin-top: 0; }
.row { display: flex; align-items: center; gap: .75rem; }
.row--between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
