/* === MACRODIET STYLES === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body { min-height: 100vh; }

img, svg { display: block; max-width: 100%; height: auto; }

button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

:root {
  --primary: #00C785;
  --primary-deep: #00A06D;
  --primary-darker: #00794F;
  --primary-soft: #E6FAF2;
  --primary-softer: #F2FCF8;
  --forest: #0B3B2A;
  --forest-soft: #1a5340;
  --cream: #F4F0E6;
  --cream-deep: #E8E2D1;
  --premium: #7C3AED;
  --text: #1A1A1A;
  --text-muted: #6b6b66;
  --bg: #FFFFFF;
  --bg-alt: #FAFAF7;
  --bg-pure: #FFFFFF;
  --divider: #E8E6DE;
  --divider-green: rgba(0,199,133,0.16);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,121,79,0.18);
  --shadow-green: 0 20px 50px -20px rgba(0,199,133,0.45);
  --max: 1240px;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Work Sans', -apple-system, system-ui, sans-serif;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--primary); color: white; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) { .wrap { padding: 0 48px; } }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-deep);
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.5) blur(20px);
  -webkit-backdrop-filter: saturate(1.5) blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--divider);
  background: rgba(255, 255, 255, 0.95);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 60;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 9px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 16px -6px rgba(0,199,133,0.55);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover { background: var(--primary-deep); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(0,199,133,0.6); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 70px 0 110px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0,199,133,0.22), rgba(0,199,133,0.04) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -240px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,199,133,0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 100px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--primary-deep);
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: var(--text);
  font-variation-settings: 'SOFT' 40, 'opsz' 144;
}

.hero-title em {
  font-style: italic;
  color: var(--primary);
  font-variation-settings: 'SOFT' 100;
}

.hero-title .mark {
  color: var(--primary);
  font-style: italic;
  font-variation-settings: 'SOFT' 100;
  position: relative;
  display: inline-block;
}

.hero-title .mark::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 4%;
  height: 14%;
  background: var(--primary);
  opacity: 0.18;
  border-radius: 4px;
  z-index: -1;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 12px;
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.45);
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
}

.app-store-badge img {
  display: block;
  height: 56px;
  width: auto;
}

.soon {
  font-size: 0.78rem;
  color: var(--primary-deep);
  padding: 6px 14px;
  border: 1px dashed var(--primary-deep);
  border-radius: 30px;
  background: rgba(0,199,133,0.06);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ORB */
.orb-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.orb-rings {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid var(--divider);
  pointer-events: none;
}

.orb-rings::before,
.orb-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--divider);
}

.orb-rings::before { inset: -8%; opacity: 0.6; }
.orb-rings::after { inset: -16%; opacity: 0.3; }

.orb-fruit {
  position: absolute;
  font-size: 2.4rem;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.18));
  animation: orbFloat 7s ease-in-out infinite;
  will-change: transform;
}

.orb-fruit--1 { top: 4%;  left: 8%;   animation-delay: 0s;    font-size: 2.6rem; }
.orb-fruit--2 { top: -4%; left: 52%;  animation-delay: -1.2s; font-size: 2.2rem; }
.orb-fruit--3 { top: 18%; right: -2%; animation-delay: -2.4s; font-size: 2.5rem; }
.orb-fruit--4 { top: 60%; right: -6%; animation-delay: -3.6s; font-size: 2.3rem; }
.orb-fruit--5 { bottom: 2%; right: 18%; animation-delay: -4.8s; font-size: 2.7rem; }
.orb-fruit--6 { bottom: -4%; left: 38%; animation-delay: -1.8s; font-size: 2.4rem; }
.orb-fruit--7 { bottom: 14%; left: -4%; animation-delay: -3s;   font-size: 2.5rem; }
.orb-fruit--8 { top: 44%; left: -8%;  animation-delay: -5.4s; font-size: 2.4rem; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50%      { transform: translate(0, -14px) rotate(6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .orb-fruit { animation: none; }
}

.orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 50px 100px -30px rgba(0, 121, 79, 0.42),
    0 0 0 1px rgba(0,0,0,0.05);
  animation: spin 48s linear infinite;
}

.orb-half-dark,
.orb-half-light {
  position: absolute;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-half-dark {
  left: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15), transparent 55%),
    linear-gradient(180deg, var(--primary), var(--primary-darker));
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
}

.orb-half-light {
  right: 0;
  background:
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.04), transparent 50%),
    linear-gradient(180deg, #FBF8EF, var(--cream));
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
}

.orb-bulb {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
}

.orb-bulb--top {
  top: 0;
  left: 25%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(180deg, var(--primary), var(--primary-darker));
}

