/* ============================================================
   PEACH → Flow · Landing Page Styles
   Aesthetic: Dark dojo · Warm peach accents · Fruit farms greens
   Fonts: Playfair Display (headings) + DM Sans (body) + DM Mono
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #1a2640;
  --navy-deep:   #0f1825;
  --navy-mid:    #22304a;
  --navy-light:  #2d3f5c;
  --peach:       #e07b39;
  --peach-light: #f0a060;
  --peach-pale:  #fff3e0;
  --green:       #2d6a4f;
  --green-light: #4caf7a;
  --gold:        #c9a84c;
  --gold-light:  #f0d070;
  --cream:       #f9f4ed;
  --white:       #ffffff;
  --muted:       #8a9ab5;
  --text-dark:   #1a1a2e;
  --text-body:   #3a3a50;

  --radius:      12px;
  --radius-lg:   20px;
  --gap:         2rem;
  --section-pad: 7rem 2rem;
  --max-w:       1200px;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', monospace;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
em { font-style: italic; color: var(--peach); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.peach-step.reveal:nth-child(1)  { transition-delay: 0.0s; }
.peach-step.reveal:nth-child(3)  { transition-delay: 0.1s; }
.peach-step.reveal:nth-child(5)  { transition-delay: 0.2s; }
.peach-step.reveal:nth-child(7)  { transition-delay: 0.3s; }
.peach-step.reveal:nth-child(9)  { transition-delay: 0.4s; }
.rec-item.reveal:nth-child(1)    { transition-delay: 0.05s; }
.rec-item.reveal:nth-child(2)    { transition-delay: 0.15s; }
.rec-item.reveal:nth-child(3)    { transition-delay: 0.25s; }
.rec-item.reveal:nth-child(4)    { transition-delay: 0.35s; }
.fruit-farm-stage.reveal:nth-child(1) { transition-delay: 0.0s; }
.fruit-farm-stage.reveal:nth-child(3) { transition-delay: 0.12s; }
.fruit-farm-stage.reveal:nth-child(5) { transition-delay: 0.24s; }
.fruit-farm-stage.reveal:nth-child(7) { transition-delay: 0.36s; }
.sun-state.reveal:nth-child(1)   { transition-delay: 0.05s; }
.sun-state.reveal:nth-child(2)   { transition-delay: 0.18s; }
.sun-state.reveal:nth-child(3)   { transition-delay: 0.31s; }
.pricing-card.reveal:nth-child(1) { transition-delay: 0.0s; }
.pricing-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.pricing-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.philosophy-col.reveal:nth-child(1) { transition-delay: 0.0s; }
.philosophy-col.reveal:nth-child(2) { transition-delay: 0.15s; }
.philosophy-col.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--peach);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(224,123,57,0.3);
}
.btn-primary:hover {
  background: var(--peach-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,123,57,0.4);
}
.btn-primary.btn-sm  { font-size: 0.9rem; padding: 0.65rem 1.4rem; }
.btn-primary.btn-large { font-size: 1.15rem; padding: 1rem 2.5rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  padding: 0.83rem 1.8rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--peach);
  color: var(--peach);
  background: rgba(224,123,57,0.07);
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  background: rgba(15, 24, 37, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo .arrow { color: var(--peach); }
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: transparent;
  border: 1.5px solid var(--peach);
  color: var(--peach);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--peach);
  color: var(--white);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 10rem 6rem 6rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(224,123,57,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(45,106,79,0.08) 0%, transparent 50%),
              var(--navy-deep);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-bg-text {
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-family: var(--ff-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--peach);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero-headline em {
  color: var(--peach);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--peach);
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-tagline em {
  color: var(--peach-pale);
}

/* ── HERO BELT VISUAL ───────────────────────────────────── */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 0.9s forwards;
}
.belt-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.belt {
  height: 36px;
  width: var(--w);
  background: var(--c);
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.8);
  font-weight: 500;
  margin-left: auto;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  transition: width 0.3s ease;
}
.belt--black {
  color: var(--peach-pale);
  letter-spacing: 0.18em;
}
.hero-dojo-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── RECOGNITION ────────────────────────────────────────── */
.recognition {
  background: var(--navy);
  padding: var(--section-pad);
  text-align: center;
}
.recognition-intro {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--peach);
  margin-bottom: 3rem;
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.rec-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.rec-item:hover {
  border-color: rgba(224,123,57,0.3);
  transform: translateY(-4px);
}
.rec-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.rec-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
.recognition-close {
  font-size: 1.1rem;
  color: var(--cream);
  font-style: italic;
}

