:root {
  --bg: #f7efe4;
  --ink: #1a1a1a;
  --muted: #4f4a45;
  --green: #1f6b3a;
  --green-2: #2a8b4b;
  --green-dark: #0f3f21;
  --sand: #d9b76a;
  --clay: #c97c5d;
  --sky: #b9d6f2;
  --card: #fffaf2;
  --card-2: #fef6ea;
  --shadow: 0 18px 44px rgba(26, 22, 16, 0.14);
  --radius: 20px;
  --max: 1120px;
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(185, 214, 242, 0.35), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(201, 124, 93, 0.28), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(31, 107, 58, 0.18), transparent 50%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(247, 239, 228, 0.8) 45%, rgba(217, 183, 106, 0.18));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(26, 22, 16, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

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

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

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

section[id] {
  scroll-margin-top: 90px;
}

.bg-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: -1;
  animation: float 18s ease-in-out infinite;
}

.orb-1 {
  top: -120px;
  left: -120px;
  background: rgba(31, 107, 58, 0.25);
}

.orb-2 {
  top: 220px;
  right: -160px;
  background: rgba(201, 124, 93, 0.35);
  animation-delay: 2s;
}

.orb-3 {
  bottom: -200px;
  left: 20%;
  background: rgba(185, 214, 242, 0.4);
  animation-delay: 4s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: 0 8px 22px rgba(26, 22, 16, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.3rem;
}

.nav {
  display: flex;
  gap: 10px;
  font-weight: 500;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 12px;
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.nav a:hover,
.nav a:focus {
  background: rgba(31, 107, 58, 0.12);
  color: var(--green-dark);
}

.nav a::after {
  content: none;
}

.nav a:hover::after,
.nav a:focus::after {
  transform: none;
}

.hero {
  padding: 88px 0 48px;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 64px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.12);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(31, 107, 58, 0.25);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--green-2);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(26, 22, 16, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.btn.ghost:hover,
.btn.ghost:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(26, 22, 16, 0.12);
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.hero-proof {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.proof-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: 0 12px 26px rgba(26, 22, 16, 0.08);
}

.proof-title {
  margin: 0 0 6px;
  font-weight: 600;
}

.hero-stack {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-bottom: 24px;
}

.device {
  width: min(100%, 360px);
  border-radius: 36px;
  padding: 16px;
  background: linear-gradient(160deg, rgba(31, 107, 58, 0.12), rgba(217, 183, 106, 0.25));
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 22, 16, 0.08);
  position: relative;
  z-index: 1;
}

.device-hero {
  width: min(100%, 390px);
}

.device-screen {
  background: #fdfbf6;
  border-radius: 28px;
  padding: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(26, 22, 16, 0.08);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.12);
  color: var(--green);
  font-weight: 600;
  font-size: 0.78rem;
}

.screen-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.screen-title {
  margin: 0;
  font-weight: 700;
}

.map-block {
  height: 140px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(31, 107, 58, 0.25), rgba(31, 107, 58, 0.05)),
    repeating-linear-gradient(0deg, rgba(26, 22, 16, 0.05), rgba(26, 22, 16, 0.05) 1px, transparent 1px, transparent 20px);
  position: relative;
  overflow: hidden;
}

.map-block::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px dashed rgba(26, 22, 16, 0.15);
}

.recommendation {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(217, 183, 106, 0.2);
}

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

.stat-card {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 22, 16, 0.08);
}

.float-card {
  position: absolute;
  width: 200px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 22, 16, 0.1);
  box-shadow: 0 16px 32px rgba(26, 22, 16, 0.16);
  z-index: 2;
}

.float-title {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.float-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.float-one {
  top: -10px;
  left: -30px;
}

.float-two {
  bottom: 120px;
  right: -40px;
}

.float-three {
  bottom: -10px;
  left: 10px;
}

.visual-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(26, 22, 16, 0.08);
  border-bottom: 1px solid rgba(26, 22, 16, 0.08);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 32px;
}

.marquee-track {
  display: flex;
  gap: 32px;
  padding: 14px 0;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  min-width: 100%;
  flex: 0 0 auto;
}

.marquee-track span {
  font-weight: 600;
  color: var(--green-dark);
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 32px;
  max-width: 720px;
}

.section-head p {
  color: var(--muted);
  margin-top: 0;
}

.benefit-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(26, 22, 16, 0.06);
  box-shadow: 0 16px 34px rgba(26, 22, 16, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 124, 93, 0.18);
  color: #7a3f26;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 22, 16, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.comparison-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.comparison-card {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: 0 16px 32px rgba(26, 22, 16, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.comparison-card ul {
  margin: 16px 0 0 18px;
  color: var(--muted);
}

.signal-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.signal-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: 0 12px 26px rgba(26, 22, 16, 0.08);
}

.signal-card h3 {
  margin: 0 0 8px;
}

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

.learn-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.learn-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 22, 16, 0.08);
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-copy p {
  margin-top: 0;
}

.list-check {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--muted);
}

.list-check li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.card-stack {
  display: grid;
  gap: 16px;
}

.stack-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: var(--shadow);
}

.stack-card h3 {
  margin-bottom: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.12);
  color: var(--green);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.insight-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.insight-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 22, 16, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screens-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.screen-card {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 234, 0.8));
  border: 1px solid rgba(26, 22, 16, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screen-placeholder {
  height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(26, 22, 16, 0.12);
  background:
    linear-gradient(130deg, rgba(185, 214, 242, 0.35), rgba(217, 183, 106, 0.2)),
    repeating-linear-gradient(0deg, rgba(26, 22, 16, 0.08), rgba(26, 22, 16, 0.08) 1px, transparent 1px, transparent 22px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  padding: 12px;
}

.screen-card figcaption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.screens-note {
  margin-top: 20px;
  color: var(--muted);
}

.roadmap-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.roadmap-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 22, 16, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover,
.feature-card:hover,
.comparison-card:hover,
.insight-card:hover,
.screen-card:hover,
.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(26, 22, 16, 0.16);
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  background: rgba(201, 124, 93, 0.18);
  color: #7a3f26;
}

.status.planned {
  background: rgba(185, 214, 242, 0.35);
  color: #244c6a;
}

.status.active {
  background: rgba(31, 107, 58, 0.14);
  color: var(--green);
}

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

.faq-item {
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 22, 16, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-item[open] {
  box-shadow: 0 14px 26px rgba(26, 22, 16, 0.1);
}

.highlight {
  padding: 0 0 40px;
}

.highlight-card {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(31, 107, 58, 0.12), rgba(217, 183, 106, 0.25));
  border: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 22, 16, 0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clay);
}

.callout-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(185, 214, 242, 0.45), rgba(217, 183, 106, 0.32));
  border: 1px solid rgba(26, 22, 16, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.callout-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(31, 107, 58, 0.15);
  right: -80px;
  top: -80px;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(26, 22, 16, 0.08);
  background: rgba(248, 241, 231, 0.9);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.page-hero {
  padding: 64px 0 24px;
}

.policy {
  padding-bottom: 64px;
  max-width: 860px;
}

.policy h2 {
  margin-top: 32px;
}

.policy ul {
  margin: 12px 0 0 18px;
}

.policy li {
  margin-bottom: 10px;
}

.reveal {
  animation: fadeUp 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -18px);
  }
}

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

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

  .float-card {
    position: static;
    width: min(100%, 340px);
  }

  .callout-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    gap: 8px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav a {
    font-size: 0.9rem;
  }

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

  .screen-placeholder {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .bg-orb,
  .marquee-track {
    animation: none;
  }

  .btn {
    transition: none;
  }
}
