/* ─────────────────────────────────────────────────────────────────────────
   Ysora / EmberMate — atmospheric stylesheet
   Designed for calm, warmth, and breathing room.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* Base palette — EmberMate v6.7 */
  --bg: #1a1612;
  --bg-elevated: #221d18;
  --surface: #2a2520;
  --surface-warm: #322a23;
  --border: rgba(255, 240, 215, 0.10);
  --border-strong: rgba(255, 240, 215, 0.18);

  --text: #f4ddb8;
  --text-bright: #fff4d6;
  --text-secondary: #c4c1b3;
  --text-tertiary: #8a8a82;
  --text-muted: #6a6a64;

  --sage: #5fb88a;
  --lavender: #aa8adc;
  --coral: #e6776e;
  --ember: #ff8c42;
  --ember-deep: #e8642a;

  /* Typography */
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px;
  --s9: 96px; --s10: 128px; --s11: 160px; --s12: 200px;

  --container: 1180px;
  --container-narrow: 720px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
a {
  color: var(--lavender);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.7; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.text-center { text-align: center; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s5);
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--s5);
  position: relative;
  z-index: 2;
}

/* ════════════════════════════════════════════════════════════════════════
   ATMOSPHERIC BACKGROUND LAYERS
   Soft warm glows that drift across the page, providing depth and warmth.
   ════════════════════════════════════════════════════════════════════════ */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: drift 30s ease-in-out infinite;
}
.atm-glow-1 {
  top: -10%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--ember) 0%, transparent 60%);
  animation-delay: 0s;
}
.atm-glow-2 {
  top: 35%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  opacity: 0.18;
  animation-delay: -10s;
}
.atm-glow-3 {
  bottom: 5%; right: 10%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 60%);
  opacity: 0.12;
  animation-delay: -20s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ════════════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 22, 18, 0.7);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom: 0.5px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s4) var(--s5);
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.2px;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background-image: url('logo-mark.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: var(--s6);
  font-size: 14.5px;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 400;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

/* ════════════════════════════════════════════════════════════════════════
   HERO — generous, atmospheric, breathing
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  padding: var(--s9) 0 var(--s8);
  text-align: center;
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: var(--s5);
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 auto var(--s5);
  color: var(--text);
  max-width: 16ch;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 auto var(--s5);
  max-width: 580px;
  font-weight: 400;
}
.hero-clarifier {
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.65;
  color: var(--text-tertiary);
  margin: 0 auto var(--s6);
  max-width: 600px;
  font-weight: 400;
}
.hero-meta-row {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 10px 20px;
  background: rgba(255, 240, 215, 0.04);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  font-size: 13.5px;
}
.hero-product-name {
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.1px;
}
.hero-divider { color: var(--text-tertiary); }
.hero-meta-text {
  color: var(--text-secondary);
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--s7);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bob 2s ease-in-out infinite;
}
.hero-scroll-arrow { font-size: 16px; }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ════════════════════════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════════════════════════ */
.intro {
  padding: var(--s8) 0;
  text-align: center;
}
.intro-text {
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 auto var(--s5);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.intro-text-emphasis {
  color: var(--text);
  margin-top: var(--s6);
  font-style: normal;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════════
   FEATURE SECTIONS
   Each feature gets its own subtle atmospheric tint.
   ════════════════════════════════════════════════════════════════════════ */
.feature-section {
  padding: var(--s8) 0;
  position: relative;
}
.feature-section-warm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 140, 66, 0.04), transparent 60%);
  pointer-events: none;
}
.feature-section-calm::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(95, 184, 138, 0.04), transparent 60%);
  pointer-events: none;
}
.feature-section-dusk::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(230, 119, 110, 0.05), transparent 60%);
  pointer-events: none;
}
.feature-section-dawn {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 240, 215, 0.02) 50%, transparent 100%);
}
.feature-section-dawn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(170, 138, 220, 0.05), transparent 60%);
  pointer-events: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.feature-grid-reverse > .feature-text { order: 2; }
.feature-grid-reverse > .feature-visual { order: 1; }

