@import url("https://fonts.googleapis.com/css2?family=Lora:wght@500;600&display=swap");

:root {
  --ev-black: #070707;
  --ev-ink: #11100f;
  --ev-muted: #6f6d67;
  --ev-soft: #efeee8;
  --ev-cream: #f8f7f2;
  --ev-white: #ffffff;
  --ev-line: rgba(17, 16, 15, 0.12);
  --ev-green: #044c40;
  --ev-green-2: #0d7a68;
  --ev-sage: #c4e3c1;
  --ev-serif: "Lora", Georgia, serif;
  --ev-sans: var(--font-sans, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ev-ink);
  background: var(--ev-white);
  font-family: var(--ev-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; padding: 0; color: inherit; background: none; cursor: pointer; }
img, video { display: block; max-width: 100%; }

.variant-page {
  overflow: hidden;
  background: var(--ev-white);
  animation: pageIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.shell.wide { width: min(1320px, calc(100% - 32px)); }
.display-title,
.section-title {
  margin: 0;
  font-family: var(--ev-serif);
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}
.display-title {
  font-size: clamp(46px, 6.3vw, 84px);
  line-height: 0.98;
}
.section-title {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
}
.section-copy {
  margin: 20px 0 0;
  max-width: 640px;
  color: var(--ev-muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.72;
}
.centered { text-align: center; }
.centered .section-copy { margin-inline: auto; }
.section-kicker {
  margin: 0 0 14px;
  color: var(--ev-green-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1),
              background 160ms cubic-bezier(0.22, 1, 0.36, 1),
              color 160ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--ev-green-2);
  outline-offset: 4px;
}
.btn.light { background: var(--ev-white); color: var(--ev-black); }
.btn.light:hover { background: var(--ev-sage); }
.btn.dark { background: var(--ev-black); color: var(--ev-white); }
.btn.dark:hover { background: var(--ev-green); }
.btn.outline {
  border: 1px solid var(--ev-line);
  color: var(--ev-ink);
  background: transparent;
}
.btn.outline:hover { background: var(--ev-soft); }
.hero-actions .btn.outline,
.dark-actions .btn.outline,
.footer-signup .btn.outline {
  border-color: rgba(255,255,255,0.34);
  color: var(--ev-white);
}
.hero-actions .btn.outline:hover,
.dark-actions .btn.outline:hover,
.footer-signup .btn.outline:hover {
  background: rgba(255,255,255,0.12);
}

.site-nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
}
.site-nav-inner {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 26px;
}
.site-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.site-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 700;
}
.site-links a:hover { color: var(--ev-white); }
.site-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-login {
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  font-weight: 700;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: var(--ev-white);
  align-items: center;
  justify-content: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.menu-btn span::before { transform: translateY(-6px); }
.menu-btn span::after { transform: translateY(4px); }
.mobile-panel { display: none; }

.hero-frame {
  position: relative;
  min-height: calc(100svh - 24px);
  margin: 12px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ev-black);
  color: var(--ev-white);
  isolation: isolate;
}
.hero-frame.compact { min-height: 78svh; }
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.46) 54%, rgba(0,0,0,0.78));
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) brightness(0.72);
}
.hero-image.life-sky {
  object-position: center 62%;
  filter: saturate(1.02) brightness(0.68);
}
.hero-image.life-runner {
  object-position: center 54%;
  filter: saturate(1.02) brightness(0.7);
}
.hero-image.life-phone {
  object-position: center 48%;
  filter: saturate(1.02) brightness(0.68);
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 24px);
  display: grid;
  place-items: center;
  padding: 150px 24px 130px;
  text-align: center;
}
.compact .hero-content {
  min-height: 78svh;
  padding-bottom: 102px;
}
.hero-content .display-title {
  max-width: 820px;
  margin-inline: auto;
  color: var(--ev-white);
}
.hero-copy {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
}
.hero-actions,
.section-cta,
.dark-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-proof {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.proof-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.24);
}

.intro,
.proof,
.program,
.steps,
.tiers,
.faq,
.discovery {
  padding: 104px 0;
}
.intro { background: var(--ev-white); }
.proof { background: var(--ev-white); text-align: center; }
.program,
.tiers,
.discovery { background: var(--ev-cream); }
.steps,
.faq { background: var(--ev-white); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1040px, 100%);
  margin: 48px auto 0;
}
.stat {
  padding: 0 24px;
  border-left: 1px solid var(--ev-line);
}
.stat:first-child { border-left: 0; }
.stat strong {
  display: block;
  color: var(--ev-black);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  font-feature-settings: "tnum" on;
}
.stat span {
  display: block;
  max-width: 24ch;
  margin: 12px auto 0;
  color: var(--ev-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.media-frame {
  min-height: 580px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ev-soft);
}
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}
.media-frame img.life-sky { object-position: center 58%; }
.media-frame img.life-phone { object-position: center 48%; }
.media-frame img.life-runner { object-position: center 52%; }
.feature-list,
.check-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.feature-list li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--ev-line);
  color: var(--ev-ink);
  font-weight: 800;
}
.check-icon {
  width: 20px;
  height: 20px;
  color: var(--ev-green-2);
  flex: 0 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-white);
}
.card small {
  color: var(--ev-green-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card h3 {
  margin: 16px 0 10px;
  color: var(--ev-black);
  font-size: 23px;
  line-height: 1.18;
}
.card p {
  margin: 0;
  color: var(--ev-muted);
  font-size: 15px;
  line-height: 1.7;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.step {
  padding: 0 20px 0 0;
  border-top: 1px solid var(--ev-line);
}
.step strong {
  display: block;
  margin-top: 20px;
  color: var(--ev-black);
  font-size: 22px;
  line-height: 1.2;
}
.step p {
  margin: 12px 0 0;
  color: var(--ev-muted);
  font-size: 15px;
  line-height: 1.7;
}

.dark-band {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 92px 0;
  color: var(--ev-white);
  background: var(--ev-black);
  text-align: center;
}
.dark-band .section-title {
  max-width: 720px;
  margin-inline: auto;
  color: var(--ev-white);
}
.dark-band .section-copy {
  margin-inline: auto;
  color: rgba(255,255,255,0.68);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.tier {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-white);
}
.tier.featured {
  color: var(--ev-white);
  background: var(--ev-black);
}
.tier h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}
.tier p {
  margin: 14px 0 22px;
  color: var(--ev-muted);
}
.tier.featured p,
.tier.featured li { color: rgba(255,255,255,0.72); }
.tier ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}
.tier li {
  color: var(--ev-ink);
  font-size: 14px;
  font-weight: 700;
}
.tier .btn { margin-top: auto; }

.quote-strip {
  padding: 94px 0;
  background: var(--ev-white);
  text-align: center;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  text-align: left;
}
.quote-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-white);
}
.quote-card blockquote {
  margin: 0;
  color: var(--ev-black);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 650;
  line-height: 1.55;
}
.quote-card cite {
  margin-top: 28px;
  color: var(--ev-green-2);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}
