:root {
  --bg: #f4efe7;
  --paper: #fffaf2;
  --ink: #17313b;
  --muted: #5f6d72;
  --gold: #e7b35a;
  --gold-deep: #c68f39;
  --rust: #8b4b31;
  --teal: #1f4e5f;
  --teal-deep: #102833;
  --slate: #355c7d;
  --indigo: #4d5b86;
  --line: #d9cfbf;
  --shadow: 0 18px 45px rgba(23, 49, 59, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(231, 179, 90, 0.22), transparent 28%),
    linear-gradient(180deg, #f7f1e7 0%, #f4efe7 45%, #f0e7db 100%);
  color: var(--ink);
}

a { color: inherit; }
.site-shell { width: min(1220px, calc(100% - 32px)); margin: 0 auto; padding: 24px 0 40px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.brand-mark, .eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(231, 179, 90, 0.24);
  color: #49351a; padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-eyebrow { background: rgba(231, 179, 90, 0.2); color: #fff1d6; }
.topnav { display: flex; gap: 16px; flex-wrap: wrap; }
.topnav a { text-decoration: none; font-weight: 700; color: var(--ink); }
.hero {
  display: grid; grid-template-columns: 1fr; align-items: center;
  background: linear-gradient(145deg, var(--teal-deep), #1f4654 58%, #305f71 100%);
  color: white; border: 2px solid rgba(231, 179, 90, 0.5); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow);
}
.hero-text-only .hero-copy { max-width: 980px; margin: 0 auto; }
.hero-copy { padding: 58px 36px; }
.hero h1, .section h2, .panel h2, .support-strip h2, .stat-card h2, .feature-box h3, .roadmap-card h3, .release-note h3 { font-family: "Fraunces", serif; }
.hero h1 { font-size: clamp(2.6rem, 4.6vw, 4.8rem); line-height: 1.02; margin: 16px 0 18px; }
.hero-text { max-width: 820px; font-size: 1.08rem; line-height: 1.8; color: #e5eff1; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px;
  border-radius: 14px; text-decoration: none; font-weight: 800; border: 1px solid transparent;
}
.button.primary { background: linear-gradient(135deg, #f4c05f, var(--gold-deep)); color: #fffaf2; }
.button.secondary { background: rgba(255, 255, 255, 0.08); color: white; border-color: rgba(255, 255, 255, 0.18); }
.button.disabled { opacity: 0.6; pointer-events: none; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-pills span {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px; border-radius: 999px; font-size: 0.94rem;
}
.stats-row, .feature-grid, .roadmap-grid { display: grid; gap: 18px; }
.stats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 24px 0 12px; }
.stat-card, .feature-box, .panel, .roadmap-card, .showcase-card, .support-card { background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.stat-card { border-radius: 24px; padding: 24px; }
.stat-card h2 { margin: 0 0 10px; font-size: 1.5rem; }
.stat-card p, .feature-box p, .panel p, .roadmap-card p, .support-card p, .microcopy, .release-note p { color: var(--muted); line-height: 1.7; }
.section { margin-top: 52px; }
.section-head { max-width: 780px; margin-bottom: 22px; }
.section-head h2, .panel h2, .support-strip h2 { margin: 14px 0 0; font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.08; }
.feature-grid, .roadmap-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-box, .roadmap-card { border-radius: 24px; padding: 24px; position: relative; overflow: hidden; }
.feature-box::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 6px; background: currentColor; opacity: 0.75; }
.feature-box h3, .roadmap-card h3 { margin: 12px 0 10px; font-size: 1.45rem; }
.tone-blue { color: var(--teal); }
.tone-rust { color: var(--rust); }
.tone-slate { color: var(--slate); }
.tone-indigo { color: var(--indigo); }
.tone-bronze { color: #8a5a3b; }
.tone-forest { color: #365b3b; }
.showcase-card { padding: 18px; border-radius: 30px; max-width: 1100px; margin: 0 auto; }
.showcase-card img { display: block; width: 100%; height: auto; }
.split-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 18px; }
.panel { border-radius: 28px; padding: 28px; }
.panel.dark { background: linear-gradient(180deg, #17313b 0%, #1f4654 100%); color: white; }
.panel.dark p, .panel.dark .microcopy { color: #d9e6eb; }
.download-box {
  margin-top: 24px; padding: 18px; border-radius: 20px; background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li { padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--muted); }
.checklist li::before { content: "•"; position: absolute; left: 8px; top: 0; color: var(--gold-deep); font-size: 1.2rem; }
.release-note { margin-top: 24px; background: #fffdf8; border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.support-strip { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 18px; align-items: stretch; }
.support-card { border-radius: 24px; padding: 24px; }
.support-card a { color: var(--teal); text-decoration: none; font-weight: 700; }
.footer {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted);
  margin-top: 46px; padding: 18px 2px 0; border-top: 1px solid rgba(95, 109, 114, 0.18);
}
@media (max-width: 1080px) {
  .stats-row, .feature-grid, .roadmap-grid, .split-section, .support-strip { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-shell { width: min(100% - 20px, 1220px); }
  .topbar { flex-direction: column; align-items: flex-start; }
  .hero-copy, .panel, .feature-box, .roadmap-card, .stat-card, .support-card { padding: 20px; }
  .hero h1 { font-size: 2.3rem; }
}



.section-kicker-light { background: rgba(255, 255, 255, 0.12); color: #fff6e7; border: 1px solid rgba(255, 255, 255, 0.18); }
.panel.dark h2 { color: #fff8ef; }
.panel.dark strong { color: #fff8ef; }
.download-box p { margin: 6px 0 0; }

