:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #292826;
  --muted: #68625b;
  --border: #e7e0d8;
  --primary: #356f67;
  --primary-dark: #28574f;
  --soft: #edf5f2;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.site-header,
.site-footer,
.hero,
.section,
.legal {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: -3px;
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
}

.nav-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--surface);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 48px 0 72px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.93;
  margin: 12px 0 24px;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.lede {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--muted);
  max-width: 680px;
}

.hero-actions,
.split {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--primary);
  color: white;
}

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

.product-panel,
.card,
.release-card,
.legal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(42, 36, 28, 0.08);
}

.product-panel,
.card,
.release-card {
  padding: 24px;
}

.status-row {
  color: var(--primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.status-row span {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.feature-line {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.feature-line strong,
.feature-line span {
  display: block;
}

.feature-line span,
.card p,
.legal p,
.legal li {
  color: var(--muted);
}

.section {
  padding: 28px 0;
}

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

.split {
  justify-content: space-between;
  background: var(--soft);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 56px;
}

.legal {
  padding: clamp(24px, 4vw, 46px);
  margin-top: 32px;
  margin-bottom: 48px;
}

.legal h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal h2 {
  margin-top: 30px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .legal {
    width: min(100% - 24px, 1120px);
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 42px;
  }

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