/* =====================================================
   APPEALR — Design System
   Superhuman-inspired: huge type, generous whitespace,
   mostly sharp corners, one strong accent.
===================================================== */

:root {
  /* Palette */
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --bg-dark: #0a0a0b;
  --bg-dark-2: #13131a;
  --fg: #0a0a0b;
  --fg-invert: #fafaf7;
  --muted: #6b6b73;
  --muted-dark: #8e8e96;
  --border: #ececea;
  --border-dark: #24242d;

  --accent: #00c36b;
  --accent-ink: #04341f;
  --accent-glow: rgba(0, 195, 107, 0.18);

  /* Typography */
  --ff-display: 'Inter Tight', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radii — mostly sharp, 8px on interactive only */
  --r-0: 0;
  --r-1: 6px;
  --r-2: 10px;
  --r-3: 16px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 620ms;

  /* Layout */
  --container: 1240px;
  --container-pad: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* =========== TYPOGRAPHY =========== */
.display {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
}
.display-sm {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.title-accent { color: var(--accent); }
.muted { color: var(--muted); }
.section-head { margin-bottom: var(--s-8); max-width: 880px; }
.section-head__kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.kicker--invert { color: var(--muted-dark); }
.section-head__title { margin: 0; }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--xl { padding: 22px 34px; font-size: 18px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px -12px var(--accent-glow);
}
.btn--primary:hover {
  background: #00d978;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 14px 36px -12px var(--accent-glow);
}
.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--outline:hover { background: var(--fg); color: var(--bg); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  padding: 10px 14px;
}
.btn--ghost:hover { color: var(--accent); }
.btn--link {
  background: transparent;
  padding: 14px 4px;
  color: var(--muted);
  border-radius: 0;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 4px;
}
.btn--link:hover { color: var(--fg); text-decoration-color: var(--fg); transform: none; }

/* =========== NAV =========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-scrolled { border-color: var(--border); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-6);
  align-items: center;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav__mark {
  display: inline-block;
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(0, 195, 107, 0.16);
  transition: transform var(--dur) var(--ease);
}
.nav__brand:hover .nav__mark { transform: rotate(22deg) scale(1.08); }
.nav__word { color: var(--fg); }
.nav__menu {
  justify-self: center;
  display: flex;
  gap: var(--s-7);
  font-weight: 500;
  font-size: 15px;
}
.nav__menu a { color: var(--muted); transition: color var(--dur-fast) var(--ease); }
.nav__menu a:hover { color: var(--fg); }
.nav__menu-cta { display: none; }
.nav__cta { display: inline-flex; gap: var(--s-2); align-items: center; }

@media (max-width: 780px) {
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
}

/* =========== HERO =========== */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 140px) 0 clamp(80px, 10vw, 160px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0,195,107,0.09), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(247,247,245,1), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-7);
}
.dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(0,195,107,0.16);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,195,107,0.16); }
  50%       { box-shadow: 0 0 0 10px rgba(0,195,107,0.04); }
}
.hero__title { margin-bottom: var(--s-6); }
.hero__sub {
  max-width: 640px;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--muted);
  margin: 0 0 var(--s-7);
  line-height: 1.45;
}
.hero__cta {
  display: inline-flex;
  gap: var(--s-4);
  align-items: center;
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.hero__microproof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}
.hero__badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,195,107,0.14);
  color: var(--accent);
  font-weight: 700;
}
.stars { color: #f5a623; letter-spacing: 2px; }

/* Timeline — cost of doing nothing */
.timeline {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.timeline__list {
  display: grid;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--bg);
}
.timeline__row {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  align-items: center;
  gap: var(--s-5);
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background var(--dur) var(--ease);
}
.timeline__row:last-child { border-bottom: 0; }
.timeline__row:hover { background: var(--bg-alt); }
.timeline__row--bad { background: rgba(230, 70, 60, 0.04); }
.timeline__row--bad:hover { background: rgba(230, 70, 60, 0.08); }
.timeline__day {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.timeline__what strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.timeline__what span { color: var(--muted); font-size: 14px; }
.timeline__cost {
  text-align: right;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
  white-space: nowrap;
}
.timeline__cost--ok { color: var(--accent); }
.timeline__cost--bad { color: #d2382a; }
.timeline__note {
  text-align: center;
  margin-top: var(--s-5);
  color: var(--muted);
  font-size: 13px;
}
.timeline__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-6);
}
@media (max-width: 720px) {
  .timeline__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .timeline__cost { text-align: left; }
}

/* Proof outcome badge */
.proof__outcome {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: var(--s-4);
}
.proof__outcome--win {
  background: rgba(0,195,107,0.14);
  color: var(--accent-ink);
}
.hero__visual {
  position: relative;
  margin-top: clamp(60px, 8vw, 100px);
  display: flex;
  justify-content: center;
}
.hero__img {
  width: 100%;
  max-width: 1080px;
  border-radius: var(--r-3);
  box-shadow:
    0 30px 80px -40px rgba(10,10,11,0.35),
    0 10px 24px -12px rgba(10,10,11,0.15);
  transform: translateY(0);
  animation: float 8s ease-in-out infinite;
}
.hero__glow {
  position: absolute;
  inset: auto 10% -10% 10%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(0,195,107,0.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* =========== TRUSTBAR =========== */
.trustbar {
  border-block: 1px solid var(--border);
  padding: var(--s-6) 0;
  overflow: hidden;
  background: var(--bg);
}
.trustbar .container { display: flex; align-items: center; gap: var(--s-6); }
.trustbar__label {
  white-space: nowrap;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.trustbar__track {
  display: flex;
  gap: var(--s-7);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trustbar__row {
  display: flex;
  gap: var(--s-7);
  flex-shrink: 0;
  animation: slide 32s linear infinite;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* =========== PROBLEM =========== */
.problem,
.how,
.grounds,
.pricing,
.proof,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
.problem { padding: clamp(80px, 10vw, 140px) 0; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.problem__card {
  background: var(--bg-alt);
  padding: var(--s-7) var(--s-6);
  border-radius: var(--r-2);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px -20px rgba(10,10,11,0.18);
}
.problem__amount {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: var(--s-3);
  line-height: 1;
}
.problem__card p { color: var(--muted); margin: 0; font-size: 16px; }

@media (max-width: 820px) {
  .problem__grid { grid-template-columns: 1fr; }
}

/* =========== HOW IT WORKS =========== */
.how { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-alt); }
.how__steps {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}
.how__step {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.how__step:nth-child(even) {
  grid-template-areas: 'visual copy';
}
.how__step:nth-child(even) .how__visual { grid-area: visual; order: -1; }
.how__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 90px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: var(--s-4);
}
.how__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 var(--s-4);
}
.how__desc {
  color: var(--muted);
  font-size: 18px;
  max-width: 480px;
  margin: 0;
}
.how__visual {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 30px 80px -40px rgba(10,10,11,0.3),
    0 10px 24px -12px rgba(10,10,11,0.12);
}
.how__visual img { width: 100%; height: auto; display: block; }

@media (max-width: 820px) {
  .how__step,
  .how__step:nth-child(even) { grid-template-columns: 1fr; }
  .how__step:nth-child(even) .how__visual { order: 0; }
}

/* =========== SHOWCASE (dark) =========== */
.showcase {
  background: var(--bg-dark);
  color: var(--fg-invert);
  padding: clamp(100px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.showcase::after {
  content: '';
  position: absolute;
  inset: -20% -20% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0,195,107,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.showcase__copy .section-head__kicker { color: var(--muted-dark); }
.feature-list {
  margin: var(--s-7) 0;
  display: grid;
  gap: var(--s-3);
}
.feature-list li {
  font-size: 17px;
  color: var(--fg-invert);
  display: flex;
  gap: 12px;
  align-items: center;
}
.tick {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(0,195,107,0.16);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0;                      /* hide unicode ✓ fallback */
  flex-shrink: 0;
  position: relative;
}
.tick::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
}
.small-note {
  margin-top: var(--s-5);
  font-size: 13px;
  color: var(--muted-dark);
  max-width: 420px;
}
.showcase__art img {
  width: 100%;
  border-radius: var(--r-3);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.8);
}

@media (max-width: 860px) {
  .showcase__grid { grid-template-columns: 1fr; }
}

/* =========== GROUNDS =========== */
.grounds { padding: clamp(80px, 10vw, 140px) 0; }
.grounds__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.ground-card {
  padding: var(--s-6);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.ground-card:hover {
  transform: translateY(-4px);
  border-color: var(--fg);
  box-shadow: 0 20px 40px -24px rgba(10,10,11,0.18);
}
.ground-card__tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
  font-weight: 600;
}
.ground-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.02em;
}
.ground-card p { color: var(--muted); margin: 0; font-size: 15px; }

@media (max-width: 860px) { .grounds__grid { grid-template-columns: 1fr; } }

/* =========== PRICING =========== */
.pricing { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-alt); }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--bg);
  padding: var(--s-8) var(--s-7);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
  border-color: var(--fg);
  box-shadow: 0 30px 60px -30px rgba(10,10,11,0.2);
}
.price-card__ribbon {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card header h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4);
}
.price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.price__sym { font-size: 40px; vertical-align: top; position: relative; top: 10px; margin-right: 4px; color: var(--muted); }
.price__cycle { font-size: 20px; color: var(--muted); font-weight: 500; margin-left: 6px; }
.price__unit { color: var(--muted); font-size: 14px; margin: var(--s-2) 0 var(--s-6); }
.price-list { display: grid; gap: var(--s-3); margin: 0 0 var(--s-6); font-size: 15px; color: var(--fg); }
.price-list li { display: flex; gap: 12px; align-items: center; }
.price-list .tick { background: rgba(0,195,107,0.14); }
.pricing__note {
  text-align: center;
  margin-top: var(--s-7);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) { .pricing__grid { grid-template-columns: 1fr; } }

/* =========== PROOF =========== */
.proof { padding: clamp(80px, 10vw, 140px) 0; }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.proof__card {
  margin: 0;
  padding: var(--s-6);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  transition: transform var(--dur) var(--ease);
}
.proof__card:hover { transform: translateY(-4px); }
.proof__card blockquote {
  margin: 0 0 var(--s-4);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.proof__card figcaption { color: var(--muted); font-size: 14px; }
.proof__note { color: var(--muted); font-size: 12px; text-align: center; margin-top: var(--s-6); }

@media (max-width: 860px) { .proof__grid { grid-template-columns: 1fr; } }

/* =========== FAQ =========== */
.faq { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-alt); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: var(--s-2); }
.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  transition: border-color var(--dur) var(--ease);
}
.faq__item[open] { border-color: var(--fg); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) var(--s-6);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 56px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--muted);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
.faq__body { padding: 0 var(--s-6) var(--s-6); color: var(--muted); font-size: 16px; line-height: 1.6; }
.faq__body p { margin: 0; }

