:root {
  --ink: #163a32;
  --ink-muted: #163a32;
  --surface: #f6f2e9;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(22, 58, 50, 0.12);
  --forest: #176a57;
  --lime: #d7f171;
  --mint: #dcf5ea;
  --shadow: 0 28px 70px rgba(16, 43, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(215, 241, 113, 0.2), transparent 30%),
    radial-gradient(circle at left 18%, rgba(23, 106, 87, 0.1), transparent 24%),
    linear-gradient(180deg, #fcfaf5 0%, var(--surface) 100%);
}

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

a:hover {
  text-decoration: underline;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 410px);
  gap: 48px;
  align-items: center;
  padding: 20px 0 56px;
}

.kicker,
.screen-kicker,
.signal-label,
.feature-kicker,
.soft-card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.kicker,
.screen-kicker {
  color: var(--forest);
  font-size: 0.84rem;
}

.hero h1,
.section-heading h2,
.story-card h2,
.cta-band h2 {
  margin: 14px 0 18px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  max-width: 10ch;
}

.lead,
.section-heading p,
.story-card p,
.cta-band p,
.secondary-note,
.value-grid p,
.feature-card span {
  color: var(--ink-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fffdfa;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.store-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-pills span,
.range-pills span {
  border-radius: 999px;
}

.store-pills span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.phone-shell {
  width: min(100%, 410px);
  justify-self: center;
  padding: 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, #264b43 0%, #14322c 100%);
  box-shadow: 0 35px 90px rgba(15, 44, 39, 0.28);
}

.phone-notch {
  width: 34%;
  height: 22px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.24);
}

.phone-screen {
  border-radius: 30px;
  padding: 28px 24px 30px;
  background: #f5f1e8;
}

.phone-screen h2 {
  margin: 10px 0 6px;
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.screen-subtitle {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 1.02rem;
}

.signal-card,
.soft-card,
.feature-card,
.story-card,
.value-grid article,
.cta-band {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signal-card {
  padding: 24px;
  border-radius: 32px;
  background: var(--forest);
  color: white;
}

.signal-label {
  color: var(--lime);
  font-size: 0.82rem;
}

.signal-card h3 {
  margin: 12px 0;
  font-size: 2rem;
  line-height: 1.02;
}

.signal-card p,
.signal-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  font-size: 1rem;
}

.signal-card span {
  display: block;
  margin-top: 16px;
  font-weight: 700;
}

.soft-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.soft-card-label {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.9rem;
}

.soft-card span {
  color: var(--ink);
  line-height: 1.45;
}

.range-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.range-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
  color: var(--ink-muted);
}

.range-pills .active {
  background: var(--mint);
  color: #125d4d;
}

.value-grid,
.feature-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 56px;
}

.value-grid article,
.feature-card,
.story-card {
  border-radius: 24px;
  background: var(--card);
  padding: 24px;
}

.value-grid strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.section-heading {
  max-width: 760px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-card h3 {
  margin: 14px 0 12px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.story-card.accent {
  background: linear-gradient(180deg, rgba(223, 244, 109, 0.28), rgba(255, 255, 255, 0.78));
}

.story-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.8;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(223, 244, 109, 0.2));
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.legal-page {
  max-width: 900px;
}

.legal-header {
  padding: 24px 0 26px;
}

.legal-header h1 {
  margin: 14px 0 12px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-header p:last-child {
  color: var(--ink-muted);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--forest);
  font-weight: 800;
}

.legal-content {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 32px;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.legal-content a,
.secondary-note a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
}

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 24px 16px 40px;
  }

  .hero h1 {
    max-width: none;
  }

  .phone-shell {
    padding: 14px;
    border-radius: 32px;
  }

  .phone-screen {
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .signal-card h3 {
    font-size: 1.7rem;
  }

  .legal-content {
    padding: 24px;
  }
}
