:root {
  --bg: #f3f0e8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffdfa;
  --text: #1d1f1a;
  --muted: #556157;
  --line: rgba(29, 31, 26, 0.12);
  --accent: #0f6c5c;
  --accent-strong: #0a4e43;
  --warm: #d7a34e;
  --shadow: 0 22px 60px rgba(18, 26, 24, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 163, 78, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(15, 108, 92, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f3eb 0%, var(--bg) 100%);
  font: 16px/1.65 Georgia, "Times New Roman", serif;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font: 700 0.85rem/1.2 "Segoe UI", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.15rem;
}

.lede {
  max-width: 54rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font: 600 0.96rem/1 "Segoe UI", sans-serif;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.section {
  margin: 2.6rem 0 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  padding: 1.3rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

code,
pre {
  font-family: Consolas, "Courier New", monospace;
}

pre {
  overflow-x: auto;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: #f4f3ef;
  background:
    linear-gradient(180deg, rgba(19, 33, 30, 0.97) 0%, rgba(12, 20, 19, 0.98) 100%);
  box-shadow: var(--shadow);
}

table.options {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

table.options th,
table.options td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

table.options tr:last-child td {
  border-bottom: 0;
}

table.options th {
  font-family: "Segoe UI", sans-serif;
  background: rgba(15, 108, 92, 0.08);
}

.note {
  color: var(--muted);
}

@media (max-width: 860px) {
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}