/* =========== FINAL CTA =========== */
.final {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg-dark);
  color: var(--fg-invert);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,195,107,0.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.final__title { margin: 0 auto var(--s-5); max-width: 900px; position: relative; }
.final__sub { color: var(--muted-dark); margin: 0 0 var(--s-7); font-size: 18px; position: relative; }
.final__cta { position: relative; margin-bottom: var(--s-6); }
.final__legal { color: var(--muted-dark); font-size: 12px; max-width: 520px; margin: 0 auto; position: relative; }

/* =========== FOOTER =========== */
.footer {
  padding: var(--s-9) 0 var(--s-6);
  background: var(--bg-dark);
  color: var(--fg-invert);
  border-top: 1px solid var(--border-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--border-dark);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer__brand .nav__word { color: var(--fg-invert); }
.footer__brand p { color: var(--muted-dark); font-size: 14px; margin: 0; max-width: 280px; }
.footer h4 { font-family: var(--ff-display); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; margin: 0 0 var(--s-4); }
.footer ul { display: grid; gap: var(--s-3); font-size: 14px; }
.footer ul a { color: var(--muted-dark); transition: color var(--dur-fast) var(--ease); }
.footer ul a:hover { color: var(--fg-invert); }
.footer__base { color: var(--muted-dark); font-size: 12px; }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* =========== SCROLL REVEAL =========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =====================================================
   WIZARD (start.html) — the appeal funnel
===================================================== */

.wiz-body {
  background: var(--bg-alt);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.wiz-nav {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.wiz-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}

.wiz-progress {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--s-6) var(--container-pad) 0;
  width: 100%;
}
.wiz-progress__bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.wiz-progress__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.5s var(--ease);
  box-shadow: 0 0 0 2px rgba(0,195,107,0.12);
}
.wiz-progress__label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.wiz {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) var(--container-pad);
  position: relative;
  overflow: hidden;
}

