:root {
  --bg: #f4efe4;
  --bg-strong: #e7ddcc;
  --surface: rgba(255, 252, 246, 0.72);
  --surface-strong: #fffaf2;
  --surface-ink: rgba(37, 50, 38, 0.82);
  --text: #1b241b;
  --muted: #546254;
  --line: rgba(41, 58, 42, 0.12);
  --accent: #29583a;
  --accent-2: #a4c87a;
  --accent-3: #c97d4e;
  --shadow: 0 24px 60px rgba(33, 43, 30, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(164, 200, 122, 0.35), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(201, 125, 78, 0.14), transparent 18%),
    linear-gradient(180deg, #f8f4eb 0%, var(--bg) 36%, #f2ecde 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 60%);
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 6.8rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 11ch;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 32px rgba(42, 60, 39, 0.08);
}

.brand,
.brand-copy {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
}

.brand-copy {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.brand-copy small {
  font-size: 0.77rem;
  color: var(--muted);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 15px;
  background: linear-gradient(145deg, #335f41, #244a31);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.brand-mark span {
  position: absolute;
  display: block;
  border-radius: 999px 0 999px 0;
  background: linear-gradient(180deg, #d6efb8, #99c36b);
}

.brand-mark span:nth-child(1) {
  width: 18px;
  height: 18px;
  transform: rotate(-10deg) translate(-6px, 0);
}

.brand-mark span:nth-child(2) {
  width: 12px;
  height: 12px;
  transform: rotate(24deg) translate(8px, -7px);
}

.brand-mark span:nth-child(3) {
  width: 10px;
  height: 10px;
  transform: rotate(40deg) translate(2px, 11px);
  background: linear-gradient(180deg, #f0c4a6, #d48151);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
}

.section {
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #34553f;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero-text {
  max-width: 58ch;
  margin-top: 20px;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #f8f4eb;
  background: linear-gradient(135deg, #1f4a31, #3a6a47);
  box-shadow: 0 14px 26px rgba(36, 74, 49, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--surface-ink);
  font-size: 0.92rem;
}

.hero-card,
.split-band,
.info-card,
.persona-card,
.cta-panel,
.faq-item,
.feature-item {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 200, 122, 0.38), transparent 62%);
}

.phone-frame {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(180deg, #213327, #172119);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 36px 60px rgba(17, 25, 17, 0.25);
}

.phone-screen {
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(164, 200, 122, 0.22), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f0eadf 100%);
}

.scan-card,
.map-card,
.insight-row article {
  border: 1px solid rgba(39, 58, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.scan-card {
  padding: 18px;
}

.scan-card h2 {
  margin: 12px 0 10px;
  font-size: 1.55rem;
  max-width: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pill-soft {
  background: rgba(164, 200, 122, 0.26);
  color: #35553f;
}

.meter {
  margin-top: 16px;
}

.meter-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.meter-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(39, 58, 41, 0.08);
  overflow: hidden;
}

.meter-bar span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7eb65e, #2d6a42);
}

.insight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.insight-row article {
  padding: 14px;
}

.insight-row span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 170px;
  margin-top: 14px;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(38, 57, 40, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 57, 40, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.store-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(27, 36, 27, 0.88);
  color: #eff1e9;
}

.store-chip span {
  display: block;
  margin-top: 4px;
  color: rgba(239, 241, 233, 0.76);
  font-size: 0.85rem;
}

.trust-note {
  margin-top: 18px;
  padding: 0 8px 6px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p:last-child {
  margin-top: 16px;
  max-width: 64ch;
}

.split-band {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.steps,
.cards,
.persona-grid,
.feature-list {
  display: grid;
  gap: 18px;
}

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

.step-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(39, 58, 41, 0.08);
}

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: #2d5f3e;
}

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

.info-card,
.persona-card,
.feature-item {
  padding: 24px;
  border-radius: 24px;
}

.info-card.emphasis {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.88), rgba(221, 237, 202, 0.65));
}

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

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #edf6df, #cde0b3);
  color: #264630;
  font-weight: 800;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 22px;
  max-width: 72ch;
}

.cta-section {
  padding-bottom: 48px;
}

.cta-panel {
  position: relative;
  padding: 36px;
  border-radius: 32px;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(164, 200, 122, 0.3), transparent 26%),
    radial-gradient(circle at bottom left, rgba(201, 125, 78, 0.16), transparent 24%);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
}

.cta-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 28px 0 20px;
  border-top: 1px solid rgba(39, 58, 41, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-meta {
  font-size: 0.9rem;
  white-space: nowrap;
}

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

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

@media (max-width: 1040px) {
  .hero,
  .cards,
  .steps,
  .persona-grid,
  .feature-list,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .footer-meta {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--content));
    padding-top: 12px;
  }

  .topbar {
    position: static;
    border-radius: 28px;
    padding: 16px;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-card,
  .split-band,
  .info-card,
  .persona-card,
  .cta-panel,
  .faq-item,
  .feature-item {
    border-radius: 24px;
  }

  .split-band,
  .cta-panel,
  .feature-item {
    padding: 22px;
  }

  .phone-frame {
    max-width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

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

  .button,
  .reveal {
    transition: none;
  }

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