.feature-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: var(--s4);
  font-weight: 600;
}
.feature-eyebrow.centered {
  display: block;
  text-align: center;
}
.feature-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 var(--s6);
  color: var(--text);
}
.feature-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 var(--s4);
  max-width: 480px;
}
.feature-body-italic {
  font-style: italic;
  color: var(--text);
  font-size: 22px;
  line-height: 1.5;
  margin-top: var(--s5);
}
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── Phone mockup with atmospheric glow ─── */
.phone {
  width: 320px;
  height: 660px;
  background: #050505;
  border-radius: 50px;
  padding: 9px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 240, 215, 0.06),
    0 30px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(255, 140, 66, 0.08);
  flex-shrink: 0;
}
.phone-aurora::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 42px;
  padding: 28px 22px 0;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.5;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0 4px var(--s4);
}
.phone-greeting {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-top: var(--s2);
}
.phone-greeting-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: var(--s2);
}
.phone-section-label {
  margin-top: var(--s7);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--lavender);
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: var(--s3);
  border-bottom: 0.5px solid var(--border);
}
.phone-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) 0;
  font-size: 13.5px;
  border-bottom: 0.5px solid var(--border);
}
.phone-item:last-child { border-bottom: none; }
.phone-time {
  width: 50px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 12px;
}
.phone-name { flex: 1; color: var(--text); }
.phone-name-pending { color: var(--text-secondary); font-style: italic; }
.phone-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
  flex-shrink: 0;
}
.phone-check::after {
  content: "";
  position: absolute;
  top: 5px; left: 4.5px;
  width: 9px; height: 5px;
  border-left: 2px solid #0a1510;
  border-bottom: 2px solid #0a1510;
  transform: rotate(-45deg);
}
.phone-pending-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--text-tertiary);
  background: transparent;
  flex-shrink: 0;
}

/* ─── Paper card (handoff visual) ─── */
.paper {
  background: linear-gradient(180deg, #f4e8d0, #e8d9b8);
  color: #2a1f15;
  padding: var(--s7) var(--s7);
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(95, 184, 138, 0.08);
  position: relative;
  font-family: var(--sans);
}
.paper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.paper-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6f4d;
  font-weight: 600;
  margin-bottom: var(--s2);
}
.paper-h {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: var(--s5);
  letter-spacing: -0.4px;
  color: #1f1108;
}
.paper-quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: #3a2a1a;
  margin: 0 0 var(--s5);
}
.paper-divider {
  height: 0.5px;
  background: #c9b591;
  margin: var(--s5) 0;
}
.paper-line {
  display: flex;
  gap: var(--s4);
  padding: var(--s2) 0;
  font-size: 14px;
  color: #3a2a1a;
}
.paper-time {
  width: 56px;
  color: #8a6f4d;
  font-weight: 500;
  flex-shrink: 0;
}
.paper-note {
  font-size: 14px;
  color: #5a4a35;
  line-height: 1.6;
  background: rgba(170, 138, 220, 0.08);
  padding: var(--s3) var(--s4);
  border-left: 2px solid #aa8adc;
  border-radius: 0 6px 6px 0;
  margin-top: var(--s2);
}

/* ─── Soft card (what changed) ─── */
.card-soft {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s7);
  width: 100%;
  max-width: 460px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(230, 119, 110, 0.08);
}
.card-soft-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: var(--s5);
}
.change-item {
  display: flex;
  gap: var(--s4);
  padding: var(--s4) 0;
  align-items: flex-start;
  border-bottom: 0.5px solid var(--border);
}
.change-item:last-child { border-bottom: none; }
.change-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 9px;
  flex: 0 0 8px;
}
.change-item-flag .change-bullet {
  background: var(--coral);
  box-shadow: 0 0 8px rgba(230, 119, 110, 0.55);
}
.change-item-note .change-bullet {
  background: var(--text-tertiary);
}
.change-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.change-item-flag .change-text strong { color: var(--coral); }
.change-item-note .change-text strong { color: var(--text); }
.change-text strong {
  font-weight: 500;
  font-size: 15.5px;
}
.change-text span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ─── Privacy block ─── */
.privacy-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 var(--s6);
  color: var(--text);
}
.privacy-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 auto var(--s4);
  max-width: 580px;
}
.privacy-sub-quiet {
  font-style: italic;
  color: var(--text-tertiary);
  font-size: 16px;
  margin-bottom: var(--s9);
}
.privacy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s7);
  margin-top: var(--s8);
}
.pillar {
  text-align: center;
  padding: var(--s5) var(--s4);
}
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(170, 138, 220, 0.08);
  color: var(--lavender);
  margin-bottom: var(--s4);
}
.pillar-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--s2);
  letter-spacing: -0.2px;
}
.pillar-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════════
   STORY SECTION
   ════════════════════════════════════════════════════════════════════════ */
