:root {
  --cream: #f8f1e6;
  --forest: #2b5e2a;
  --dark: #1e281f;
  --mint: #c8e3d2;
  --bluegrey: #b3cdce;
  --gold: #ffce44;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(30, 40, 31, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 241, 230, 0.96);
  box-shadow: 0 1px 18px rgba(30, 40, 31, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(30, 40, 31, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:not(.button):hover {
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: relative;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 6px;
}

.site-header.is-open .menu-icon {
  transform: rotate(45deg);
}

.site-header.is-open .menu-icon::before {
  transform: translateY(8px) rotate(90deg);
}

.site-header.is-open .menu-icon::after {
  opacity: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-gold {
  background: var(--gold);
  color: var(--dark);
}

.button-gold:hover {
  box-shadow: 0 16px 28px rgba(255, 206, 68, 0.28);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.button-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.button-small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.section {
  padding: 96px 0;
}

.section-mint {
  background: rgba(200, 227, 210, 0.42);
}

.section-soft {
  background: rgba(200, 227, 210, 0.2);
}

.hero {
  min-height: 100vh;
  padding-top: 128px;
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 120px;
  background: rgba(200, 227, 210, 0.72);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 90px;
  background: rgba(255, 206, 68, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: 72px;
  align-items: center;
}

.hero-mark {
  width: clamp(150px, 18vw, 220px);
  margin-bottom: 46px;
  opacity: 0.9;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.1;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: 0;
}

.hero h1 span,
.section-heading span,
.download h2 span {
  color: var(--forest);
}

.hero-lede {
  max-width: 540px;
  margin: 24px 0 30px;
  color: rgba(30, 40, 31, 0.62);
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.store-row,
.stats,
.footer-bottom,
.socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.member-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
}

.member-images {
  display: flex;
}

.member-images img {
  width: 44px;
  height: 44px;
  margin-left: -12px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint);
}

.member-images img:first-child {
  margin-left: 0;
}

.member-row strong,
.member-row small {
  display: block;
}

.member-row small {
  margin-top: 3px;
  color: rgba(30, 40, 31, 0.52);
  font-size: 0.78rem;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 430px);
}

.phone-card {
  position: relative;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(200, 227, 210, 0.75);
  border-radius: 28px;
  transform: rotate(3deg) scale(1.04);
}

.phone-card img {
  position: relative;
  width: 100%;
  height: min(68vh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(30, 40, 31, 0.24));
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(43, 94, 42, 0.74);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.download h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.section-heading > p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(30, 40, 31, 0.62);
  font-size: 1.08rem;
  line-height: 1.65;
}

.feature-grid,
.steps,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.price-card,
.testimonial {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(30, 40, 31, 0.04);
}

.feature-card {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--forest);
}

.feature-card:hover .icon-box {
  background: var(--forest);
  color: var(--cream);
}

.icon-box svg,
.step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.step h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.feature-card p,
.step p,
.price-card p,
.testimonial p {
  margin: 0;
  color: rgba(30, 40, 31, 0.62);
  font-size: 0.95rem;
  line-height: 1.68;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 64%;
  width: 70%;
  border-top: 2px dashed rgba(43, 94, 42, 0.22);
}

.step-icon {
  position: relative;
  width: 96px;
  height: 96px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 16px 38px rgba(30, 40, 31, 0.08);
}

.step-icon span {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 850;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 34px;
}

.price-card-featured {
  margin-top: -16px;
  padding-bottom: 48px;
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 26px 70px rgba(43, 94, 42, 0.22);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.price-card-featured p {
  color: rgba(248, 241, 230, 0.72);
}

.price {
  margin: 26px 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 800;
}

.price small {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(248, 241, 230, 0.68);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(30, 40, 31, 0.72);
  font-size: 0.93rem;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(-45deg);
}

.price-card-featured .check-list li {
  color: rgba(248, 241, 230, 0.9);
}

.price-card-featured .check-list li::before {
  border-color: var(--gold);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  position: relative;
  padding: 32px;
}

.testimonial::after {
  content: "\"";
  position: absolute;
  top: 10px;
  right: 24px;
  color: rgba(179, 205, 206, 0.58);
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 1;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(179, 205, 206, 0.34);
}

.person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong,
.person small {
  display: block;
}

.person small {
  margin-top: 2px;
  color: rgba(30, 40, 31, 0.5);
  font-size: 0.78rem;
}

.download,
.footer {
  background: var(--dark);
  color: var(--cream);
}

.download {
  overflow: hidden;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
}

.download h2 span {
  color: var(--gold);
}

.download p {
  max-width: 520px;
  margin: 24px 0 12px;
  color: rgba(248, 241, 230, 0.66);
  font-size: 1.08rem;
  line-height: 1.68;
}

.store-row {
  gap: 20px;
}

.store-row img {
  width: 180px;
  height: 120px;
  object-fit: contain;
}

.stats {
  gap: 34px;
  margin-top: 28px;
}

.stats strong,
.stats small {
  display: block;
}

.stats strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.stats small {
  margin-top: 4px;
  color: rgba(248, 241, 230, 0.52);
  font-size: 0.78rem;
}

.download-phone {
  position: relative;
  justify-self: center;
}

.phone-shell {
  position: relative;
  width: 280px;
  padding: 12px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(43, 94, 42, 0.88), rgba(43, 94, 42, 0.45));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(43, 94, 42, 0.28);
  transform: rotate(6deg) scale(0.96);
  filter: blur(6px);
}

.phone-shell img {
  position: relative;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 30px;
}

.streak {
  position: absolute;
  top: -16px;
  right: -32px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.streak small,
.streak strong {
  display: block;
}

.streak small {
  font-size: 0.74rem;
  font-weight: 650;
}

.streak strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.footer {
  padding: 60px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
  padding-bottom: 46px;
}

.footer h2,
.footer h3 {
  color: var(--cream);
}

.footer h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.footer h3 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: rgba(248, 241, 230, 0.64);
  font-size: 0.92rem;
}

.footer a {
  display: block;
  margin-top: 12px;
}

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

.footer-bottom {
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(248, 241, 230, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(248, 241, 230, 0.18);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

.delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 980px) {
  .hero-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .download-phone {
    justify-self: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: rgba(248, 241, 230, 0.98);
    border-top: 1px solid rgba(43, 94, 42, 0.12);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 104px;
  }

  .section {
    padding: 74px 0;
  }

  .feature-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    margin-top: 0;
  }

  .download-grid {
    gap: 46px;
  }

  .phone-shell {
    width: min(100%, 270px);
  }

  .phone-shell img {
    height: 430px;
  }

  .streak {
    right: -8px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
