:root {
  --accent: #047857;
  --accent-2: #10b981;
  --ink: #0b0f0c;
  --ink-2: #2a2f2c;
  --cream: #f6f1e4;
  --paper: #faf7ef;
  --line: #e7dfc9;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01','ss02','cv11';
}
a { color: inherit; }
h1,h2,h3,h4 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; line-height: 1.55; }
.mono { font-family: var(--mono); font-feature-settings: 'ss01','zero'; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================= GLOBAL NAV ============================== */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 17px; }
.logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  display: grid; place-items: center; color: #fff;
  background: var(--accent); font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1;
}
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--ink-2); white-space: nowrap; }
.nav-links a { white-space: nowrap; }
.nav-cta { white-space: nowrap; }
.nav-cta a { white-space: nowrap; }
.nav-links a { text-decoration: none; opacity: 0.85; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em;
  padding: 11px 18px; border-radius: 8px;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(4,120,87,0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(11,15,12,0.15); }
.btn-ghost:hover { background: rgba(11,15,12,0.04); }
.btn-lg { padding: 14px 22px; font-size: 15.5px; border-radius: 10px; }
.btn-on-dark { background: var(--cream); color: var(--ink); }
.btn-on-dark:hover { background: #fff; }
.btn-outline-dark { background: transparent; color: var(--cream); border-color: rgba(246,241,228,0.25); }
.btn-outline-dark:hover { background: rgba(246,241,228,0.06); }

/* ============================= VARIANT A: NIGHT KITCHEN ================== */
.va {
  background: #0b0f0c;
  color: var(--cream);
  font-family: var(--sans);
}
.va .nav-links a { color: rgba(246,241,228,0.75); }
.va .nav-links a:hover { color: var(--cream); }
.va .logo-mark { background: var(--cream); color: var(--ink); }
.va .logo { color: var(--cream); }

.va-hero {
  padding: 60px 0 100px;
  border-bottom: 1px solid rgba(246,241,228,0.08);
}
.va-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em;
  color: rgba(246,241,228,0.65); text-transform: uppercase;
  padding: 7px 14px; border: 1px solid rgba(246,241,228,0.18); border-radius: 999px;
  white-space: nowrap;
}
.va-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
.va-h1 {
  font-size: clamp(48px, 5.2vw, 80px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 28px 0 0;
  max-width: 18ch;
}
.va-h1 .serif { font-style: italic; font-weight: 400; color: #e9c88b; line-height: 1.1; display: inline-block; padding-bottom: 0.08em; }
.va-sub {
  margin-top: 36px;
  font-size: 19px;
  color: rgba(246,241,228,0.72);
  max-width: 54ch;
  line-height: 1.55;
}
.va-cta-row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.va-fine { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: rgba(246,241,228,0.5); letter-spacing: 0.02em; }

.va-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  align-items: end;
}
@media (max-width: 900px) {
  .va-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Receipt card */
.receipt {
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px 14px 4px 4px;
  padding: 28px 28px 36px;
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), 0 8px 20px -10px rgba(0,0,0,0.4);
  font-family: var(--mono);
  font-size: 13px;
  max-width: 420px;
  margin-left: auto;
}
.receipt::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -12px;
  height: 14px;
  background:
    radial-gradient(circle at 7px 0, transparent 7px, var(--cream) 7.5px) 0 0 / 14px 14px repeat-x;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}
.receipt-head { text-align: center; border-bottom: 1px dashed rgba(11,15,12,0.25); padding-bottom: 14px; }
.receipt-head .title { font-family: var(--serif); font-size: 26px; letter-spacing: 0; font-style: italic; }
.receipt-head .sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
.receipt-row { display: flex; justify-content: space-between; padding: 7px 0; }
.receipt-row .desc { opacity: 0.75; }
.receipt-row .val { font-variant-numeric: tabular-nums; }
.receipt-divider { height: 1px; background: rgba(11,15,12,0.18); margin: 10px 0; border: 0; border-top: 1px dashed rgba(11,15,12,0.28); }
.receipt-total { display: flex; justify-content: space-between; padding-top: 8px; font-size: 15px; font-weight: 600; }
.receipt-stamp {
  margin: 20px auto 0; width: fit-content;
  padding: 10px 16px 8px;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 18px; font-family: var(--serif); font-style: italic;
  transform: rotate(-5deg);
  letter-spacing: 0.04em;
  opacity: 0.92;
}
.receipt-foot { margin-top: 20px; text-align: center; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; }

/* Logo strip */
.va-strip {
  padding: 40px 0 60px;
  border-bottom: 1px solid rgba(246,241,228,0.08);
}
.va-strip-label {
  text-align: center;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,241,228,0.45); margin-bottom: 28px;
}
.va-strip-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: center;
  max-width: 980px; margin: 0 auto;
}
.va-strip-row .lg { height: 28px; opacity: 0.7; filter: grayscale(1) brightness(2.2) invert(0); }
.va-strip-row img { max-height: 28px; max-width: 100%; display: block; margin: 0 auto; opacity: 0.55; filter: brightness(0) invert(1); }
.va-strip-row img:hover { opacity: 1; }
.va-strip-row .divider { width: 1px; height: 22px; background: rgba(246,241,228,0.15); margin: 0 auto; }

