﻿:root {
  --ink: #1e2421;
  --moss: #143b36;
  --teal: #1d6c63;
  --sand: #f4efe5;
  --clay: #c9782e;
  --mist: #e8f0ec;
  --rose: #b54c4c;
  --parchment: #f8f3e9;
  --brass: #b88a3b;
  --line: #d4caba;
  --pine: #0f4c46;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(30, 36, 33, 0.08);
  --shadow-tight: 0 10px 22px rgba(15, 76, 70, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --site-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(184, 138, 59, 0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(29, 108, 99, 0.16), transparent 24%),
    linear-gradient(180deg, var(--sand), #efe7d7 100%);
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 229, 0.76);
  border-bottom: 1px solid rgba(212, 202, 186, 0.75);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--pine));
  box-shadow: var(--shadow-tight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.brand-copy small {
  display: block;
  color: rgba(30, 36, 33, 0.7);
  font-weight: 600;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(30, 36, 33, 0.78);
  font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: rgba(232, 240, 236, 0.85);
  color: var(--pine);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--pine);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
}

.hero {
  padding: 56px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 240, 236, 0.9);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title,
.card-title,
.cta-banner h2,
.footer-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  margin-top: 18px;
}

.hero p,
.page-hero p {
  color: rgba(30, 36, 33, 0.78);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 62ch;
}

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

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--pine), var(--moss));
  box-shadow: var(--shadow-tight);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--pine);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--pine);
  background: rgba(232, 240, 236, 0.78);
  border-color: rgba(15, 76, 70, 0.12);
}

.hero-pills,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248, 243, 233, 0.95);
  border: 1px solid var(--line);
  color: rgba(30, 36, 33, 0.82);
  font-weight: 700;
}

.hero-preview,
.panel,
.glass-card,
.metric-card,
.feature-card,
.story-card,
.team-card,
.beta-card,
.faq-card,
.page-hero,
.timeline-card,
.quote-card,
.preview-phone,
.cta-banner,
.footer-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 233, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-preview {
  padding: 18px;
}

.preview-phone {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 76, 70, 0.98), rgba(20, 59, 54, 0.98));
  color: var(--white);
}

.preview-phone__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.preview-phone__body {
  padding: 0 18px 18px;
}

.preview-phone__hero {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(29, 108, 99, 0.95), rgba(15, 76, 70, 0.95));
  border: 1px solid rgba(184, 138, 59, 0.24);
}

.preview-phone__hero small {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-phone__hero h2 {
  margin: 0;
  font-size: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

.preview-phone__hero p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.preview-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.preview-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(248, 243, 233, 0.98);
  color: var(--ink);
  border: 1px solid rgba(212, 202, 186, 0.86);
}

.preview-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.preview-card p {
  margin: 0;
  color: rgba(30, 36, 33, 0.75);
}

.preview-progress {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(29, 108, 99, 0.14);
  overflow: hidden;
}

.preview-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--brass));
}

main section {
  padding: 22px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-copy {
  max-width: 60ch;
  color: rgba(30, 36, 33, 0.74);
  line-height: 1.6;
}

.grid-3,
.grid-4,
.metrics-grid,
.story-grid,
.beta-grid,
.footer-grid,
.faq-grid,
.timeline-grid,
.team-grid {
  display: grid;
  gap: 16px;
}

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

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

.beta-grid,
.footer-grid,
.timeline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.metric-card,
.story-card,
.team-card,
.beta-card,
.timeline-card,
.faq-card,
.footer-card,
.quote-card {
  padding: 22px;
}

.metric-card strong {
  display: block;
  font-size: 2.2rem;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 8px;
}

.metric-card span,
.feature-card p,
.story-card p,
.team-card p,
.timeline-card p,
.faq-card p,
.footer-card p,
.beta-card p,
.quote-card p,
.list-copy {
  color: rgba(30, 36, 33, 0.75);
  line-height: 1.6;
}

.feature-card h3,
.story-card h3,
.team-card h3,
.timeline-card h3,
.faq-card h3,
.beta-card h3,
.footer-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(232, 240, 236, 0.9);
  color: var(--pine);
  font-weight: 800;
  margin-bottom: 14px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.list-panel ul,
.footer-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(30, 36, 33, 0.78);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-step__index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(232, 240, 236, 0.92);
  border: 1px solid rgba(15, 76, 70, 0.14);
  color: var(--pine);
  font-weight: 800;
}

.timeline-step__body strong {
  display: block;
  margin-bottom: 4px;
}

.page-hero {
  padding: 34px;
}

.page-hero p {
  max-width: 70ch;
}

.quote-card {
  background: linear-gradient(135deg, var(--pine), var(--moss));
  color: var(--white);
}

.quote-card p,
.quote-card strong,
.quote-card small {
  color: var(--white);
}

.quote-card p {
  font-size: 1.08rem;
}

.cta-banner {
  padding: 28px;
  background: linear-gradient(135deg, var(--pine), var(--moss));
  color: var(--white);
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.site-footer {
  padding: 24px 0 42px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: rgba(30, 36, 33, 0.66);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.beta-email {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pine);
}

.notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(232, 240, 236, 0.9);
  border: 1px solid rgba(15, 76, 70, 0.12);
  color: rgba(30, 36, 33, 0.78);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-panel,
  .grid-3,
  .grid-4,
  .metrics-grid,
  .story-grid,
  .beta-grid,
  .footer-grid,
  .faq-grid,
  .timeline-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(248, 243, 233, 0.98);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .btn-ghost {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(var(--site-width), calc(100% - 20px));
  }

  .hero,
  main section,
  .site-footer {
    padding-top: 18px;
  }

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

  .btn,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }

  .page-hero,
  .feature-card,
  .story-card,
  .team-card,
  .beta-card,
  .faq-card,
  .timeline-card,
  .footer-card,
  .metric-card,
  .hero-preview,
  .cta-banner {
    padding: 18px;
  }

  .site-footer__bottom,
  .section-head,
  .site-header__inner {
    align-items: start;
    flex-direction: column;
  }
}
