/* ═══════════════════════════════════════════════════════════════
   edenia. — Landing page
   1. Variables   2. Reset   3. Typo & utils   4. Cursor
   5. Nav   6. Hero   7. Phone/skeleton   8. Proof   9. How
   10. Why   11. Benefits   12. Pricing   13. Founder
   14. Mission   15. Footer   16. Responsive   17. Reduced motion
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Variables ─────────────────────────────────────────────── */
:root {
  --navy: #011949;
  --navy-light: #0a2260;
  --cream: #F5F1E8;
  --cream-deep: #EBE5D3;
  --gold: #D4AF7A;
  --gold-dark: #B8935A;
  --green: #2D5F3F;
  --sage: #A8C5A8;
  --terracotta: #C97B5E;
  --white: #FFFFFF;
  --hex: #F8F3ED;

  --ff-serif: 'Fraunces', Georgia, serif;
  --ff-sans: 'Manrope', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
}

/* ── 2. Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--navy);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
em { font-style: italic; }

/* ── 3. Typo & utils ──────────────────────────────────────────── */
h1, h2, h3 { font-weight: 400; line-height: 1.05; }
h2 { font-family: var(--ff-serif); font-weight: 300; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.02em; }
h3 { font-family: var(--ff-sans); font-weight: 600; font-size: 24px; line-height: 1.25; }

.label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}
.label--gold { color: var(--gold); }

.section-tag { color: var(--gold); }

.btn {
  --b: var(--gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease-out), background 0.3s, color 0.3s;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 24px -8px rgba(212,175,122,0.5); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(212,175,122,0.65); }
.btn--ghost { border: 1px solid rgba(245,241,232,0.4); color: var(--cream); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--cream); background: rgba(245,241,232,0.06); }
.btn--outline-navy { border: 1px solid var(--navy); color: var(--navy); }
.btn--outline-navy:hover { transform: translateY(-3px); background: var(--navy); color: var(--cream); }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.4);
  animation: ripple 0.6s var(--ease-out);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); display: inline-block; position: relative; flex-shrink: 0;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; animation: pulse 2s var(--ease-out) infinite;
}
.pulse-dot--green { background: var(--sage); }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3); opacity: 0; } }

/* Reveal base */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* big faded section number */
.bg-number {
  position: absolute;
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(180px, 34vw, 400px);
  color: var(--navy);
  opacity: 0.03;
  top: 2%; right: 4%;
  line-height: 1; pointer-events: none; user-select: none;
}

/* ── 4. Cursor custom ─────────────────────────────────────────── */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  * { cursor: none; }
  .cursor {
    display: block; position: fixed; top: 0; left: 0;
    width: 34px; height: 34px; border: 1.5px solid var(--cream);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--spring), height 0.25s var(--spring), background 0.25s, border-color 0.25s;
    mix-blend-mode: difference;
  }
  .cursor.is-hover { width: 54px; height: 54px; background: rgba(245,241,232,0.1); }
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0;
    width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  }
}

