:root {
  --ink: #1c2421;
  --muted: #66716c;
  --canvas: #f6f3e9;
  --paper: #fffdf7;
  --green: #196b5d;
  --green-dark: #105247;
  --mint: #d2e8dd;
  --mint-soft: #e9f2ed;
  --orange: #e89032;
  --line: rgba(28, 36, 33, 0.1);
  --shadow: 0 20px 60px rgba(35, 52, 45, 0.1);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 2%, #dcebe2 0 11rem, transparent 11.1rem),
    var(--canvas);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(246, 243, 233, 0.88);
  backdrop-filter: blur(18px);
}

.nav,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--green);
  box-shadow: 0 7px 20px rgba(25, 107, 93, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 680;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green);
}

.button,
.button-secondary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(25, 107, 93, 0.2);
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.section {
  padding-block: 6.5rem;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lede {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.microcopy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.phone-wrap {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.phone-halo {
  position: absolute;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), #efd9b9);
  filter: saturate(0.8);
}

.phone {
  position: relative;
  width: min(330px, 76vw);
  min-height: 640px;
  padding: 18px;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 56px;
  background: var(--canvas);
  box-shadow: 0 40px 90px rgba(30, 50, 42, 0.25);
  transform: rotate(2.5deg);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 104px;
  height: 30px;
  border-radius: 20px;
  background: var(--ink);
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  padding-top: 48px;
}

.phone-kicker {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.phone-title {
  margin: 0.3rem 0 1rem;
  font-size: 2rem;
  line-height: 1.1;
}

.mini-primary {
  padding: 1rem;
  border-radius: 18px;
  color: white;
  background: var(--green);
  font-weight: 760;
  text-align: center;
}

.phone-label {
  margin: 1.6rem 0 0.8rem;
  font-size: 1.1rem;
}

.routine-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(28, 36, 33, 0.06);
}

.routine-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  color: var(--green);
  background: var(--mint);
  font-size: 1.25rem;
}

.routine-card strong,
.routine-card small {
  display: block;
}

.routine-card small {
  color: var(--muted);
}

.progress {
  height: 4px;
  margin-top: 0.45rem;
  overflow: hidden;
  border-radius: 5px;
  background: #e3e4df;
}

.progress span {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: var(--shadow);
}

.feature-card:nth-child(2) {
  background: var(--mint-soft);
}

.feature-card:nth-child(3) {
  background: #f6e9d5;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.3rem;
  place-items: center;
  border-radius: 15px;
  color: var(--green);
  background: #fff;
  font-size: 1.25rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.focus-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.focus-card {
  padding: 2rem;
  border-radius: 36px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.step-count {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.step-art {
  display: grid;
  width: 190px;
  height: 190px;
  margin: 2rem auto;
  place-items: center;
  border-radius: 48px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 5rem;
}

.focus-card h3 {
  font-size: 2rem;
}

.focus-card p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.check {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.8rem;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: 40px;
  color: white;
  background: var(--green-dark);
  box-shadow: 0 24px 60px rgba(16, 82, 71, 0.25);
}

.privacy-panel h2 {
  max-width: 600px;
}

.privacy-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.lock-art {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 38px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 4rem;
  transform: rotate(4deg);
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.price-card {
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price {
  margin: 0 0 0.8rem;
  font-size: 3.5rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.price small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  max-width: 820px;
  gap: 0.8rem;
}

details {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.page-hero {
  max-width: 800px;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.support-card p {
  color: var(--muted);
}

.support-card a {
  color: var(--green);
  font-weight: 760;
}

.legal {
  max-width: 780px;
}

.legal h2 {
  margin-top: 3rem;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: var(--muted);
}

.callout {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 26px;
  background: var(--mint);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

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

@media (max-width: 820px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero,
  .focus-section,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
    text-align: center;
  }

  .hero .lede,
  .hero-actions {
    justify-content: center;
    margin-inline: auto;
  }

  .phone-wrap {
    min-height: 690px;
  }

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

  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .lock-art {
    width: 110px;
    height: 110px;
    font-size: 3rem;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 4.25rem;
  }

  .nav {
    min-height: 68px;
  }

  .nav .button {
    min-height: 44px;
    padding-inline: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.15rem;
  }

  .phone {
    min-height: 605px;
  }

  .phone-wrap {
    min-height: 640px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