.wiz-step {
  display: none;
  width: 100%;
  max-width: 720px;
  animation: wizIn 0.45s var(--ease);
}
.wiz-step.is-active { display: block; }
.wiz-inner--wide { max-width: 1100px; width: 100%; }

@keyframes wizIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.wiz-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.wiz-warm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s-5);
  padding: 10px 14px;
  background: rgba(0,195,107,0.07);
  border: 1px solid rgba(0,195,107,0.18);
  border-radius: 12px;
  color: var(--fg);
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 640px;
}
.wiz-warm::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,195,107,0.2);
}
.wiz-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 var(--s-4);
  color: var(--fg);
}
.wiz-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 var(--s-7);
  max-width: 560px;
  line-height: 1.5;
}

/* Options (big radio cards) */
.wiz-options {
  display: grid;
  gap: 12px;
}
.wiz-option {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  text-align: left;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2);
  padding: 18px 20px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
  width: 100%;
}
.wiz-option:hover:not([disabled]) {
  border-color: var(--fg);
  transform: translateY(-1px);
}
.wiz-option.is-selected {
  border-color: var(--accent);
  background: rgba(0,195,107,0.04);
  box-shadow: 0 0 0 3px rgba(0,195,107,0.14);
}
.wiz-option[disabled] { opacity: 0.55; cursor: not-allowed; }
.wiz-option__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0,195,107,0.08);
  border: 1px solid rgba(0,195,107,0.18);
  border-radius: var(--r-2);
  color: var(--accent);
}
.wiz-option__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wiz-option.is-selected .wiz-option__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.wiz-option__body { display: grid; gap: 2px; }
.wiz-option__title {
  font-weight: 700;
  font-family: var(--ff-display);
  letter-spacing: -0.01em;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wiz-option__desc {
  font-size: 14px;
  color: var(--muted);
}
.wiz-pill {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Tabs (step 2) */
.wiz-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: var(--s-5);
}
.wiz-tab {
  background: transparent;
  border: 0;
  padding: 10px 16px;
  font: 500 14px/1 var(--ff-body);
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.wiz-tab.is-active { background: var(--fg); color: var(--bg); }
.wiz-tab-panel { display: none; }
.wiz-tab-panel.is-active { display: block; }

/* Upload drop zone */
.wiz-drop {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: clamp(32px, 6vw, 64px) var(--s-5);
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--r-3);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.wiz-drop:hover {
  border-color: var(--accent);
  background: rgba(0,195,107,0.03);
}
.wiz-drop__icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  color: var(--fg);
}
.wiz-drop__label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.wiz-drop__hint { font-size: 13px; color: var(--muted); }
.wiz-drop__preview {
  display: grid;
  gap: 12px;
  padding: var(--s-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
}
.wiz-drop__preview img {
  max-height: 260px;
  width: auto;
  border-radius: var(--r-1);
  justify-self: center;
}

/* Manual entry fields */
.wiz-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wiz-field { display: grid; gap: 6px; }
.wiz-field--full { grid-column: 1 / -1; }
.wiz-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.wiz-field input {
  font: 500 16px/1.3 var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.wiz-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,195,107,0.14);
}

@media (max-width: 560px) {
  .wiz-field-grid { grid-template-columns: 1fr; }
}

/* Questionnaire */
.wiz-qs { display: grid; gap: var(--s-5); }
.wiz-q { display: grid; gap: 10px; }
.wiz-q > label {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wiz-q__num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-ink);
  background: rgba(0,195,107,0.14);
  border-radius: 999px;
}
.wiz-q textarea {
  font: 400 15px/1.55 var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  resize: vertical;
  min-height: 80px;
}
.wiz-q textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,195,107,0.14);
}
.wiz-seg {
  display: inline-flex;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
  flex-wrap: nowrap;
}
.wiz-seg--wrap { flex-wrap: wrap; }
.wiz-seg button {
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font: 500 14px/1 var(--ff-body);
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.wiz-seg button:hover { color: var(--fg); }
.wiz-seg button.is-active {
  background: var(--fg);
  color: var(--bg);
}

/* Preview step */
.wiz-preview {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
.wiz-preview__letter {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
}
.letter {
  padding: var(--s-7);
  font: 400 14px/1.55 Georgia, 'Times New Roman', serif;
  color: var(--fg);
  position: relative;
  min-height: 460px;
}
.letter__meta {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.letter__meta-right { text-align: right; }
.letter p { margin: 0 0 12px; }
.letter__grounds { margin: 8px 0 0 20px; padding: 0; }
.letter__grounds li { margin-bottom: 8px; }
.letter__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

.wiz-preview__side { display: grid; gap: var(--s-4); }
.wiz-preview__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-5);
}
.wiz-preview__card h3 {
  margin: 0 0 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.wiz-grounds { display: grid; gap: 10px; font-size: 14px; }
.wiz-grounds li { display: flex; gap: 10px; align-items: center; }
.wiz-grounds .tick { background: rgba(0,195,107,0.14); color: var(--accent); }

.wiz-preview__pay {
  background: var(--fg);
  color: var(--fg-invert);
  border-color: var(--fg);
}
.wiz-preview__pay h3 { color: var(--fg-invert); }
.wiz-pay-toggle {
  display: grid;
  gap: 8px;
  margin-bottom: var(--s-4);
}
.wiz-pay-toggle button {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  text-align: left;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.16);
  color: var(--fg-invert);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.wiz-pay-toggle button:hover { border-color: rgba(255,255,255,0.36); }
.wiz-pay-toggle button.is-active {
  border-color: var(--accent);
  background: rgba(0,195,107,0.12);
}
.wiz-pay-toggle__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wiz-pay-toggle__badge {
  font-size: 10px;
  background: rgba(0,195,107,0.22);
  color: var(--accent);
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}
.wiz-pay-toggle__price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--fg-invert);
}
.wiz-pay-toggle__cycle { font-size: 13px; color: var(--muted-dark); font-weight: 500; margin-left: 2px; }
.wiz-pay-toggle__unit { font-size: 12px; color: var(--muted-dark); }
.wiz-pay__legal {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--muted-dark);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .wiz-preview { grid-template-columns: 1fr; }
  .letter { padding: var(--s-5); }
}