/* ── 5. Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, padding 0.4s;
  padding: 22px 0;
}
.nav.is-scrolled {
  background: rgba(1,25,73,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -12px rgba(0,0,0,0.5);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); }
.logo__mark { color: var(--gold); display: inline-flex; transition: transform 0.4s var(--spring); }
.logo:hover .logo__mark { transform: rotate(5deg); }
.logo__word { font-family: var(--ff-serif); font-style: italic; font-weight: 300; font-size: 22px; letter-spacing: -0.01em; }
.logo__word .dot { color: var(--gold); }
.logo--lg .logo__word { font-size: 30px; }

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  position: relative; color: var(--cream); font-size: 14px; font-weight: 500;
  padding: 4px 0; opacity: 0.85; transition: opacity 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

/* ── 6. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; background: var(--navy); color: var(--cream);
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 32px 80px; overflow: hidden;
}
.hero__bg-e {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-serif); font-style: italic; font-weight: 300;
  font-size: 90vh; line-height: 0.8; color: var(--cream); opacity: 0.035;
  pointer-events: none; user-select: none;
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: var(--gold); opacity: 0.4; }
.hero__cursor-glow {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,122,0.13), transparent 65%);
  transform: translate(-50%, -50%); pointer-events: none;
  left: var(--mx, 70%); top: var(--my, 40%);
  transition: left 0.5s var(--ease-out), top 0.5s var(--ease-out);
}
.hero__inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 55% 45%; align-items: center; gap: 32px;
}
.hero__title {
  font-family: var(--ff-serif); font-style: italic; font-weight: 300;
  font-size: clamp(52px, 8vw, 96px); line-height: 1.05; letter-spacing: -0.03em;
  margin: 24px 0; color: var(--cream);
}
.hero__title .word-line { display: block; overflow: hidden; padding-bottom: 0.12em; }
.hero__title .word {
  display: inline-block; transform: translateY(110%); opacity: 0;
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out);
}
.hero__title .word.in { transform: none; opacity: 1; }
.hero__title em { color: var(--gold); font-style: italic; }
.reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 0.9s var(--ease-out) 0.5s; display: inline-block; }
.reveal-clip.in { clip-path: inset(0 0 0 0); }

.hero__lead { max-width: 480px; font-size: 18px; color: rgba(245,241,232,0.78); margin-bottom: 32px; }
.hero__lead strong { color: var(--cream); font-weight: 600; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__proof { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(245,241,232,0.6); }
.hero__proof strong { color: var(--gold); font-weight: 600; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.phone--float { animation: floaty 3s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.float-card {
  position: absolute; z-index: 3; border-radius: 12px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px; font-size: 13px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.45);
  animation: floatcard 4.5s ease-in-out infinite;
}
.float-card--cream { background: var(--cream); color: var(--navy); top: 8%; left: -6%; transform: rotate(-4deg); }
.float-card--navy { background: var(--navy-light); color: var(--cream); bottom: 10%; right: -8%; transform: rotate(3deg); animation-delay: -2s; border: 1px solid rgba(212,175,122,0.25); }
.float-card__cap { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.08em; opacity: 0.7; }
.float-card__main { font-family: var(--ff-serif); font-size: 18px; }
.float-card__ok { color: var(--green); font-weight: 600; font-size: 12px; }
.float-card--navy .float-card__cap { display: inline-flex; align-items: center; gap: 6px; }
@keyframes floatcard { 0%,100% { transform: translateY(0) rotate(var(--r,-4deg)); } 50% { transform: translateY(-10px) rotate(var(--r,-4deg)); } }
.float-card--cream { --r: -4deg; }
.float-card--navy { --r: 3deg; }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 1px; height: 48px; background: rgba(245,241,232,0.2); overflow: hidden; }
.hero__scroll span { position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrolldown 2s var(--ease-out) infinite; }
@keyframes scrolldown { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ── 7. Phone frame + skeleton ────────────────────────────────── */
.phone {
  position: relative; width: 280px; aspect-ratio: 280 / 570;
  background: #0c0c0e; border-radius: 42px; padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.06);
}
.phone--sm { width: 230px; }
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 46%; height: 22px; background: #0c0c0e; border-radius: 0 0 14px 14px; z-index: 4; }
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
}
.phone__screen--transparent { background: transparent; }
.phone__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.phone__screen--transparent img { object-fit: contain; object-position: center; background: transparent; }
.phone__screen img.img--failed { display: none; }
.screen-skeleton { position: absolute; inset: 0; z-index: 1; }

.phone__screen--framed { border-radius: 24px; aspect-ratio: 280 / 570; width: 100%; max-width: 320px; }

/* ── 8. Proof ─────────────────────────────────────────────────── */
.proof { background: var(--cream); padding: 112px 32px; }
.proof__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof__stats .label { margin-bottom: 24px; }
.stat { margin-bottom: 40px; }
.stat__num { display: block; font-family: var(--ff-serif); font-weight: 300; font-size: clamp(56px, 8vw, 96px); color: var(--navy); line-height: 0.9; letter-spacing: -0.03em; }
.stat__lbl { display: block; font-size: 15px; color: rgba(1,25,73,0.6); margin-top: 8px; }

