:root {
  --ink: #162114;
  --ink-soft: #3d4a38;
  --cream: #f6f1e4;
  --paper: #fffdf7;
  --lime: #8dbe24;
  --lime-deep: #6a9614;
  --forest: #1f3d16;
  --forest-2: #2e7d32;
  --sage: #e8f0d8;
  --line: rgba(22, 33, 20, 0.12);
  --shadow: 0 18px 50px rgba(31, 61, 22, 0.12);
  --radius: 22px;
  --max: 1120px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(141, 190, 36, 0.28), transparent 55%),
    radial-gradient(900px 420px at -10% 20%, rgba(46, 125, 50, 0.12), transparent 50%),
    var(--cream);
  line-height: 1.6;
}

a {
  color: var(--forest-2);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 228, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--sage);
  color: var(--ink);
}

.hero {
  padding: 72px 0 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 28px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 750;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 61, 22, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}


.grid {
  display: grid;
  gap: 20px;
}

.products {
  grid-template-columns: 1fr;
  padding-bottom: 80px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.product-copy,
.panel {
  padding: 36px;
}

.product-visual {
  background:
    linear-gradient(160deg, #1f3d16 0%, #2e7d32 48%, #8dbe24 100%);
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.kicker {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 8px;
}

.product-visual h2 {
  color: #fff;
  font-size: 2rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.chip {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.8rem;
  font-weight: 650;
}

.features {
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 0 56px;
}

.feature {
  padding: 24px;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
}

.legal {
  padding: 48px 0 88px;
}

.legal .card {
  padding: 36px 40px 48px;
}

.meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.toc {
  background: var(--sage);
  border-radius: 16px;
  padding: 18px 22px;
  margin: 0 0 32px;
}

.toc a {
  text-decoration: none;
  font-weight: 650;
}

.legal h2 {
  margin-top: 36px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal table,
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 8px;
}

.legal th,
.legal td,
.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.legal thead th,
.info-table thead th {
  background: var(--sage);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-table th[scope="row"] {
  width: 28%;
  color: var(--ink);
  font-weight: 750;
  background: var(--sage);
}

.section-end {
  padding-bottom: 80px;
}

.play-badge {
  height: 62px;
  width: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-weight: 650;
}

.steps {
  counter-reset: step;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 0 14px 52px;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  font-weight: 800;
  display: grid;
  place-items: center;
}

@media (max-width: 860px) {
  .product-card,
  .features {
    grid-template-columns: 1fr;
  }

  .product-copy,
  .panel,
  .legal .card {
    padding: 24px;
  }
}