/* Footer nav */
.wiz-foot {
  position: sticky;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-top: 1px solid var(--border);
  padding: 14px var(--container-pad) 10px;
}
.wiz-foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.wiz-foot__spacer { flex: 1; }
.wiz-foot__legal {
  max-width: var(--container);
  margin: 8px auto 0;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
.btn[hidden],
[hidden] { display: none !important; }

/* ---------- Acknowledgement toast ---------- */
.wiz-toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translate(-50%, -8px);
  z-index: 80;
  background: var(--fg);
  color: var(--fg-invert);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px -12px rgba(10,10,11,0.3);
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.wiz-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Drafting overlay (4 → 5) ---------- */
.wiz-drafting {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.wiz-drafting.is-visible { opacity: 1; }
.wiz-drafting__inner {
  text-align: center;
  max-width: 480px;
  padding: var(--s-6);
}
.wiz-drafting__orb {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto var(--s-5);
  background: radial-gradient(circle at 30% 30%, rgba(0,195,107,0.9), rgba(0,195,107,0.2) 60%, rgba(0,195,107,0) 80%);
  box-shadow: 0 0 0 12px rgba(0,195,107,0.08), 0 0 40px rgba(0,195,107,0.4);
  animation: draftingOrb 1.6s ease-in-out infinite;
}
@keyframes draftingOrb {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.wiz-drafting__title {
  margin: 0 0 var(--s-5);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.025em;
}
.wiz-drafting__lines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}
.wiz-drafting__lines li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}
.wiz-drafting__lines li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--border);
  transition: background 0.3s var(--ease);
}
.wiz-drafting__lines li.is-shown {
  opacity: 1;
  transform: none;
  color: var(--fg);
}
.wiz-drafting__lines li.is-shown::before { background: var(--accent); }