.proof__carousel { position: relative; }
.carousel__track { display: flex; transition: transform 0.6s var(--ease-out); }
.t-slide { min-width: 100%; padding: 8px 4px; }
.t-slide blockquote { font-family: var(--ff-serif); font-style: italic; font-weight: 300; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4; color: var(--navy); }
.t-slide blockquote strong { font-style: normal; font-weight: 400; color: var(--gold-dark); }
.t-slide figcaption { margin-top: 24px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.t-slide__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.t-slide__city { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(1,25,73,0.5); font-weight: 400; }
.carousel__nav { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.carousel__btn { width: 44px; height: 44px; border: 1px solid rgba(1,25,73,0.2); border-radius: 50%; color: var(--navy); font-size: 20px; transition: background 0.3s, color 0.3s, transform 0.3s; }
.carousel__btn:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot { width: 28px; height: 3px; border-radius: 2px; background: rgba(1,25,73,0.2); transition: background 0.3s; }
.carousel__dot.is-active { background: var(--gold); }

/* ── 8B. Community carousel ───────────────────────────────────── */
.carousel-container { overflow: hidden; width: 100%; }
.carousel-track { display: flex; gap: 24px; width: calc(280px * 14 + 24px * 13); animation: carousel-scroll 30s linear infinite; }
.carousel-container:hover .carousel-track { animation-play-state: paused; }

@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-280px * 7 - 24px * 6)); }
}

/* ── 9. How (diagonal cut top) ────────────────────────────────── */
.how { position: relative; background: var(--white); padding: 140px 32px; overflow: hidden; clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%); margin-top: -2vw; }
.how__inner { position: relative; max-width: var(--maxw); margin: 0 auto; z-index: 2; }
.how__head { text-align: center; margin-bottom: 80px; }
.how__head .label { margin-bottom: 16px; }
.how__head h2 { color: var(--navy); }

.timeline { position: relative; }
.timeline__line { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 4px; height: 100%; }
.timeline__line path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.4s var(--ease-out); }
.timeline.is-drawn .timeline__line path { stroke-dashoffset: 0; }

.step { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.step:last-child { margin-bottom: 0; }
.step--right .step__body { order: 2; }
.step__body { max-width: 420px; }
.step--right .step__body { margin-left: auto; }
.step__n { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.2em; color: var(--gold-dark); }
.step__icon { display: inline-flex; margin: 16px 0; padding: 12px; border-radius: 14px; background: rgba(212,175,122,0.12); }
.step__body h3 { color: var(--navy); margin-bottom: 12px; }
.step__body p { color: rgba(1,25,73,0.66); font-size: 16px; }
.step__visual { display: flex; justify-content: center; }

/* ── 10. Why (irregular 2x2) ──────────────────────────────────── */
.why { position: relative; background: var(--navy); color: var(--cream); padding: 140px 32px; overflow: hidden; }
.why__inner { max-width: var(--maxw); margin: 0 auto; }
.why__head { margin-bottom: 64px; max-width: 640px; }
.why__head .label { margin-bottom: 16px; }
.why__head h2 { color: var(--cream); font-style: italic; }
.why__head em { color: var(--gold); }
.why__grid { display: grid; grid-template-columns: 1.3fr 1fr; grid-auto-rows: minmax(180px, auto); gap: 16px; }
.fcard {
  position: relative; background: var(--navy-light); border: 0.5px solid rgba(212,175,122,0.18);
  border-radius: 16px; padding: 32px; overflow: hidden;
  transition: transform 0.4s var(--ease-out), background 0.4s, color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d; color: var(--cream);
}
.fcard--lg { grid-row: span 2; }
.fcard__icon { color: var(--gold); display: inline-flex; margin-bottom: 20px; transition: color 0.4s; }
.fcard h3 { margin-bottom: 12px; }
.fcard p { font-size: 15px; color: rgba(245,241,232,0.6); transition: color 0.4s; }
.fcard:hover { background: var(--gold); color: var(--navy); box-shadow: 0 30px 60px -24px rgba(212,175,122,0.5); }
.fcard:hover .fcard__icon { color: var(--navy); }
.fcard:hover p { color: rgba(1,25,73,0.78); }
.fcard__shot { margin-top: 24px; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; position: relative; background: linear-gradient(170deg, var(--navy), var(--navy-light)); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }
.fcard__shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; z-index: 2; }
.fcard__shot img.img--failed { display: none; }
.fcard__shot--mini { aspect-ratio: 16/8; }