/* ── INSIGHT ────────────────────────────────────────────── */
.insight {
  background: var(--green);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.insight::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
}
.insight-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.insight-quote {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-style: normal;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
}
.insight-quote strong {
  color: var(--gold);
}
.insight-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  padding-left: 2rem;
  border-left: 4px solid transparent;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.how {
  background: var(--navy-deep);
  padding: var(--section-pad);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}
.section-header h2 { color: var(--white); margin-bottom: 1rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }
.section-header--light h2 { color: var(--navy); }
.section-header--light p  { color: var(--text-body); }
.section-header--light .section-tag { color: var(--green); }
.section-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 0.75rem;
}

.peach-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.peach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
  cursor: default;
}
.peach-letter {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 0 0 rgba(224,123,57,0.4);
  transition: box-shadow 0.3s, transform 0.3s;
}
.peach-step:hover .peach-letter {
  box-shadow: 0 0 0 12px rgba(224,123,57,0.15);
  transform: scale(1.08);
}
.peach-detail h3 {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.peach-detail p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.peach-connector {
  font-size: 1.8rem;
  color: var(--peach);
  padding: 0 0.2rem;
  padding-top: 1.4rem;
  align-self: flex-start;
  opacity: 0.5;
}
.peach-connector--result {
  font-size: 2.2rem;
  opacity: 1;
  color: var(--gold);
}
.peach-result {
  text-align: center;
  width: 120px;
  padding-top: 0.6rem;
}
.peach-result-word {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.peach-result p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── RITUAL ─────────────────────────────────────────────── */
.ritual {
  background: var(--navy);
  padding: var(--section-pad);
}
.ritual-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.ritual-text .section-tag { display: block; margin-bottom: 0.5rem; }
.ritual-text h2 { margin-bottom: 1.2rem; }
.ritual-text p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1.05rem;
}
.ritual-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ritual-steps li {
  display: grid;
  grid-template-columns: 2rem 1fr 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.ritual-steps li:hover {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--peach);
}
.step--highlight {
  background: rgba(224,123,57,0.08) !important;
  border-left-color: var(--peach) !important;
}
.step-icon { font-size: 1.2rem; text-align: center; }
.step-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
}
.step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  font-family: var(--ff-mono);
}

/* ── FRUIT FARM ────────────────────────────────────────────── */
.fruit-farm {
  background: var(--cream);
  padding: var(--section-pad);
}
.fruit-farm .section-tag { color: var(--green); }
.fruit-farm h2 { color: var(--navy); }
.fruit-farm p { color: var(--text-body); }

.fruit-farm-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.fruit-farm-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.8rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  min-width: 110px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fruit-farm-stage:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.stage-emoji { font-size: 2.2rem; }
.stage-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.stage-desc {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--ff-mono);
}
.fruit-farm-arrow {
  font-size: 1.5rem;
  color: var(--green);
  opacity: 0.5;
  padding: 0 0.3rem;
}

/* ── SUN / STRESS ───────────────────────────────────────── */
.sun-section {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
}
.sun-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.sun-intro h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.sun-intro h3 em { color: var(--peach); }
.sun-intro p { color: var(--text-body); font-size: 1.05rem; }