/* ---------- Step-5 paywall tweaks ---------- */
.wiz-pay__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.wiz-pay__support {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted-dark);
  text-align: center;
}

/* ---------- Footer separator + link ---------- */
.wiz-foot__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wiz-foot__sep { color: var(--border); }
.wiz-foot__legal a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.wiz-foot__legal a:hover { text-decoration-color: var(--fg); }

/* =====================================================
   LEGAL PAGES
===================================================== */
.legal-body { background: var(--bg); min-height: 100svh; display: flex; flex-direction: column; }
.legal-nav {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
}
.legal-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
}
.legal { flex: 1; padding: clamp(48px, 8vw, 120px) 0; }
.legal__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--container-pad); }
.legal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px; font-weight: 600;
  color: var(--muted); margin: 0 0 var(--s-3);
}
.legal__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 var(--s-4);
}
.legal__meta {
  color: var(--muted); font-size: 14px;
  margin: 0 0 var(--s-7);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}
.legal__toc {
  background: var(--bg-alt);
  padding: var(--s-5);
  border-radius: var(--r-2);
  margin-bottom: var(--s-7);
}
.legal__toc-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.legal__toc ol { padding-left: 20px; display: grid; gap: 4px; }
.legal__toc a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.legal__toc a:hover { text-decoration-color: var(--fg); }
.legal__body { font-size: 17px; line-height: 1.65; color: var(--fg); }
.legal__body h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: var(--s-7) 0 var(--s-3);
  scroll-margin-top: 80px;
}
.legal__body h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: var(--s-5) 0 var(--s-2);
}
.legal__body p { margin: 0 0 var(--s-4); }
.legal__body ul, .legal__body ol { margin: 0 0 var(--s-4); padding-left: 22px; }
.legal__body ul { list-style: disc; }
.legal__body ol { list-style: decimal; }
.legal__body li { margin-bottom: 6px; }
.legal__body li::marker { color: var(--muted); }
.legal__body strong { font-weight: 700; }
.legal__body a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.legal__body a:hover { text-decoration-thickness: 2px; }
.legal__callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-1);
  margin: var(--s-5) 0;
  font-size: 15px;
}
.legal__callout p:last-child { margin-bottom: 0; }
.legal-foot {
  background: var(--bg-dark);
  color: var(--fg-invert);
  padding: var(--s-7) 0 var(--s-5);
  text-align: center;
  font-size: 13px;
}
.legal-foot__links {
  display: flex; justify-content: center;
  gap: var(--s-4); flex-wrap: wrap;
  margin-bottom: var(--s-4);
}
.legal-foot__links a {
  color: var(--muted-dark);
  transition: color var(--dur-fast) var(--ease);
}
.legal-foot__links a:hover { color: var(--fg-invert); }
.legal-foot p { color: var(--muted-dark); margin: 0; }