.story-section {
  padding: var(--s9) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(170, 138, 220, 0.03) 100%);
  position: relative;
}
.story-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.story-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 600;
  margin-bottom: var(--s5);
  text-align: center;
}
.story-lead {
  font-size: clamp(26px, 3.6vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: var(--text);
  margin: 0 auto var(--s7);
  max-width: 22ch;
  letter-spacing: -0.5px;
}
.story-body p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 var(--s5);
}
.story-pullquote {
  font-size: 24px !important;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5 !important;
  color: var(--text-bright) !important;
  margin: var(--s7) 0 !important;
  padding: var(--s5) var(--s6);
  border-left: 3px solid var(--lavender);
  background: rgba(170, 138, 220, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  letter-spacing: -0.3px;
}
.story-emphasis {
  font-size: 22px !important;
  font-style: italic;
  color: var(--text-bright) !important;
  margin: var(--s6) 0 !important;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.story-signoff {
  text-align: center;
  font-size: 22px;
  color: var(--text-secondary);
  margin-top: var(--s8);
  letter-spacing: -0.2px;
}

/* ════════════════════════════════════════════════════════════════════════
   CTA / COMING SOON
   ════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--s8) 0;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.06), transparent 60%);
  pointer-events: none;
}
.cta-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 0 0 var(--s5);
  color: var(--text);
}
.cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 auto var(--s5);
  max-width: 580px;
}
.cta-meta {
  font-size: 15px;
  color: var(--text-tertiary);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.site-footer {
  padding: var(--s8) 0 var(--s5);
  border-top: 0.5px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s6);
}
.logo-footer {
  margin-bottom: var(--s4);
  font-size: 18px;
}
.footer-tagline {
  margin: 0;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 360px;
}
.footer-h {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 var(--s4);
}
.footer-col li { margin-bottom: var(--s3); }
.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: var(--s5);
  border-top: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { padding: var(--s9) 0 var(--s8); min-height: auto; }
  .hero-scroll-hint { display: none; }
  .intro { padding: var(--s8) 0; }

  .feature-section { padding: var(--s8) 0; }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--s7);
    text-align: center;
  }
  .feature-grid-reverse > .feature-text { order: 1; }
  .feature-grid-reverse > .feature-visual { order: 2; }
  .feature-text { max-width: 100%; }
  .feature-body { max-width: 100%; margin-left: auto; margin-right: auto; }
  .feature-eyebrow { display: block; }

  .privacy-pillars {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .story-section { padding: var(--s8) 0; }
  .cta-section { padding: var(--s8) 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
  .footer-col-brand { max-width: 100%; }

  .atm-glow-1, .atm-glow-2, .atm-glow-3 { opacity: 0.25 !important; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { padding: var(--s3) var(--s4); height: 64px; }
  .nav-links { gap: var(--s4); font-size: 14px; }
  .container, .container-narrow { padding: 0 var(--s4); }

  .hero-headline { letter-spacing: -1.2px; }
  .hero-eyebrow { font-size: 11.5px; letter-spacing: 2px; }

  .phone { width: 280px; height: 580px; }

  .paper { padding: var(--s5); }
  .card-soft { padding: var(--s5); }

  .story-pullquote { padding: var(--s4) var(--s5); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   LEGAL & STATIC PAGES (privacy, terms, data-deletion, data-request, support)
   ════════════════════════════════════════════════════════════════════════ */
.legal-page {
  padding: var(--s9) 0 var(--s8);
  position: relative;
}
.legal-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 600;
  margin-bottom: var(--s3);
}
.legal-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 var(--s3);
  color: var(--text);
}
.legal-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  margin: 0 0 var(--s8);
}
.legal-body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
}
.legal-body p {
  margin: 0 0 var(--s4);
}
.legal-body p strong {
  color: var(--text-bright);
  font-weight: 500;
}
.legal-h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin: var(--s7) 0 var(--s4);
  color: var(--text);
  line-height: 1.3;
}
.legal-list {
  margin: 0 0 var(--s4);
  padding-left: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding-left: var(--s5);
  margin-bottom: var(--s3);
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.5;
}
.legal-list li strong {
  color: var(--text);
  font-weight: 500;
}
.legal-list-ordered {
  counter-reset: legal-counter;
}
.legal-list-ordered li::before {
  content: counter(legal-counter);
  counter-increment: legal-counter;
  background: rgba(170, 138, 220, 0.15);
  color: var(--lavender);
  width: 22px;
  height: 22px;
  top: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--sans);
}
.legal-list-ordered li {
  padding-left: var(--s7);
}