.sun-states {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.sun-state {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.sun-state:hover { transform: translateY(-4px); }

.sun-state--none {
  background: #e8eaf2;
  color: var(--text-dark);
}
.sun-state--optimal {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 40px rgba(201,168,76,0.25);
  border: 2px solid var(--gold);
}
.sun-state--burn {
  background: #fdecea;
  color: var(--text-dark);
}

/* Sun orbs */
.sun-orb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
}
.sun-orb--none { background: #aab0c8; }
.sun-orb--optimal {
  background: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.6), 0 0 60px rgba(201,168,76,0.3);
}
.sun-orb--burn {
  background: #e05555;
  box-shadow: 0 0 20px rgba(224,85,85,0.4);
}

/* Sun rays animation */
.sun-rays {
  position: absolute;
  inset: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sun-rays span {
  position: absolute;
  width: 4px;
  height: 18px;
  background: var(--gold-light);
  border-radius: 2px;
  opacity: 0.7;
  transform-origin: center 8px;
  animation: spin-rays 8s linear infinite;
}
.sun-rays span:nth-child(1) { transform: rotate(0deg)   translateY(-55px); }
.sun-rays span:nth-child(2) { transform: rotate(45deg)  translateY(-55px); }
.sun-rays span:nth-child(3) { transform: rotate(90deg)  translateY(-55px); }
.sun-rays span:nth-child(4) { transform: rotate(135deg) translateY(-55px); }
.sun-rays span:nth-child(5) { transform: rotate(180deg) translateY(-55px); }
.sun-rays span:nth-child(6) { transform: rotate(225deg) translateY(-55px); }
.sun-rays span:nth-child(7) { transform: rotate(270deg) translateY(-55px); }
.sun-rays span:nth-child(8) { transform: rotate(315deg) translateY(-55px); }

@keyframes spin-rays {
  from { transform: rotate(var(--r, 0deg)) translateY(-55px); }
  to   { transform: rotate(calc(var(--r, 0deg) + 360deg)) translateY(-55px); }
}
/* Override individual ray start positions for spin */
.sun-rays span:nth-child(1) { --r: 0deg;   animation-delay: 0s; }
.sun-rays span:nth-child(2) { --r: 45deg;  animation-delay: 0s; }
.sun-rays span:nth-child(3) { --r: 90deg;  animation-delay: 0s; }
.sun-rays span:nth-child(4) { --r: 135deg; animation-delay: 0s; }
.sun-rays span:nth-child(5) { --r: 180deg; animation-delay: 0s; }
.sun-rays span:nth-child(6) { --r: 225deg; animation-delay: 0s; }
.sun-rays span:nth-child(7) { --r: 270deg; animation-delay: 0s; }
.sun-rays span:nth-child(8) { --r: 315deg; animation-delay: 0s; }

.sun-label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: inherit;
}
.sun-state--optimal .sun-label { color: var(--gold-light); }
.sun-equation {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.sun-state--optimal .sun-equation { color: rgba(255,255,255,0.6); }
.sun-state--none .sun-equation strong    { color: #555577; }
.sun-state--optimal .sun-equation strong { color: var(--gold-light); }
.sun-state--burn .sun-equation strong    { color: #c0392b; }
.sun-state p { font-size: 0.88rem; line-height: 1.65; color: var(--text-body); }
.sun-state--optimal p { color: rgba(255,255,255,0.7); }

.sun-cta-line {
  text-align: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
}

/* ── AXES ───────────────────────────────────────────────── */
.axes {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}
.axis {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.axis-icon { font-size: 2rem; flex-shrink: 0; padding-top: 0.1rem; }
.axis-content h4 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.axis-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.axis-content strong { color: var(--white); }
.axis-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing {
  background: var(--navy-deep);
  padding: var(--section-pad);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.pricing-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: rgba(224,123,57,0.3);
  transform: translateY(-4px);
}
.pricing-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  border-width: 2px;
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--ff-mono);
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier-badge {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-price span {
  font-size: 1.8rem;
  opacity: 0.7;
}
.pricing-price sub {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  vertical-align: baseline;
  margin-left: 0.2rem;
}
.pricing-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.4rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 600;
}
.btn-tier {
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-tier:hover {
  border-color: var(--peach);
  color: var(--peach);
  background: rgba(224,123,57,0.07);
}
.btn-tier--featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn-tier--featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

/* ── COHORT BANNER ──────────────────────────────────────── */
.cohort-banner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(224,123,57,0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cohort-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--peach);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.cohort-banner h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.cohort-banner p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.cohort-price { text-align: right; }
.cohort-early {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cohort-early span {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-left: 0.4rem;
}
.cohort-full {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── PHILOSOPHY ─────────────────────────────────────────── */
.philosophy {
  background: var(--navy);
  padding: var(--section-pad);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.philosophy-col h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.philosophy-col p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  background: var(--navy-deep);
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: clamp(10rem, 22vw, 28rem);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1rem;
}
.final-cta p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}
p.final-tagline {
  margin-top: 2rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--peach);
}

p.final-tagline em{
    color: var(--peach-pale);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo .arrow { color: var(--peach); }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--ff-mono);
}

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 9rem 3rem 5rem;
    text-align: center;
  }
  .hero-visual { align-items: center; max-width: 420px; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .ritual-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sun-states { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .cohort-banner { grid-template-columns: 1fr; text-align: center; }
  .cohort-price { text-align: center; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .axes { grid-template-columns: 1fr; }
  .axis-divider { width: 80px; height: 1px; margin: 0 auto; }
}

@media (max-width: 640px) {
  :root { --section-pad: 5rem 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 8rem 1.25rem 4rem; }
  .peach-flow { flex-direction: column; align-items: center; }
  .peach-connector { transform: rotate(90deg); padding: 0.2rem 0; }
  .cohort-banner { padding: 2rem 1.5rem; }
  .axes { padding: 2rem 1.5rem; }
}

/* ============================================================
   PEACH → Flow · Additional Styles
   New sections: ICP, The Loop, Insight Pillars
   Append to peach-flow.css
   ============================================================ */

/* ── ICP SECTION ────────────────────────────────────────── */
.icp {
  background: var(--cream);
  padding: var(--section-pad);
  text-align: center;
}
.icp-intro {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--peach);
  margin-bottom: 0.75rem;
}
.icp-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.icp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.icp-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid var(--peach);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.icp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.icp-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.icp-label {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.icp-tag {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--peach);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  font-style: italic;
}
.icp-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.icp-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--peach-pale);
  border-left: 3px solid var(--peach);
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  line-height: 1.55;
}

/* ── THE LOOP ───────────────────────────────────────────── */
.loop {
  background: var(--navy);
  padding: var(--section-pad);
}
.loop-inner {
  max-width: 760px;
  margin: 0 auto;
}
.loop-header {
  margin-bottom: 3rem;
}
.loop-header .section-tag {
  display: block;
  margin-bottom: 0.5rem;
}
.loop-header h2 {
  color: var(--white);
}
.loop-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.loop-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.loop-step:last-child {
  border-bottom: none;
}
.loop-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.loop-num--accent {
  background: var(--peach);
}
.loop-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.loop-content strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.loop-step--accent .loop-content strong {
  color: var(--peach);
}
.loop-content span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* Reveal delays for loop steps */
.loop-step.reveal:nth-child(1) { transition-delay: 0.0s; }
.loop-step.reveal:nth-child(2) { transition-delay: 0.08s; }
.loop-step.reveal:nth-child(3) { transition-delay: 0.16s; }
.loop-step.reveal:nth-child(4) { transition-delay: 0.24s; }
.loop-step.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ICP card reveal delays */
.icp-card.reveal:nth-child(1) { transition-delay: 0.0s; }
.icp-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.icp-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ── INSIGHT PILLARS ─────────────────────────────────────── */
.insight-pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.insight-pillar {
  flex: 1;
  min-width: 200px;
  background: rgba(0,0,0,0.2);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
}
.pillar-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.insight-pillar h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.insight-pillar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding-left: 0 !important;
  border-left: none !important;
}
.insight-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  padding: 1.8rem 0.5rem 0;
  align-self: flex-start;
}