.orb-bulb--bot {
  bottom: 0;
  left: 25%;
  background:
    radial-gradient(circle at 60% 65%, rgba(0,0,0,0.04), transparent 55%),
    linear-gradient(180deg, #FBF8EF, var(--cream));
}

.orb-dot {
  position: absolute;
  width: 14%;
  height: 14%;
  border-radius: 50%;
  z-index: 3;
}

.orb-dot--on-dark {
  top: 18%;
  left: 43%;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.orb-dot--on-light {
  bottom: 18%;
  left: 43%;
  background: var(--primary-darker);
}

@keyframes spin { to { transform: rotate(360deg); } }

.orb-label {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: lowercase;
  white-space: nowrap;
}

.orb-label--yin { top: 8%; right: -50px; }
.orb-label--yang { bottom: 8%; left: -50px; }

@media (max-width: 720px) {
  .orb-label { display: none; }
  .orb-rings { inset: -4%; }
  .orb-fruit { font-size: 1.7rem !important; }
}

/* === TICKER === */
.ticker {
  background: linear-gradient(90deg, #063f2c 0%, #0a5c42 50%, #063f2c 100%);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,199,133,0.3);
  border-bottom: 1px solid rgba(0,199,133,0.3);
}

.ticker-wrap {
  display: flex;
  width: max-content;
  animation: tickerMove 45s linear infinite;
}

.ticker-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  padding-right: 60px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: 'SOFT' 80;
}

.ticker-item em {
  font-style: italic;
  color: var(--primary);
  font-variation-settings: 'SOFT' 100;
}

.ticker-item::after {
  content: '❋';
  color: var(--primary);
  opacity: 0.55;
  font-size: 1.1rem;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SHOWCASE (food image) === */
.showcase {
  padding: 120px 0 20px;
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,199,133,0.14), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(0,199,133,0.10), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 960px) {
  .showcase-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 90px;
  }
}

.showcase-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-green), 0 40px 80px -30px rgba(0,0,0,0.25);
  aspect-ratio: 4/5;
  background: var(--primary-soft);
  transform: rotate(-1.2deg);
  transition: transform 0.6s cubic-bezier(.22,.8,.3,1);
}

.showcase-media:hover { transform: rotate(0deg) scale(1.01); }

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,121,79,0.25));
  pointer-events: none;
}

.showcase-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.86rem;
  font-variation-settings: 'SOFT' 100;
  color: #fff;
  letter-spacing: 0.01em;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.showcase-caption::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

.showcase-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,0.95);
  color: var(--primary-darker);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.showcase-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 20px;
  margin-bottom: 24px;
  font-variation-settings: 'SOFT' 40;
}

.showcase-copy h2 em {
  font-style: italic;
  color: var(--primary);
  font-variation-settings: 'SOFT' 100;
}

.showcase-copy p {
  font-size: 1.06rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 46ch;
}

.showcase-copy p strong { color: var(--text); font-weight: 500; }

.showcase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 30px;
  background: var(--primary-soft);
  color: var(--primary-darker);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0,199,133,0.2);
}

.showcase-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* === FEATURES === */
.features {
  padding: 140px 0 120px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 80px;
}

.section-intro h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-top: 20px;
  margin-bottom: 28px;
  font-variation-settings: 'SOFT' 40;
}

.section-intro h2 em {
  font-style: italic;
  color: var(--primary-deep);
  font-variation-settings: 'SOFT' 100;
}

.section-intro p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 50ch;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  gap: 2px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 820px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  background: var(--bg);
  padding: 54px 40px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature:hover { background: var(--bg-pure); }

.feature-index {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-deep);
  letter-spacing: 0.05em;
  font-variation-settings: 'SOFT' 100;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 16px;
  font-size: 1.55rem;
  margin-bottom: 4px;
  box-shadow: inset 0 0 0 1px rgba(0,199,133,0.18);
}

.feature h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-variation-settings: 'SOFT' 50;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--primary-softer) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,199,133,0.18), transparent 70%);
  pointer-events: none;
}

.philosophy::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,199,133,0.12), transparent 70%);
  pointer-events: none;
}

.philosophy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.philosophy-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--primary-darker);
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  position: relative;
  padding-left: 40px;
  border-left: 3px solid var(--primary);
}

.philosophy-quote::first-letter { font-weight: 500; }

.philosophy-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.philosophy-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.philosophy-body p strong {
  color: var(--primary-darker);
  font-weight: 500;
}

.philosophy-body .dual {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.dual-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dual-tag b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  font-style: italic;
  font-variation-settings: 'SOFT' 100;
}