.callout {
  padding: var(--s4) var(--s5);
  border-radius: var(--radius-sm);
  margin: var(--s4) 0 var(--s6);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  border: 0.5px solid var(--border);
}
.callout strong {
  color: var(--text-bright);
  font-weight: 500;
}
.callout-info {
  background: rgba(170, 138, 220, 0.06);
  border-left: 3px solid var(--lavender);
}
.callout-warn {
  background: rgba(230, 119, 110, 0.05);
  border-left: 3px solid var(--coral);
}

.legal-back {
  margin-top: var(--s8);
  padding-top: var(--s5);
  border-top: 0.5px solid var(--border);
  font-size: 15px;
}
.legal-back a {
  color: var(--text-secondary);
}
.legal-back a:hover {
  color: var(--text);
  opacity: 1;
}

@media (max-width: 600px) {
  .legal-page { padding: var(--s7) 0 var(--s7); }
  .legal-h2 { margin-top: var(--s6); font-size: 20px; }
  .legal-body { font-size: 16px; }
}

/* ════════════════════════════════════════════════════════════════════════
   CTA SIGNUP FORM — Netlify Forms launch list
   Added to .cta-section. Honeypot + visually-hidden label for accessibility.
   ════════════════════════════════════════════════════════════════════════ */
.cta-form {
  margin-top: var(--s5);
  position: relative;
}
.cta-form-row {
  display: flex;
  gap: var(--s2);
  max-width: 480px;
  margin: 0 auto var(--s4);
  flex-wrap: wrap;
}
.cta-form-row input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.cta-form-row input[type="email"]::placeholder {
  color: var(--text-muted);
}
.cta-form-row input[type="email"]:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(95, 184, 138, 0.18);
}
.cta-form-row button {
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--sage);
  color: #0a1510;
  cursor: pointer;
  transition: opacity 160ms ease, transform 80ms ease;
  white-space: nowrap;
}
.cta-form-row button:hover { opacity: 0.92; }
.cta-form-row button:active { transform: scale(0.98); }
.cta-form-note {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0;
}
.cta-form-note a { color: var(--text-secondary); }
.cta-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   CALLOUT FINEPRINT — GDPR/CCPA legal-framing paragraph inside callouts
   ════════════════════════════════════════════════════════════════════════ */
.callout-fineprint {
  margin: var(--s3) 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-tertiary);
}

/* ════════════════════════════════════════════════════════════════════════
   PRIVACY PRICING LINE — Small footer note inside the privacy block
   ════════════════════════════════════════════════════════════════════════ */
.privacy-pricing {
  margin-top: var(--s5);
  font-size: 14px;
}


/* ════════════════════════════════════════════════════════════════════════
   THANK-YOU PAGE — Post-signup confirmation
   ════════════════════════════════════════════════════════════════════════ */
.thank-you-page {
  padding: var(--s9) 0 var(--s8);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.thank-you-mark {
  color: var(--sage);
  margin: 0 auto var(--s5);
  display: inline-block;
}
.thank-you-headline {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin: 0 0 var(--s4);
  color: var(--text);
}
.thank-you-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto var(--s4);
}
.thank-you-text-quiet {
  font-size: 17px;
  color: var(--text-tertiary);
  margin-top: var(--s5);
}
.thank-you-back {
  margin-top: var(--s7);
}
.thank-you-back a {
  color: var(--text-tertiary);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 0.5px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 160ms ease;
}
.thank-you-back a:hover { color: var(--text-secondary); }

/* ════════════════════════════════════════════════════════════════════════
   AUTOFILL OVERRIDE — Browser-injected yellow background on autofill
   ════════════════════════════════════════════════════════════════════════ */
.cta-form-row input[type="email"]:-webkit-autofill,
.cta-form-row input[type="email"]:-webkit-autofill:hover,
.cta-form-row input[type="email"]:-webkit-autofill:focus,
.cta-form-row input[type="email"]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--surface) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
  transition: background-color 5000s ease-in-out 0s;
}
