@font-face {
  font-family: 'Geist';
  src: url('./assets/fonts/geist-latin-wght-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('./assets/fonts/geist-mono-latin-wght-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --surface: #fdfcfb;
  --surface-strong: #f2ede7;
  --surface-tint: #ebf5ef;
  --border: #e4ded8;
  --border-strong: #d0c9c2;
  --text: #111110;
  --muted: #6f6863;
  --muted-strong: #57514c;
  --accent: #15783d;
  --accent-hover: #0f5f2e;
  --accent-soft: rgba(21, 120, 61, 0.12);
  --shadow: 0 18px 60px rgba(17, 17, 16, 0.08);
  --shadow-soft: 0 12px 28px rgba(17, 17, 16, 0.06);
  --radius-card: 22px;
  --radius-pill: 999px;
  --site-width: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Geist', sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.15)),
    radial-gradient(circle at top left, rgba(21, 120, 61, 0.08), transparent 34%),
    var(--bg);
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header,
.section,
.site-footer {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(253, 252, 251, 0.88);
  backdrop-filter: blur(8px);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: var(--muted-strong);
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--text);
  background: var(--surface-strong);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0 28px;
}

.hero-copy,
.info-card,
.faq-item,
.policy-card,
.support-card {
  background: rgba(253, 252, 251, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 30px;
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 120, 61, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(21, 120, 61, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 75%);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface-tint);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 640;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: none;
}

.hero p,
.page-hero p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.62;
  color: var(--muted-strong);
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-highlight-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(253, 252, 251, 0.92);
  border: 1px solid var(--border);
}

.hero-highlight-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--surface-tint);
  color: var(--accent);
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-highlight-copy strong,
.hero-highlight-copy span {
  display: block;
}

.hero-highlight-copy strong {
  margin-bottom: 3px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.hero-highlight-copy span {
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.42;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  font-weight: 640;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.button {
  background: var(--accent);
  color: #f7f5f0;
  box-shadow: 0 10px 24px rgba(21, 120, 61, 0.22);
}

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

.button-secondary {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  background: var(--surface-strong);
}

.hero-panel-title {
  font-size: 1rem;
  font-weight: 640;
}

.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--accent);
  background: var(--surface-tint);
}

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

.stack-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 168px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(253, 252, 251, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stack-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}

.stack-value strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.stack-value span {
  display: block;
  color: var(--muted-strong);
  line-height: 1.45;
  font-size: 0.94rem;
}

.section {
  padding: 20px 0 32px;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 54ch;
  color: var(--muted-strong);
  line-height: 1.55;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

.product-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.product-shot-card {
  width: min(100%, 1040px);
  padding: 14px;
  border-radius: 28px;
  background: rgba(253, 252, 251, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-shot {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: var(--surface-alt);
  box-shadow: var(--shadow-soft);
}

.product-summary-card {
  min-height: 100%;
}

.product-support-grid {
  align-items: stretch;
}

.info-card,
.policy-card,
.support-card,
.faq-item {
  border-radius: 24px;
  padding: 22px;
}

.info-card h3,
.policy-card h2,
.support-card h2,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.info-card p,
.policy-card p,
.policy-card li,
.support-card p,
.faq-item p,
.support-card li {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.62;
}

.info-card p + p,
.policy-card p + p,
.support-card p + p,
.faq-item p + p {
  margin-top: 10px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.local-note {
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(235, 245, 239, 0.82), rgba(253, 252, 251, 0.9));
  border: 1px solid rgba(21, 120, 61, 0.16);
  box-shadow: var(--shadow-soft);
}

.local-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.local-note p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.62;
}

.page-hero {
  padding: 34px 0 20px;
}

.page-hero-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 30px;
  background: rgba(253, 252, 251, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-hero-card h1 {
  max-width: none;
}

.page-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface-strong);
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
}

.policy-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.policy-stack,
.support-stack {
  display: grid;
  gap: 16px;
}

.policy-card ul,
.support-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-card li + li,
.support-card li + li {
  margin-top: 8px;
}

.support-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--surface-tint);
  color: var(--accent);
  font-weight: 640;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: inline-flex;
  gap: 16px;
}

.muted-link {
  color: var(--muted-strong);
}

.muted-link:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero,
  .policy-layout,
  .support-layout,
  .hero-highlights,
  .hero-steps,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.9rem);
  }

  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .info-card,
  .policy-card,
  .support-card,
  .faq-item {
    border-radius: 24px;
    padding: 20px;
  }

  .stack-row {
    grid-template-columns: 1fr;
  }
}

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

  .button,
  .button-secondary,
  .site-nav a {
    transition: none;
  }
}