/* =====================================================
   MOBILE NAV (hamburger)
===================================================== */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--fg);
  padding: 0;
}
.nav__toggle span {
  position: relative;
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  transition: background 150ms var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: currentColor;
  transition: transform 250ms var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }
.nav[data-menu-open="true"] .nav__toggle span { background: transparent; }
.nav[data-menu-open="true"] .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav[data-menu-open="true"] .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav__toggle { display: inline-flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: var(--s-3); }
  .nav__cta { display: none; }
  .nav__menu {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    height: calc(100svh - 72px);
    background: var(--bg);
    display: none;
    flex-direction: column;
    padding: var(--s-6) var(--container-pad);
    gap: var(--s-3);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    overflow-y: auto;
    justify-self: stretch;
    z-index: 40;
  }
  .nav[data-menu-open="true"] .nav__menu {
    display: flex !important;
  }
  .nav__menu a { color: var(--fg); padding: 10px 0; }
  .nav__menu-cta { display: block; margin-top: var(--s-4); }
  .nav__menu-cta .btn { width: 100%; justify-content: center; padding: 16px 22px; font-size: 16px; }
  body.is-nav-open { overflow: hidden; }
}

/* =====================================================
   COOKIE BANNER
===================================================== */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 70;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-dark);
  color: var(--fg-invert);
  border-radius: var(--r-3);
  padding: var(--s-5);
  box-shadow: 0 24px 60px -20px rgba(10,10,11,0.5);
  display: grid;
  gap: var(--s-3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.cookie.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie__text { font-size: 14px; line-height: 1.55; color: var(--fg-invert); margin: 0; }
.cookie__text a { color: var(--accent); text-decoration: underline; }
.cookie__cta { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.cookie__cta .btn { padding: 10px 16px; font-size: 14px; }
.cookie__cta .btn--ghost { color: var(--muted-dark); }
.cookie__cta .btn--ghost:hover { color: var(--fg-invert); }

/* =====================================================
   EXIT-INTENT BOTTOM SHEET
===================================================== */
.exit-intent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 70;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: flex-start;
  box-shadow: 0 30px 80px -30px rgba(10,10,11,0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.exit-intent.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.exit-intent__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.exit-intent__close:hover { background: var(--bg-alt); color: var(--fg); }
.exit-intent__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,195,107,0.12);
  color: var(--accent);
  flex-shrink: 0;
}
.exit-intent__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.exit-intent__body { display: grid; gap: 10px; }
.exit-intent__title {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  padding-right: 32px;
}
.exit-intent__sub {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.exit-intent__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 4px;
}
.exit-intent__form input {
  font: 500 15px/1.3 var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.exit-intent__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,195,107,0.14);
}
.exit-intent__form .btn { padding: 10px 16px; font-size: 14px; }
.exit-intent__fine { margin: 0; font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.exit-intent__fine a { color: var(--fg); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.exit-intent__done {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.exit-intent[data-state="sent"] .exit-intent__form,
.exit-intent[data-state="sent"] .exit-intent__fine,
.exit-intent[data-state="sent"] .exit-intent__sub { display: none; }
.exit-intent[data-state="sent"] .exit-intent__done { display: inline-flex; }
.exit-intent[data-state="sent"] .exit-intent__done[hidden] { display: inline-flex !important; }

@media (max-width: 520px) {
  .exit-intent { grid-template-columns: 1fr; padding: var(--s-4); }
  .exit-intent__icon { display: none; }
  .exit-intent__form { grid-template-columns: 1fr; }
}

/* =====================================================
   ADMIN DASHBOARD
===================================================== */
.admin-body {
  background: var(--bg-alt);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.admin-nav {
  background: var(--bg-dark);
  color: var(--fg-invert);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.admin-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg-invert);
  letter-spacing: -0.02em;
}
.admin-nav__brand .nav__mark { width: 14px; height: 14px; }
.admin-nav__pill {
  background: rgba(0,195,107,0.2);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.admin-nav__right {
  display: inline-flex;
  gap: var(--s-3);
  align-items: center;
  color: var(--muted-dark);
  font-size: 13px;
}
.admin-nav__right a { color: var(--muted-dark); }
.admin-nav__right a:hover { color: var(--fg-invert); }

.admin {
  flex: 1;
  padding: clamp(24px, 4vw, 48px) var(--container-pad);
}
.admin__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.admin__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 var(--s-2);
}
.admin__sub { color: var(--muted); font-size: 14px; margin: 0 0 var(--s-7); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.admin-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-5);
}
.admin-stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.admin-stat__value {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  color: var(--fg);
}
.admin-stat__value .admin-stat__unit { font-size: 16px; color: var(--muted); margin-left: 4px; font-weight: 500; }
.admin-stat__delta {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.admin-stat__delta--up { color: var(--accent); }
.admin-stat__delta--down { color: #b13a30; }

.admin-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.admin-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-5);
}
.admin-card h3 {
  margin: 0 0 var(--s-4);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.admin-activity {
  display: grid;
  gap: 2px;
}
.admin-activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.admin-activity-row:last-child { border-bottom: 0; }
.admin-activity__badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,195,107,0.12);
  color: var(--accent);
  flex-shrink: 0;
}
.admin-activity__badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.admin-activity__text { color: var(--fg); }
.admin-activity__meta { color: var(--muted); font-size: 12.5px; white-space: nowrap; }

/* Admin gate (password prompt) */
.admin-gate {
  flex: 1;
  display: grid;
  place-items: center;
  padding: var(--s-9) var(--container-pad);
}
.admin-gate__card {
  width: 100%;
  max-width: 400px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-6);
}
.admin-gate__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-2);
}
.admin-gate__sub { color: var(--muted); font-size: 14px; margin: 0 0 var(--s-4); }
.admin-gate__form { display: grid; gap: var(--s-3); }
.admin-gate__form input {
  font: 500 16px/1.3 var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.admin-gate__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,195,107,0.14);
}
.admin-gate__error {
  color: #b13a30;
  font-size: 13px;
  margin: 0;
  display: none;
}
.admin-gate[data-error="true"] .admin-gate__error { display: block; }

