:root {
  --bg: #14160f;
  --sheet: #171a11f2;
  --chip: #23271a;
  --line: #3a3f2e;
  --ink: #eceadb;
  --muted: #a7a892;
  --dim: #74755e;
  --gold: #e4b84a;
  --gold-ink: #1a1705;
  --link: var(--gold);
  --link-visited: #9a9580;
  --moss: #5d7a48;
  --accent: #6d8a4a;
  --edible: #7a9a3f;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --shadow: 0 12px 40px #00000055;
  --radius: 14px;
}

* { box-sizing: border-box; }

a:any-link {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:visited { color: var(--link-visited); }

a:hover,
a:focus-visible { color: var(--gold); }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: calc(12px + var(--safe-t)) 16px calc(40px + var(--safe-b));
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #2a3818 0%, transparent 55%),
    var(--bg);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
}

.site-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.brand img { height: 36px; width: auto; }

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
}

.top-nav a:hover { color: var(--gold); }

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
}

.lang-switch a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 6px;
  border-radius: 6px;
  color: var(--dim);
  text-decoration: none;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: var(--gold);
  background: var(--chip);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:active { transform: scale(.98); }

a.btn-primary,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus-visible,
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c99a2e 100%);
  color: var(--gold-ink);
  text-decoration: none;
  box-shadow: 0 4px 20px #e4b84a44;
}

a.btn-primary:hover,
a.btn-primary:focus-visible,
.btn-primary:hover {
  box-shadow: 0 6px 28px #e4b84a66;
  color: var(--gold-ink);
}

.btn-secondary {
  background: var(--chip);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  margin-bottom: 48px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-lede {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
}

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

.hero-visual {
  margin: 28px 0 0;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--sheet);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.hero-visual figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--dim);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 32px 0 48px;
}

.stat {
  padding: 16px;
  border-radius: 12px;
  background: var(--chip);
  border: 1px solid var(--line);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
  font-family: var(--mono);
  margin-bottom: 4px;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

section {
  margin-bottom: 44px;
}

section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--ink);
}

section p {
  margin: 0 0 14px;
  color: var(--muted);
}

section ul {
  margin: 0 0 14px;
  padding-left: 1.25rem;
  color: var(--muted);
}

section li { margin-bottom: 6px; }

section li strong { color: var(--ink); }

.card-grid {
  display: grid;
  gap: 14px;
}

.card {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--chip);
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--accent);
}

.card p {
  margin: 0;
  font-size: 14px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 12px;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--chip);
  color: var(--gold);
  font-weight: 600;
}

.compare-table td { color: var(--muted); }

.compare-table td:first-child { color: var(--ink); font-weight: 500; }

.faq-list { display: grid; gap: 10px; }

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--chip);
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: var(--mono);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item div {
  padding: 0 18px 14px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item div p { margin: 0; }

.cta-block {
  margin: 48px 0 32px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1e2814 0%, #171a11 100%);
  border: 1px solid var(--moss);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-block h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.cta-block p {
  margin: 0 0 20px;
  color: var(--muted);
}

.site-foot {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--dim);
  text-align: center;
}

.site-foot a {
  color: var(--gold);
  text-decoration: none;
}

.site-foot p { margin: 8px 0; }

@media (min-width: 640px) {
  body { padding-left: 24px; padding-right: 24px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
}