/* Section — problem/benefit */
.va-section { padding: 120px 0; border-bottom: 1px solid rgba(246,241,228,0.08); }
.va-h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02; letter-spacing: -0.03em;
  max-width: 18ch;
}
.va-h2 .serif { font-style: italic; color: #e9c88b; font-weight: 400; }
.va-eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246,241,228,0.55); margin-bottom: 20px;
}
.va-two {
  display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 80px; align-items: start;
}
@media (max-width: 900px) { .va-two { grid-template-columns: 1fr; gap: 32px; } }

.va-stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(246,241,228,0.08);
  border: 1px solid rgba(246,241,228,0.08);
  border-radius: 6px; overflow: hidden;
}
.va-stat {
  background: #0b0f0c;
  padding: 36px 32px;
}
.va-stat .num { font-size: 56px; letter-spacing: -0.03em; line-height: 1; font-weight: 700; }
.va-stat .num .serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.va-stat .lbl { font-size: 13.5px; color: rgba(246,241,228,0.65); margin-top: 10px; max-width: 22ch; }

/* How it works — 3 step lane */
.va-steps { margin-top: 64px; }
.va-step {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 48px;
  padding: 36px 0; border-top: 1px solid rgba(246,241,228,0.1);
  align-items: start;
}
.va-step:last-child { border-bottom: 1px solid rgba(246,241,228,0.1); }
.va-step-num { font-family: var(--serif); font-style: italic; font-size: 54px; line-height: 0.9; color: #e9c88b; }
.va-step-title { font-size: 26px; letter-spacing: -0.02em; font-weight: 600; }
.va-step-desc { font-size: 15.5px; color: rgba(246,241,228,0.72); line-height: 1.55; max-width: 46ch; }
@media (max-width: 760px) { .va-step { grid-template-columns: 60px 1fr; } .va-step-desc { grid-column: 1 / -1; } }

/* ============================= SCROLL STORY (how it works) ============ */
.va-scrollstory {
  background: #0b0f0c;
  position: relative;
  border-bottom: 1px solid rgba(246,241,228,0.08);
}
.va-scrollstory-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .va-scrollstory-wrap { grid-template-columns: 1fr; gap: 0; }
}

.va-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.va-sticky-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.va-story-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(246,241,228,0.55);
}
.va-story-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: va-pulse 2.2s ease-in-out infinite;
}
@keyframes va-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0.06); }
}

.va-canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(246,241,228,0.12);
  background: #050705;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(233,200,139,0.04);
}
.va-canvas iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
  pointer-events: none;
}
.va-canvas-progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(246,241,228,0.08);
  z-index: 2;
}
.va-canvas-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), #e9c88b);
  transition: width 60ms linear;
}