@media (max-width: 960px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   404 / 500 ERROR PAGES
===================================================== */
.error-body {
  background: var(--bg);
  min-height: 100svh;
  display: flex; flex-direction: column;
}
.error {
  flex: 1;
  display: grid; place-items: center;
  padding: var(--s-9) var(--container-pad);
  text-align: center;
}
.error__code {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(80px, 16vw, 180px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin: 0 0 var(--s-4);
}
.error__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
}
.error__sub { color: var(--muted); max-width: 460px; margin: 0 auto var(--s-6); }
.error__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* =====================================================
   CONTACT page specifics
===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  padding: var(--s-5);
}
.contact-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.contact-card p { font-size: 15px; margin: 0; color: var(--muted); }
.contact-card a {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Re-usable icon helper
===================================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm svg { stroke-width: 2; }
.icon--lg { width: 32px; height: 32px; }
.icon--xl { width: 48px; height: 48px; }
.icon--accent { color: var(--accent); }

/* =====================================================
   SIGN-IN PAGE
===================================================== */
.signin-body {
  background: var(--bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.signin {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 96px) var(--container-pad);
}
.signin__card {
  width: 100%;
  max-width: 440px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 60px -30px rgba(10,10,11,0.12);
}
.signin__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,195,107,0.12);
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.signin__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.signin__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.signin__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 var(--s-3);
}
.signin__sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 var(--s-6);
}
.signin__form {
  display: grid;
  gap: var(--s-3);
}
.signin__field {
  display: grid;
  gap: 6px;
}
.signin__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.signin__field input {
  font: 500 16px/1.3 var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.signin__field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,195,107,0.14);
}
.signin__fine {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin: var(--s-4) 0 0;
}
.signin__fine a { color: var(--fg); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.signin__divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted);
  font-size: 12px;
  margin: var(--s-5) 0 var(--s-4);
}
.signin__divider::before,
.signin__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.signin__sent {
  display: none;
  text-align: center;
}
.signin[data-state="sent"] .signin__form { display: none; }
.signin[data-state="sent"] .signin__sent { display: block; }
.signin[data-state="sent"] .signin__title,
.signin[data-state="sent"] .signin__sub,
.signin[data-state="sent"] .signin__eyebrow { display: none; }
.signin__sent-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3);
}
.signin__sent p { color: var(--muted); margin: 0 0 var(--s-3); font-size: 15px; line-height: 1.55; }