/* ── 11. Benefits ─────────────────────────────────────────────── */
.benefits { background: var(--cream); padding: 140px 32px; }
.benefits__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1fr; gap: 80px; align-items: start; }
.benefits__visual { position: sticky; top: 100px; display: flex; justify-content: center; }
.benefits__image-frame { padding: 0; background: var(--cream); box-shadow: none; border-radius: 28px; }
.benefits__image-frame img { display: block; max-width: 100%; width: auto; height: auto; object-fit: contain; background: transparent; }
.framed { padding: 16px; background: var(--white); border-radius: 28px; box-shadow: 0 40px 90px -40px rgba(212,175,122,0.7), 0 10px 30px -20px rgba(1,25,73,0.3); }
.benefits__list .label { margin-bottom: 32px; }
.benefit { padding: 32px 0; border-top: 1px solid rgba(212,175,122,0.4); }
.benefit:first-of-type { border-top: none; }
.benefit__icon { display: inline-flex; margin-bottom: 14px; }
.benefit h3 { color: var(--navy); margin-bottom: 10px; }
.benefit p { color: rgba(1,25,73,0.66); font-size: 16px; }
.benefits__quote { margin-top: 32px; background: var(--navy); color: var(--cream); padding: 40px; border-radius: 20px; font-family: var(--ff-serif); font-style: italic; font-weight: 300; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4; }

/* ── 12. Pricing ──────────────────────────────────────────────── */
.pricing { background: var(--white); padding: 140px 32px; }
.pricing__inner { max-width: var(--maxw); margin: 0 auto; }
.pricing__head { text-align: center; margin-bottom: 72px; }
.pricing__head .label { margin-bottom: 16px; }
.pricing__head h2 { color: var(--navy); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan {
  position: relative; border: 1px solid var(--cream-deep); border-radius: 18px; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 8px; background: var(--white);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(1,25,73,0.25); }
.plan--featured { background: var(--navy); color: var(--cream); border-color: var(--navy); transform: translateY(-20px); box-shadow: 0 40px 80px -30px rgba(1,25,73,0.5); }
.plan--featured:hover { transform: translateY(-26px); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; font-weight: 500; }
.plan__name { font-family: var(--ff-serif); font-style: italic; font-size: 22px; }
.plan__price { font-family: var(--ff-serif); font-weight: 300; font-size: 40px; line-height: 1; margin: 4px 0; }
.plan__price small { font-family: var(--ff-sans); font-size: 14px; opacity: 0.6; }
.plan__sub { font-size: 14px; opacity: 0.7; margin-bottom: 16px; }
.plan__feats { display: flex; flex-direction: column; gap: 12px; margin: 8px 0 28px; flex: 1; }
.plan__feats li { position: relative; padding-left: 24px; font-size: 15px; }
.plan__feats li::before { content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg); }
.plan .btn { width: 100%; }

/* ── 13. Founder (animated navy gradient) ─────────────────────── */
.founder {
  position: relative; color: var(--cream); padding: 140px 32px; overflow: hidden;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  background-size: 220% 220%; animation: gradientmove 20s ease infinite;
}
@keyframes gradientmove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.founder__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center; }
.founder__main .label { margin-bottom: 16px; }
.founder__main h2 { color: var(--cream); font-style: italic; margin-bottom: 40px; }
.founder__main h2 em { color: var(--gold); }

.founder__score { position: relative; width: 200px; height: 200px; margin-bottom: 32px; }
.score-ring { transform: rotate(0deg); }
#scoreArc { transition: stroke-dashoffset 1.6s var(--ease-out); }
.score-ring__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring__val { font-family: var(--ff-serif); font-style: italic; font-weight: 300; font-size: 52px; color: var(--gold); line-height: 1; }
.score-ring__max { font-size: 12px; color: rgba(245,241,232,0.7); margin-top: 2px; }
.score-ring__rank { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); margin-top: 8px; }

.rankcard { background: var(--navy-light); border: 1px solid rgba(212,175,122,0.3); border-radius: 16px; padding: 28px; margin-bottom: 32px; max-width: 360px; }
.rankcard .label { margin-bottom: 8px; }
.rankcard__num { display: block; font-family: var(--ff-serif); font-weight: 300; font-size: 56px; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.rankcard__sub { display: block; font-size: 14px; color: rgba(245,241,232,0.6); margin-top: 8px; }

.founder__form { display: flex; flex-direction: column; gap: 18px; max-width: 480px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--cream); }
.field__opt { font-weight: 400; color: rgba(245,241,232,0.5); }
.founder__form input { width: 100%; background: rgba(245,241,232,0.04); border: 1px solid rgba(245,241,232,0.28); border-radius: 8px; padding: 15px 18px; color: var(--cream); font-size: 15px; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s; }
.founder__form input::placeholder { color: rgba(245,241,232,0.45); }
.founder__form input:focus { outline: none; border-color: var(--gold); background: rgba(245,241,232,0.07); box-shadow: 0 0 0 3px rgba(212,175,122,0.18); }
.founder__form .btn { width: 100%; margin-top: 4px; }
.founder__note { font-size: 13px; color: rgba(245,241,232,0.5); text-align: center; }
.founder__success { font-size: 14px; color: var(--sage); font-weight: 600; text-align: center; }
.founder__visual { display: flex; justify-content: center; }