.va-chapter-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0;
}
.va-chapter {
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(246,241,228,0.12);
  opacity: 0.35;
  transition: opacity .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
}
.va-chapter::before {
  content: ''; position: absolute; left: 0; top: -1px;
  height: 1px; width: 0;
  background: linear-gradient(90deg, var(--accent-2), #e9c88b);
  transition: width .4s ease;
}
.va-chapter.active { opacity: 1; }
.va-chapter.active::before { width: 100%; }
.va-chapter.passed { opacity: 0.7; }
.va-chapter.passed::before { width: 100%; background: rgba(246,241,228,0.35); }
.va-chapter-n {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: rgba(246,241,228,0.5); text-transform: uppercase;
}
.va-chapter.active .va-chapter-n { color: #e9c88b; }
.va-chapter-t {
  font-size: 13px; font-weight: 500;
  color: rgba(246,241,228,0.8); letter-spacing: -0.005em;
}
.va-chapter.active .va-chapter-t { color: var(--cream); }
@media (max-width: 540px) {
  .va-chapter-t { font-size: 11px; }
  .va-chapter { padding: 10px 8px 12px; }
}

.va-rail {
  padding: 160px 0 160px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.va-rail-intro { margin-bottom: 120px; }
.va-chap {
  min-height: 85vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0;
  border-top: 1px dashed rgba(246,241,228,0.1);
}
.va-chap:first-of-type { border-top: 0; }
.va-chap-num {
  font-family: var(--serif); font-style: italic;
  font-size: 72px; line-height: 0.9;
  color: #e9c88b;
  margin-bottom: 18px;
}
.va-chap-kicker {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(246,241,228,0.55);
  margin-bottom: 16px;
}
.va-chap-title {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1; letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 22ch;
}
.va-chap-desc {
  font-size: 17px;
  color: rgba(246,241,228,0.72);
  line-height: 1.55;
  max-width: 44ch;
}
.va-chap-meta {
  margin-top: 20px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246,241,228,0.5);
}

@media (max-width: 960px) {
  .va-sticky {
    position: sticky; top: 0;
    height: 60vh;
    padding: 16px 0;
    background: linear-gradient(180deg, #0b0f0c 0%, #0b0f0c 85%, rgba(11,15,12,0.92) 100%);
    backdrop-filter: blur(2px);
    z-index: 5;
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .va-sticky-inner { gap: 12px; }
  .va-rail { padding: 40px 0 80px; }
  .va-rail-intro { margin-bottom: 40px; }
  .va-chap { min-height: 60vh; }
  .va-chap-num { font-size: 54px; }
}

/* Pricing block A */
.va-price {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: 0;
  background: #0b0f0c;
  border: 1px solid rgba(246,241,228,0.1);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 900px) { .va-price { grid-template-columns: 1fr; } }
.va-price-left { padding: 56px 48px; }
.va-price-right { padding: 56px 48px; background: var(--cream); color: var(--ink); }
.va-price .big {
  font-family: var(--serif); font-style: italic;
  font-size: 200px; line-height: 0.88; letter-spacing: -0.04em;
  color: #e9c88b;
}
.va-price .big .currency { font-size: 100px; vertical-align: top; margin-right: 4px; font-style: normal; font-family: var(--sans); font-weight: 500; letter-spacing: -0.02em; color: rgba(246,241,228,0.85); }
.va-price .per { font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,241,228,0.55); margin-top: 14px; }
.va-price .cap { margin-top: 18px; font-size: 15px; color: rgba(246,241,228,0.7); max-width: 34ch; }
.va-price-right h3 { font-size: 14px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: #847a5c; margin-bottom: 18px; font-weight: 600; }
.va-feature { display: flex; gap: 12px; padding: 10px 0; font-size: 15px; border-top: 1px solid rgba(11,15,12,0.08); }
.va-feature:first-of-type { border-top: 0; }
.va-feature .chk { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Founder quote */
.va-founder {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.3fr);
  gap: 72px; align-items: center;
}
@media (max-width: 900px) { .va-founder { grid-template-columns: 1fr; } }
.va-founder-card {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, rgba(246,241,228,0.04) 0 8px, transparent 8px 18px),
    linear-gradient(160deg, #1a1f1c, #0b0f0c);
  border: 1px solid rgba(246,241,228,0.12);
  border-radius: 6px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246,241,228,0.4);
}
.va-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.va-quote::before { content: '“'; font-size: 2.3em; line-height: 0; vertical-align: -0.35em; color: #e9c88b; margin-right: 0.04em; }
.va-quote-attr { margin-top: 24px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246,241,228,0.55); }

/* FAQ */
.va-faq details {
  border-top: 1px solid rgba(246,241,228,0.12);
  padding: 22px 0;
}
.va-faq details:last-child { border-bottom: 1px solid rgba(246,241,228,0.12); }
.va-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 20px; font-weight: 500; letter-spacing: -0.015em; }
.va-faq summary::-webkit-details-marker { display: none; }
.va-faq summary .plus { font-family: var(--serif); font-style: italic; color: #e9c88b; font-size: 28px; transition: transform .25s ease; }
.va-faq details[open] summary .plus { transform: rotate(45deg); }
.va-faq .a { margin-top: 16px; font-size: 16px; color: rgba(246,241,228,0.72); max-width: 72ch; line-height: 1.6; }

/* Footer CTA A */
.va-cta-final {
  padding: 120px 0 140px;
  text-align: left;
  background:
    radial-gradient(900px 500px at 30% 100%, rgba(16,185,129,0.14), transparent 70%),
    #0b0f0c;
}
.va-cta-final h2 {
  font-size: clamp(54px, 7vw, 104px);
  letter-spacing: -0.035em; line-height: 0.98;
  max-width: 16ch;
}
.va-cta-final h2 .serif { font-style: italic; color: #e9c88b; font-weight: 400; }

.va-footer { background: #050705; padding: 72px 0 32px; color: rgba(246,241,228,0.55); font-size: 13px; }
.va-footer .row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.va-footer-links a { margin-right: 22px; text-decoration: none; }
.va-foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(246,241,228,0.08); }
@media (max-width: 900px) { .va-foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.va-foot-brand { max-width: 320px; }
.va-foot-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,241,228,0.85); margin-bottom: 18px; }
.va-foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.va-foot-list a { color: rgba(246,241,228,0.55); text-decoration: none; font-size: 14px; transition: color .15s ease; }
.va-foot-list a:hover { color: var(--cream); }
.va-foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(246,241,228,0.4); }
.va-foot-bottom a { color: rgba(246,241,228,0.55); text-decoration: none; }
.va-foot-bottom a:hover { color: var(--cream); }

/* ── Shared partials (no Tailwind on this layout) ────────────────── */
.hidden { display: none !important; }

/* ── Exit-intent modal — Night Kitchen theme ──────────────────────── */
[data-exit-intent-target="overlay"] {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  padding: 1rem; transition: opacity .3s ease-in-out;
}
[data-exit-intent-target="overlay"]:not(.hidden) { display: flex; }

/* Modal card — dark paper to match Night Kitchen */
[data-exit-intent-target="overlay"] > div[role="dialog"] {
  position: relative;
  background: var(--ink); color: var(--cream);
  border: 1px solid rgba(246,241,228,.1);
  border-radius: 1rem;
  box-shadow: 0 25px 80px -12px rgba(0,0,0,.6);
  max-width: 26rem; width: 100%; padding: 2.5rem; margin: 0 auto;
  font-family: var(--sans);
}

/* Close button */
[data-exit-intent-target="overlay"] button[aria-label="Close popup"] {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  color: rgba(246,241,228,.4); transition: color .15s;
  padding: 0; line-height: 1;
}
[data-exit-intent-target="overlay"] button[aria-label="Close popup"]:hover { color: var(--cream); }
[data-exit-intent-target="overlay"] button[aria-label="Close popup"] svg { width: 20px; height: 20px; }

/* Icon circle */
[data-exit-intent-target="overlay"] .text-center > div:first-child {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(4,120,87,.15); margin-bottom: 1rem;
}
[data-exit-intent-target="overlay"] .text-center > div:first-child svg {
  width: 1.5rem; height: 1.5rem; color: var(--accent-2, #10b981);
}

/* Heading */
[data-exit-intent-target="overlay"] h2 {
  font-family: var(--sans); font-size: 1.5rem; font-weight: 700;
  color: var(--cream); margin: 0 0 .5rem; text-align: center;
}

/* Description */
[data-exit-intent-target="overlay"] .text-center p {
  font-size: .9rem; color: rgba(246,241,228,.6); line-height: 1.55; text-align: center;
}
[data-exit-intent-target="overlay"] .text-center strong { color: var(--cream); font-weight: 600; }

/* Form */
[data-exit-intent-target="overlay"] form { margin-top: 1.5rem; }
[data-exit-intent-target="overlay"] form > div + button,
[data-exit-intent-target="overlay"] form > div + div { margin-top: .75rem; }

/* Email input */
[data-exit-intent-target="overlay"] input[type="email"] {
  width: 100%; padding: .75rem 1rem; border-radius: .5rem;
  border: 1px solid rgba(246,241,228,.15);
  background: rgba(246,241,228,.06); color: var(--cream);
  font-size: .875rem; font-family: var(--sans); outline: none;
  transition: border-color .15s;
}
[data-exit-intent-target="overlay"] input[type="email"]::placeholder { color: rgba(246,241,228,.35); }
[data-exit-intent-target="overlay"] input[type="email"]:focus {
  border-color: var(--accent); box-shadow: 0 0 0 2px rgba(4,120,87,.25);
}

/* Submit button */
[data-exit-intent-target="overlay"] button[type="submit"] {
  width: 100%; padding: .75rem 1rem; font-size: .875rem; font-weight: 600;
  font-family: var(--sans);
  color: var(--ink); background: var(--cream);
  border: none; border-radius: .5rem;
  cursor: pointer; transition: background .15s; margin-top: .75rem;
}
[data-exit-intent-target="overlay"] button[type="submit"]:hover { background: #e7dfc9; }

/* Fine print */
[data-exit-intent-target="overlay"] form > p:last-child {
  font-size: .75rem; color: rgba(246,241,228,.35); text-align: center; margin-top: .75rem;
}

/* Success state */
[data-exit-intent-target="successMessage"] h3 {
  font-family: var(--sans); font-size: 1.25rem; font-weight: 700;
  color: var(--cream); margin: 0 0 .5rem;
}
[data-exit-intent-target="successMessage"] p {
  font-size: .875rem; color: rgba(246,241,228,.6);
}

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
/* ── Cookie consent banner — Night Kitchen theme ─────────────────── */
#cookie-consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
}
#cookie-consent-banner > div {
  background: var(--ink); border-top: 1px solid rgba(246,241,228,.1);
  box-shadow: 0 -8px 24px rgba(0,0,0,.4);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
#cookie-consent-banner p {
  margin: 0; font-family: var(--sans); font-size: .85rem;
  color: rgba(246,241,228,.55); line-height: 1.5;
}
#cookie-consent-banner button {
  padding: .5rem 1.25rem; font-size: .85rem; font-weight: 600;
  font-family: var(--sans);
  color: var(--ink); background: var(--cream); border: none; border-radius: .5rem;
  cursor: pointer; white-space: nowrap; transition: background .15s;
  flex-shrink: 0;
}
#cookie-consent-banner button:hover { background: #e7dfc9; }
#cookie-consent-banner a { color: var(--accent-2, #10b981); text-decoration: underline; }

