:root {
  --ink: #17372f;
  --muted: #60736d;
  --leaf: #7ebd65;
  --leaf-dark: #3d8256;
  --mint: #eaf5e5;
  --cream: #fffdf7;
  --gold: #f5c35b;
  --line: #dce8df;
  --white: #fff;
  --shadow: 0 24px 70px rgba(31, 73, 59, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: var(--leaf-dark); }
a:hover { color: var(--ink); }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 99; }
.skip-link:focus { left: 8px; background: var(--white); padding: 10px 14px; border-radius: 8px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 247, .92);
  border-bottom: 1px solid rgba(220, 232, 223, .8);
  backdrop-filter: blur(14px);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { margin-right: auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 220px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--ink); font-weight: 700; text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--leaf-dark); }
.menu-button { display: none; border: 0; background: transparent; font: inherit; font-weight: 800; color: var(--ink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--leaf-dark);
  border-radius: 999px;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.button:hover { background: var(--ink); color: var(--white); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.eyebrow { margin: 0 0 14px; color: var(--leaf-dark); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { margin: 0 0 .55em; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 850px; font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.35rem; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero { position: relative; overflow: hidden; padding: 92px 0 72px; }
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,189,101,.3), rgba(126,189,101,0) 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.availability { margin-top: 22px; color: var(--muted); font-size: .94rem; }
.availability strong { color: var(--ink); }
.logo-panel { padding: 44px; background: linear-gradient(145deg, var(--white), var(--mint)); border: 1px solid var(--line); border-radius: 40px; box-shadow: var(--shadow); }
.section { padding: 82px 0; }
.section.tint { background: var(--mint); }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(31,73,59,.06); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 14px; background: var(--mint); font-size: 1.25rem; }
.preview-shell { padding: 16px; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.preview-bar { display: flex; gap: 7px; padding: 6px 7px 17px; }
.preview-bar span { width: 9px; height: 9px; border-radius: 50%; background: #d7e2da; }
.app-preview { overflow: hidden; border-radius: 20px; border: 1px solid var(--line); background: #f8fbf7; }
.app-top { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--white); border-bottom: 1px solid var(--line); }
.app-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--leaf), var(--gold)); }
.app-main { padding: 26px; }
.demo-label { display: inline-block; margin-bottom: 15px; padding: 5px 10px; border-radius: 999px; background: #fff3d3; color: #755715; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.balance { font-size: 2.35rem; font-weight: 900; letter-spacing: -.04em; }
.demo-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; margin-top: 22px; }
.demo-card { padding: 18px; border-radius: 16px; background: var(--white); border: 1px solid var(--line); }
.bar-row { display: grid; grid-template-columns: 100px 1fr 50px; align-items: center; gap: 10px; margin: 12px 0; font-size: .8rem; }
.bar { height: 9px; overflow: hidden; background: #edf2ed; border-radius: 99px; }
.bar i { display: block; height: 100%; background: var(--leaf); border-radius: inherit; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px; border-radius: 28px; background: var(--ink); color: var(--white); }
.callout p { margin: 0; color: #cfe0d9; }
.prose { max-width: 790px; }
.prose h2 { margin-top: 1.6em; font-size: 2rem; }
.prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: #486159; }
.prose .notice { padding: 20px; border-left: 4px solid var(--leaf); background: var(--mint); }
.roadmap { display: grid; gap: 18px; }
.milestone { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 25px 0; border-top: 1px solid var(--line); }
.status { color: var(--leaf-dark); font-weight: 900; }
.site-footer { padding: 54px 0 28px; background: #102b24; color: #dbe8e2; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.site-footer img { width: 220px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer a { color: #dbe8e2; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.fine-print { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #9fb8ae; font-size: .88rem; }

@media (max-width: 820px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 68px; padding: 20px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .grid-3, .demo-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .logo-panel { max-width: 520px; }
  .milestone { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 180px; }
  .section { padding: 62px 0; }
  .callout { align-items: flex-start; flex-direction: column; }
  .bar-row { grid-template-columns: 80px 1fr; }
  .bar-row span:last-child { display: none; }
}