/* =====================================================
   ACCOUNT DASHBOARD
===================================================== */
.acct-body {
  background: var(--bg-alt);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.acct-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.acct-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.acct-nav__right {
  display: inline-flex;
  gap: var(--s-3);
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.acct-nav__right strong { color: var(--fg); font-weight: 600; }
.acct-nav__right .icon { color: var(--accent); }

.acct {
  flex: 1;
  padding: clamp(32px, 5vw, 64px) var(--container-pad) var(--s-9);
}
.acct__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.acct-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.acct-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-6);
}
.acct-card__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 var(--s-3);
}
.acct-card h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 var(--s-4);
}
.acct-credits {
  background: var(--fg);
  color: var(--fg-invert);
  border-color: var(--fg);
}
.acct-credits .acct-card__label { color: var(--muted-dark); }
.acct-credits__number {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--accent);
  margin: 0 0 var(--s-2);
}
.acct-credits__unit {
  color: var(--muted-dark);
  font-size: 14px;
  margin: 0 0 var(--s-5);
}
.acct-credits__cta { display: flex; gap: 10px; flex-wrap: wrap; }

.acct-welcome p { color: var(--muted); margin: 0 0 var(--s-3); font-size: 15px; line-height: 1.55; }
.acct-welcome__links { display: grid; gap: 2px; margin-top: var(--s-4); }
.acct-welcome__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-left: -14px;
  border-radius: 10px;
  color: var(--fg);
  font-weight: 500;
  font-size: 14.5px;
  transition: background var(--dur-fast) var(--ease);
}
.acct-welcome__links a:hover { background: var(--bg-alt); }
.acct-welcome__links .icon { color: var(--accent); }

.acct-section {
  margin-bottom: var(--s-7);
}
.acct-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s-4);
  gap: var(--s-4);
}
.acct-section__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
}
.acct-section__meta {
  color: var(--muted);
  font-size: 13px;
}

.acct-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
}
.acct-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: var(--s-4);
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.acct-row:last-child { border-bottom: 0; }
.acct-row:hover { background: var(--bg-alt); }
.acct-row__title {
  font-weight: 600;
  font-family: var(--ff-display);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 2px;
}
.acct-row__sub { color: var(--muted); font-size: 13px; margin: 0; }
.acct-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.acct-status--paid { background: rgba(0,195,107,0.14); color: var(--accent-ink); }
.acct-status--delivered { background: rgba(0,195,107,0.14); color: var(--accent-ink); }
.acct-status--draft { background: var(--bg-alt); color: var(--muted); }
.acct-status--won { background: rgba(0,195,107,0.2); color: var(--accent-ink); }
.acct-status--lost { background: rgba(230, 70, 60, 0.12); color: #b13a30; }
.acct-empty {
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.acct-empty .icon { color: var(--accent); margin-bottom: var(--s-3); }

.acct-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.acct-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 500 13px/1 var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.acct-action:hover { border-color: var(--fg); }
.acct-action .icon { width: 14px; height: 14px; color: var(--accent); }

@media (max-width: 820px) {
  .acct-hero { grid-template-columns: 1fr; }
  .acct-row { grid-template-columns: 1fr auto; gap: 8px; }
  .acct-row > *:nth-child(3) { grid-column: 1 / -1; justify-self: start; }
  .acct-row > *:nth-child(4) { grid-column: 1 / -1; }
}
