:root {
  --cream: #f5f1ea;
  --paper: #fdfcf9;
  --white: #ffffff;
  --ink: #24184a;
  --ink-soft: #3c2f66;
  --muted: #6b6386;
  --glow: #c72e94;
  --glow-deep: #a31f76;
  --gold: #f5c46a;
  --line: rgba(36, 24, 74, 0.14);
  --line-soft: rgba(36, 24, 74, 0.08);
  --line-dark: rgba(245, 241, 234, 0.16);
  --max: 1240px;
  --max-narrow: 880px;
  --font-display: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--ink); letter-spacing: 0.01em; }
p { font-size: 1.05rem; color: var(--muted); }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--glow-deep);
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.08s; }
.reveal-2 { transition-delay: 0.16s; }
.reveal-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Buttons: one fill, one ghost */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-fill { background: var(--glow); color: var(--white); }
.btn-fill:hover { background: var(--glow-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.on-dark .btn-ghost { color: var(--cream); border-color: rgba(245, 241, 234, 0.55); }
.on-dark .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* Top line */
.topline {
  background: var(--ink);
  color: var(--gold);
  text-align: center;
  padding: 0.6rem 1.75rem;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; font-size: 0.88rem; font-weight: 500; align-items: center; }
.nav-links a { text-decoration: none; color: var(--ink); padding: 0.3rem 0; border-bottom: 1px solid transparent; transition: color 0.15s; }
.nav-links a:hover { color: var(--glow); }
.nav-links a.active { border-bottom-color: var(--glow); }
.nav-cta { padding: 0.7rem 1.4rem; font-size: 0.72rem; white-space: nowrap; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-cta { display: inline-flex; margin: 0 1.75rem 1.5rem; }
}

/* Hero: Glow's dreamy pastel mesh, CSS-only (their own static gradient values,
   the fallback their site paints under the WebGL shader). Zero JS, zero
   animation loops: the identity stays, old machines stay cool. */
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(to bottom, rgba(245,241,234,0) 72%, var(--cream) 100%),
    radial-gradient(58% 50% at 16% 20%, rgba(255,242,236,.95) 0%, rgba(255,242,236,0) 62%),
    radial-gradient(48% 44% at 84% 16%, rgba(255,255,255,.60) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(64% 60% at 82% 78%, rgba(226,198,211,.82) 0%, rgba(226,198,211,0) 64%),
    radial-gradient(60% 56% at 12% 84%, rgba(235,216,226,.80) 0%, rgba(235,216,226,0) 64%),
    radial-gradient(92% 86% at 50% 46%, rgba(194,193,220,.55) 0%, rgba(194,193,220,0) 72%),
    linear-gradient(135deg, #FFF3ED 0%, #ECD2DC 46%, #CDCAE0 72%, #EAD9E2 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.hero .label { display: block; margin-bottom: 1.25rem; }
.hero h1 { margin-bottom: 1.5rem; max-width: 16ch; }
.hero-sub { font-size: clamp(1.12rem, 1.5vw, 1.3rem); line-height: 1.6; max-width: 36rem; margin-bottom: 2.25rem; color: var(--ink); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--muted); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Flat figure */
.figure { margin: 0; }
.figure-img { border: 1px solid var(--line); background: var(--white); overflow: hidden; cursor: zoom-in; }
.figure-img img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.figure-img:hover img { transform: scale(1.03); }
.figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Section heads */
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .label { display: block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head p { font-size: 1.1rem; max-width: 620px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin: 0 auto; }

/* Principle rows */
.rows { border-top: 1px solid var(--line); }
.row-item {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.row-item h3 { font-size: 1.3rem; }
.row-item p { font-size: 1rem; }
@media (max-width: 760px) {
  .row-item { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.6rem 0; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 500; }
.step p { font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* Video */
.video-wrap { margin-top: clamp(2.5rem, 5vw, 4rem); }
.video-frame { position: relative; padding-top: 56.25%; background: var(--ink); border: 1px solid var(--line); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Audience slider */
.aud { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.slider { position: relative; border: 1px solid var(--line); background: var(--white); overflow: hidden; }
.slider-track { display: flex; transition: transform 0.55s var(--ease); }
.slide { min-width: 100%; padding: clamp(2rem, 4.5vw, 3.75rem); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.slide .label { display: block; margin-bottom: 1rem; }
.slide h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.slide p { margin-bottom: 1.75rem; }
.slide-list { list-style: none; }
.slide-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.slide-list li:first-child { border-top: 1px solid var(--line); }
.slide-list li span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); align-self: center; white-space: nowrap; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(2rem, 4.5vw, 3.75rem);
  border-top: 1px solid var(--line);
  background: var(--white);
}
.slider-dots { display: flex; gap: 0.6rem; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--ink); background: transparent; cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.slider-dots button.active { background: var(--glow); border-color: var(--glow); }
.slider-arrows { display: flex; gap: 0.6rem; }
.slider-arrows button {
  width: 40px; height: 40px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.slider-arrows button:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 820px) { .slide { grid-template-columns: 1fr; } }

/* Dark band */
.dark { background: var(--ink); }
.dark h2, .dark h3 { color: var(--cream); }
.dark p { color: rgba(245, 241, 234, 0.72); }
.dark .label { color: var(--gold); }
.dark .rows { border-top-color: var(--line-dark); }
.dark .row-item { border-bottom-color: var(--line-dark); }
.dark .step { border-top-color: var(--line-dark); }

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tier { background: var(--white); border: 1px solid var(--line); padding: 2rem 1.75rem; display: flex; flex-direction: column; }
.tier .label { display: block; margin-bottom: 1rem; }
.tier h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.tier-price { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.tier p { font-size: 0.93rem; line-height: 1.6; margin-bottom: 1.25rem; }
.tier-list { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.tier-list li { padding: 0.55rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.88rem; color: var(--ink-soft); }
.tier-list li:first-child { border-top: 1px solid var(--line-soft); }
.tier .btn { width: 100%; }
.tier-featured { border-color: var(--glow); }
@media (max-width: 1000px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: var(--cream); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.cta-grid h2 { margin: 1rem 0 1.25rem; }
.cta-grid .cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }

/* Forms */
.panel-form { background: var(--white); border: 1px solid var(--line); padding: 2.25rem; position: relative; }
.panel-form h3 { margin-bottom: 0.4rem; }
.panel-form > p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--glow); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  position: absolute; inset: 0;
  background: var(--white);
  display: none;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
}
.form-success.show { display: flex; }
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { font-size: 0.95rem; }

/* Newsletter */
.newsletter { border-top: 1px solid var(--line-dark); margin-top: 3rem; padding-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.newsletter h3 { font-size: 1.05rem; font-weight: 500; color: var(--cream); margin-bottom: 0.35rem; }
.newsletter p { font-size: 0.85rem; }
.news-form { display: flex; gap: 0.75rem; }
.news-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--cream);
}
.news-form input::placeholder { color: rgba(245, 241, 234, 0.45); }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-done { font-size: 0.9rem; color: var(--gold); }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; } .news-form { flex-direction: column; } }

/* Footer */
.footer { background: var(--ink); color: rgba(245, 241, 234, 0.65); padding: 4.5rem 0 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(245, 241, 234, 0.6); font-size: 0.92rem; max-width: 30rem; }
.footer h5 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; color: var(--gold); margin-bottom: 1.2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer a { color: rgba(245, 241, 234, 0.7); text-decoration: none; transition: color 0.15s; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.76rem;
  color: rgba(245, 241, 234, 0.45);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(36, 24, 74, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; width: auto; height: auto; background: var(--white); }
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid rgba(245, 241, 234, 0.5);
  color: var(--cream);
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* Quiet text link (email, secondary asks): never a button */
.quiet-link { font-size: 0.95rem; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.quiet-line { margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); }

/* Page hero (interior pages): same pastel mesh, softer */
.page-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(to bottom, rgba(245,241,234,0) 70%, var(--cream) 100%),
    radial-gradient(60% 80% at 14% 16%, rgba(255,242,236,.80) 0%, rgba(255,242,236,0) 60%),
    radial-gradient(66% 86% at 86% 84%, rgba(226,198,211,.58) 0%, rgba(226,198,211,0) 62%),
    radial-gradient(70% 90% at 82% 14%, rgba(194,193,220,.40) 0%, rgba(194,193,220,0) 64%),
    linear-gradient(135deg, #FFF7F2 0%, #F4DEE6 56%, #DBD8EA 100%);
}
.page-hero .label { display: block; margin-bottom: 1.1rem; }
.page-hero h1 { max-width: 22ch; margin-bottom: 1.25rem; }
.page-hero p { font-size: clamp(1.05rem, 1.3vw, 1.18rem); max-width: 46rem; color: var(--ink-soft); }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.split .label { display: block; margin-bottom: 1rem; }
.split h2 { margin-bottom: 1.25rem; }
.split p { margin-bottom: 1.1rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