/* Pillar reveal delays */
.insight-pillar.reveal:nth-child(1) { transition-delay: 0.0s; }
.insight-pillar.reveal:nth-child(2) { transition-delay: 0.12s; }
.insight-pillar.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ── RITUAL FOCUS NOTE ───────────────────────────────────── */
.ritual-focus-note {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.4) !important;
  font-style: italic;
  border-left: 2px solid rgba(224,123,57,0.3);
  padding-left: 0.75rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.6 !important;
}

/* ── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 1024px) {
  .insight-pillars {
    flex-direction: column;
  }
  .insight-arrow {
    transform: rotate(90deg);
    padding: 0.2rem 0;
    align-self: center;
  }
}
@media (max-width: 640px) {
  .icp-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PEACH → Flow · Additional Styles
   New sections: ICP, The Loop, Insight Pillars
   Append to peach-flow.css
   ============================================================ */

/* ── ICP SECTION ────────────────────────────────────────── */
.icp {
  background: var(--cream);
  padding: var(--section-pad);
  text-align: center;
}
.icp-intro {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--peach);
  margin-bottom: 0.75rem;
}
.icp-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.icp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.icp-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid var(--peach);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.icp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.icp-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.icp-label {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.icp-tag {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--peach);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  font-style: italic;
}
.icp-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.icp-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--peach-pale);
  border-left: 3px solid var(--peach);
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  line-height: 1.55;
}