/* ── 14. Mission ──────────────────────────────────────────────── */
.mission { background: var(--cream); padding: 140px 32px; }
.mission__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 64px; align-items: start; }
.mission__text .label { margin-bottom: 16px; }
.mission__text h2 { color: var(--navy); margin-bottom: 24px; }
.mission__text h2 em { color: var(--gold-dark); font-style: italic; }
.mission__text > p { font-size: 18px; line-height: 1.8; color: rgba(1,25,73,0.78); max-width: 620px; margin-bottom: 48px; }
.mission__piliers {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--gold);
  padding-top: 32px;
  margin-top: 16px;
}
.pillar {
  position: relative;
  flex: 1;
  padding: 0 18px;
}
.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.pillar__num {
  display: block;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pillar__title {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.pillar__count {
  font-family: var(--ff-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-right: 10px;
}
.pillar__text {
  margin: 10px 0 0;
  color: rgba(1,25,73,0.7);
  font-size: 16px;
  line-height: 1.8;
}
.polarities { display: flex; gap: 64px; flex-wrap: wrap; }
.polarity__head { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 16px; }
.polarity ul { display: flex; flex-direction: column; gap: 10px; }
.polarity li { font-family: var(--ff-serif); font-style: italic; font-size: 22px; color: var(--navy); }
.polarity--neg li { text-decoration: line-through; color: #a7a195; font-style: normal; font-family: var(--ff-sans); font-size: 18px; }
.mission__cities { display: flex; flex-direction: column; gap: 14px; }
.pill { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--cream); padding: 14px 22px; border-radius: 100px; font-weight: 500; font-size: 15px; border: 1px solid transparent; transition: transform 0.3s var(--spring), border-color 0.3s; }
.pill:hover { transform: translateX(8px); border-color: var(--gold); }
.pill__emoji { font-size: 18px; }

/* ── 15. Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--cream); padding: 96px 32px 48px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 48px; align-items: start; }
.footer__slogan { font-family: var(--ff-serif); font-style: italic; font-weight: 300; font-size: 20px; color: rgba(245,241,232,0.6); margin-top: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 15px; opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
.footer__links a:hover { opacity: 1; color: var(--gold); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid rgba(245,241,232,0.2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); transition: background 0.3s, color 0.3s, transform 0.3s; }
.footer__social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer__sep { grid-column: 1 / -1; height: 1px; background: linear-gradient(to right, transparent, rgba(212,175,122,0.4), transparent); margin: 16px 0; }
.footer__legal { grid-column: 1 / -1; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(245,241,232,0.4); text-align: center; }

/* ── 16. Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero__bg-e { font-size: 70vh; }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__lead { margin-inline: auto; }
  .proof__inner { grid-template-columns: 1fr; gap: 56px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .fcard--lg { grid-row: span 1; grid-column: span 2; }
  .benefits__inner { grid-template-columns: 1fr; gap: 48px; }
  .benefits__visual { position: static; }
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder__visual { order: -1; }
  .mission__inner { grid-template-columns: 1fr; }
  .mission__cities { flex-direction: row; flex-wrap: wrap; }
  .mission__piliers { flex-direction: column; gap: 24px; }
  .pillar { padding: 0; }
  .pillar:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero { padding: 120px 20px 64px; }
  .how, .why, .benefits, .pricing, .founder, .mission, .proof { padding-left: 20px; padding-right: 20px; }
  .how { clip-path: polygon(0 2vw, 100% 0, 100% 100%, 0 100%); }
  .step { grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
  .step--right .step__body { order: 0; margin-left: 0; }
  .timeline__line { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .fcard--lg { grid-column: span 1; }
  .pricing__grid { grid-template-columns: 1fr; gap: 40px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .polarities { gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .float-card { display: none; }
  .phone { width: 240px; }
}

/* ── 17. Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__title .word { opacity: 1 !important; transform: none !important; }
  .reveal-clip { clip-path: none !important; }
  .cursor, .cursor-dot { display: none !important; }
  * { cursor: auto !important; }
}

/* Override reduced-motion for the community carousel */
.allow-motion .carousel-track {
  animation-name: carousel-scroll !important;
  animation-duration: 30s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
}


