:root {
  --bg: #f6f4ef;
  --paper: #ffffff;
  --ink: #1b1b1b;
  --muted: #555;
  --line: #ddd6ca;
  --dark: #111;
  --warn: #fff3cd;
  --accent: #8b3f16;
  --accent-soft: #f1dfcf;
  --success: #edf7ef;
  --success-line: #8aa88f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
}

a { color: inherit; }

.wrap {
  max-width: 980px;
  margin: auto;
  padding: 24px;
}

.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover { border-bottom-color: currentColor; }

header {
  background:
    linear-gradient(115deg, rgba(255,255,255,.94), rgba(248,239,227,.88)),
    radial-gradient(circle at 82% 18%, rgba(216,155,0,.2), transparent 28%),
    linear-gradient(180deg, #fff, #f8efe3);
  border-bottom: 1px solid var(--line);
  padding: 52px 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 850px;
}

.page h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 760px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 28px;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(27,27,27,.08);
}

.hero-card h2 {
  font-size: 22px;
  margin-top: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
  margin: 0;
}

.check-list li:first-child { border-top: 0; }

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

.button {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--dark);
}

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

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

section { margin: 42px 0; }

h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p { margin: 0 0 16px; }

.notice {
  background: var(--warn);
  border-left: 5px solid #d89b00;
  padding: 18px;
  margin: 28px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 28px 0 42px;
}

.trust-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.trust-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  min-height: 180px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.card a {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff, var(--accent-soft));
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.panel.good {
  background: var(--success);
  border-color: var(--success-line);
}

.tool-band {
  background: linear-gradient(180deg, #fff, var(--accent-soft));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.tool-band .split {
  gap: 18px;
}

.tool-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-points li {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(27,27,27,.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.process-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-weight: bold;
  margin-bottom: 12px;
}

.geo-preview {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.geo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
}

.geo-list li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin: 0;
}

.geo-list a {
  display: block;
  text-decoration: none;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 16px 16px 54px;
  margin-bottom: 12px;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 14px;
}

ul {
  padding-left: 20px;
  margin-top: 8px;
}

li { margin-bottom: 8px; }

.cta {
  background: var(--dark);
  color: white;
  border-radius: 8px;
  padding: 28px;
  margin: 42px 0;
  text-align: center;
}

.cta p {
  color: #eee;
  margin-bottom: 14px;
}

.cta a {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.cta .small { color: #d8d8d8; }

.backlink {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 24px 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .cards,
  .split,
  .hero-grid,
  .process,
  .trust-strip,
  .geo-list {
    grid-template-columns: 1fr;
  }

  header { padding: 36px 16px; }

  .site-nav .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