/* ── THE LOOP ───────────────────────────────────────────── */
.loop {
  background: var(--navy);
  padding: var(--section-pad);
}
.loop-inner {
  max-width: 760px;
  margin: 0 auto;
}
.loop-header {
  margin-bottom: 3rem;
}
.loop-header .section-tag {
  display: block;
  margin-bottom: 0.5rem;
}
.loop-header h2 {
  color: var(--white);
}
.loop-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.loop-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.loop-step:last-child {
  border-bottom: none;
}
.loop-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.loop-num--accent {
  background: var(--peach);
}
.loop-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.loop-content strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.loop-step--accent .loop-content strong {
  color: var(--peach);
}
.loop-content span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* Reveal delays for loop steps */
.loop-step.reveal:nth-child(1) { transition-delay: 0.0s; }
.loop-step.reveal:nth-child(2) { transition-delay: 0.08s; }
.loop-step.reveal:nth-child(3) { transition-delay: 0.16s; }
.loop-step.reveal:nth-child(4) { transition-delay: 0.24s; }
.loop-step.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ICP card reveal delays */
.icp-card.reveal:nth-child(1) { transition-delay: 0.0s; }
.icp-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.icp-card.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ── INSIGHT PILLARS ─────────────────────────────────────── */
.insight-pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.insight-pillar {
  flex: 1;
  min-width: 200px;
  background: rgba(0,0,0,0.2);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
}
.pillar-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.insight-pillar h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.insight-pillar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding-left: 0 !important;
  border-left: none !important;
}
.insight-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  padding: 1.8rem 0.5rem 0;
  align-self: flex-start;
}

/* Pillar reveal delays */
.insight-pillar.reveal:nth-child(1) { transition-delay: 0.0s; }
.insight-pillar.reveal:nth-child(2) { transition-delay: 0.12s; }
.insight-pillar.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ── RITUAL FOCUS NOTE ───────────────────────────────────── */
.ritual-focus-note {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.4) !important;
  font-style: italic;
  border-left: 2px solid rgba(224,123,57,0.3);
  padding-left: 0.75rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.6 !important;
}

/* ── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 1024px) {
  .insight-pillars {
    flex-direction: column;
  }
  .insight-arrow {
    transform: rotate(90deg);
    padding: 0.2rem 0;
    align-self: center;
  }
}
@media (max-width: 640px) {
  .icp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── COMING SOON TIER BUTTON ─────────────────────────────── */
.btn-tier--soon {
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--ff-mono);
  letter-spacing: 0.08em;
  cursor: default;
  user-select: none;
}

/* ── WAITLIST STRIP ─────────────────────────────────────── */
.waitlist-strip {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}
.waitlist-strip p {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.waitlist-note {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  font-style: italic;
  margin-bottom: 1.5rem !important;
}
.waitlist-strip .btn-ghost {
  display: inline-flex;
}