.quote-card span {
  display: block;
  margin-top: 4px;
  color: var(--ev-muted);
  font-size: 12px;
  font-weight: 700;
}

.discovery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}
.form-card {
  padding: 28px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  background: var(--ev-white);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--ev-black);
  font-size: 13px;
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--ev-line);
  border-radius: 8px;
  color: var(--ev-black);
  background: var(--ev-white);
  font-size: 15px;
}
.field textarea {
  min-height: 138px;
  padding-top: 14px;
  resize: vertical;
}
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.form-status {
  display: none;
  color: #b33b22;
  font-size: 13px;
  font-weight: 700;
}
.form-status.show { display: block; }
.contact-panel {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.contact-row {
  padding: 18px 0;
  border-top: 1px solid var(--ev-line);
}
.contact-row strong {
  display: block;
  color: var(--ev-black);
  font-size: 16px;
}
.contact-row span,
.contact-row a {
  display: block;
  margin-top: 4px;
  color: var(--ev-muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-list {
  max-width: 820px;
  margin: 42px auto 0;
  border-top: 1px solid var(--ev-line);
}
.faq-item { border-bottom: 1px solid var(--ev-line); }
.faq-q {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ev-black);
  text-align: left;
  font-size: 17px;
  font-weight: 800;
}
.faq-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ev-soft);
  color: var(--ev-black);
  font-size: 20px;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  flex: 0 0 auto;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
              padding-bottom 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p {
  max-width: 680px;
  margin: 0;
  color: var(--ev-muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 26px;
}

.variant-footer {
  padding: 70px 0 34px;
  color: var(--ev-white);
  background: var(--ev-black);
}
.footer-signup {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.footer-signup h2 {
  margin: 0;
  color: var(--ev-white);
  font-family: var(--ev-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.footer-signup p {
  max-width: 560px;
  margin: 18px auto 28px;
  color: rgba(255,255,255,0.64);
  font-size: 17px;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-tag {
  max-width: 280px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.7;
}
.variant-footer h4 {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.variant-footer ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.variant-footer a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
}
.variant-footer a:hover { color: var(--ev-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 70ms; }
[data-reveal-delay="2"] { transition-delay: 140ms; }
[data-reveal-delay="3"] { transition-delay: 210ms; }

@media (max-width: 980px) {
  .site-nav-inner { grid-template-columns: 1fr auto; }
  .site-links,
  .site-actions .site-login,
  .site-actions .btn { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-panel {
    position: fixed;
    inset: 12px;
    z-index: 100;
    display: none;
    padding: 78px 24px 24px;
    border-radius: 24px;
    background: var(--ev-black);
    color: var(--ev-white);
  }
  .mobile-panel.open { display: block; }
  .mobile-panel nav { display: grid; gap: 4px; }
  .mobile-panel a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.86);
    font-size: 22px;
    font-weight: 700;
  }
  .mobile-panel .btn {
    width: 100%;
    margin-top: 24px;
  }
  .mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--ev-white);
    font-size: 24px;
  }
  .split-grid,
  .discovery-grid { grid-template-columns: 1fr; }
  .media-frame { min-height: 440px; }
  .card-grid,
  .quote-grid,
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .step-grid,
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .shell,
  .shell.wide { width: min(100% - 28px, 1120px); }
  .hero-frame {
    min-height: 92svh;
    margin: 8px;
    border-radius: 22px;
  }
  .hero-frame.compact { min-height: 78svh; }
  .site-nav { padding: 18px; }
  .site-logo img { height: 27px; }
  .hero-content {
    min-height: 92svh;
    padding: 110px 18px 118px;
  }
  .compact .hero-content {
    min-height: 78svh;
    padding-bottom: 92px;
  }
  .display-title { font-size: clamp(46px, 13vw, 64px); }
  .hero-copy { font-size: 15px; }
  .hero-proof {
    bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
    padding-inline: 16px;
    font-size: 11px;
  }
  .proof-sep { display: none; }
  .intro,
  .proof,
  .program,
  .steps,
  .tiers,
  .faq,
  .discovery,
  .quote-strip {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .stat-grid,
  .card-grid,
  .quote-grid,
  .tier-grid,
  .step-grid,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .stat {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--ev-line);
  }
  .stat:first-child { border-top: 0; }
  .card,
  .quote-card,
  .tier { min-height: auto; }
  .media-frame { min-height: 340px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .variant-page { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