.dual-tag--yin b { color: #3b5e4e; }
.dual-tag--yang b { color: var(--primary); }

.dual-tag span {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* === PRICING === */
.pricing {
  padding: 140px 0 120px;
  background: var(--bg-pure);
}

.plans {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .plans { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.plan {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: 26px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,199,133,0.3);
}

.plan--featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 65%, var(--primary-darker) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-green);
}

.plan--featured:hover { border-color: var(--primary); box-shadow: 0 28px 60px -20px rgba(0,121,79,0.5); }
.plan--featured h3 { color: #fff; }
.plan--featured .plan-price { color: #fff; }

.plan-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: #fff;
  color: var(--primary-darker);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,0.15);
}

.plan h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.plan--featured .plan-tagline { color: rgba(255,255,255,0.8); }

.plan-price {
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 6px;
  font-variation-settings: 'SOFT' 60;
}

.plan-price small {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan--featured .plan-price small { color: rgba(255,255,255,0.8); }

.plan-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.plan--featured .plan-period { color: rgba(255,255,255,0.8); }

.plan-features {
  margin-bottom: 32px;
  flex: 1;
}

.plan-feature {
  padding: 12px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--divider);
  line-height: 1.5;
}

.plan--featured .plan-feature { border-bottom-color: rgba(255,255,255,0.18); }
.plan--featured .plan-feature::before { background: #fff; }

.plan-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--text);
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: -0.005em;
}

.plan-cta:hover { transform: translateY(-1px); background: var(--primary); box-shadow: 0 12px 24px -10px rgba(0,199,133,0.55); }

.plan--featured .plan-cta { background: #fff; color: var(--primary-darker); font-weight: 600; }
.plan--featured .plan-cta:hover { background: var(--primary-soft); color: var(--primary-darker); }

/* === CTA BAND === */
.cta-band {
  padding: 130px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-softer) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, rgba(0,199,133,0.2), transparent 60%);
  pointer-events: none;
}

.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-variation-settings: 'SOFT' 40;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--primary);
  font-variation-settings: 'SOFT' 100;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 42px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, #063f2c 0%, #042a1c 100%);
  color: #fff;
  padding: 90px 0 36px;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,199,133,0.18), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 48px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; }
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.footer-brand h4 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  font-variation-settings: 'SOFT' 60;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  max-width: 320px;
  line-height: 1.55;
}

.footer h5 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--primary); }

.footer-bottom {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.footer-bottom em {
  font-family: var(--display);
  font-style: italic;
  color: var(--primary);
  font-variation-settings: 'SOFT' 100;
}

/* === PAGES (privacy/support) === */
.page {
  padding: 70px 0 120px;
}

.page-header {
  margin-bottom: 70px;
  max-width: 760px;
}

.page-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  margin-top: 12px;
  font-variation-settings: 'SOFT' 40;
}

.page-header h1 em {
  font-style: italic;
  color: var(--primary-deep);
  font-variation-settings: 'SOFT' 100;
}

.page-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.prose {
  max-width: 720px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--text);
}

.prose h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.55rem;
  margin-top: 56px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-variation-settings: 'SOFT' 40;
}

.prose h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--primary-darker);
}

.prose p {
  margin-bottom: 18px;
  color: var(--text);
}

.prose ul {
  margin-bottom: 24px;
  padding-left: 0;
}

.prose ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: var(--primary);
}

.prose strong { font-weight: 600; color: var(--text); }

.prose em { font-family: var(--display); font-style: italic; color: var(--text-muted); }

.prose a {
  color: var(--primary-deep);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 1px;
  transition: background 0.2s;
}

.prose a:hover { background: rgba(0,199,133,0.1); }

.prose hr {
  border: none;
  height: 1px;
  background: var(--divider);
  margin: 48px 0;
}

.prose .note-box {
  background: var(--cream);
  padding: 24px 28px;
  border-radius: 16px;
  margin: 28px 0;
  font-size: 0.98rem;
  border-left: 3px solid var(--primary);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary-deep);
  margin-bottom: 40px;
  transition: gap 0.2s, color 0.2s;
}

.back-link::before { content: '←'; font-size: 1.1rem; }
.back-link:hover { gap: 14px; color: var(--primary-darker); }

/* === REVEAL ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(.22,.8,.3,1), transform 0.9s cubic-bezier(.22,.8,.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }

  .hero-title,
  .hero-eyebrow,
  .hero-lead,
  .hero-cta,
  .orb-stage {
    opacity: 0;
    animation: fadeUp 1.1s cubic-bezier(.22,.8,.3,1) both;
  }
  .hero-eyebrow { animation-delay: 0.05s; }
  .hero-title { animation-delay: 0.15s; }
  .hero-lead { animation-delay: 0.3s; }
  .hero-cta { animation-delay: 0.45s; }
  .orb-stage { animation-delay: 0.5s; animation-duration: 1.4s; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
