:root {
  --bg: #0d0c0b;
  --surface: #151310;
  --surface-2: #1c1814;
  --ink: #f4efe6;
  --muted: #bcb3a7;
  --line: rgba(227, 196, 138, 0.23);
  --gold: #e3c48a;
  --ember: #c85d32;
  --green: #6d9b80;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(200, 93, 50, 0.12), transparent 30rem),
    var(--bg);
  font-family: Outfit, "Segoe UI", sans-serif;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 12, 11, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 650;
  text-decoration: none;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta { color: white; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.btn-primary { color: white; background: var(--ember); border-color: var(--ember); }
.btn-secondary { color: var(--gold); background: rgba(227,196,138,.05); }
.breadcrumbs {
  padding-top: 34px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs ol {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #6f675e; }
.breadcrumbs a { text-decoration: none; }
.hero { padding: 72px 0 68px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Fraunces, Georgia, serif; }
h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -.035em;
}
.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-panel {
  padding: 28px;
  background: linear-gradient(145deg, rgba(227,196,138,.08), rgba(200,93,50,.08));
  border: 1px solid var(--line);
  border-radius: 18px;
}
.hero-panel > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-panel ul { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.hero-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.hero-panel li:last-child { padding-bottom: 0; border: 0; }
.hero-panel li::after { content: "✓"; color: var(--green); font-weight: 700; }
.section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.section-head { max-width: 700px; margin-bottom: 30px; }
.section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 560;
  line-height: 1.08;
}
.section-head p, .content-block p { color: var(--muted); line-height: 1.65; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.solution-card:hover { transform: translateY(-4px); background: var(--surface-2); }
.solution-card .code {
  color: var(--ember);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.solution-card h2, .solution-card h3 { margin: 18px 0 10px; font-size: 24px; }
.solution-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.solution-card strong { margin-top: auto; padding-top: 20px; color: var(--gold); font-size: 13px; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.content-block {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.content-block h2, .content-block h3 { margin: 0 0 12px; font-size: 26px; }
.check-list { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: var(--muted); line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: step; }
.steps article { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; }
.steps article::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--ember);
  font-size: 12px;
  font-weight: 700;
}
.steps h3 { margin: 16px 0 8px; font-size: 21px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a {
  padding: 10px 13px;
  color: var(--gold);
  background: rgba(227,196,138,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}
.final-cta { padding: 68px 0; text-align: center; }
.final-cta h2 { max-width: 18ch; margin: 0 auto 14px; font-size: clamp(32px, 5vw, 48px); }
.final-cta p { max-width: 55ch; margin: 0 auto 25px; color: var(--muted); line-height: 1.6; }
.footer { padding: 30px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; font-size: 12px; }
.footer a { color: var(--gold); }

@media (max-width: 860px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .solution-grid, .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 15px 0; }
  .nav-links { width: 100%; justify-content: space-between; gap: 10px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links .nav-cta { width: 100%; text-align: center; }
  .breadcrumbs { padding-top: 24px; }
  .hero { padding: 45px 0 50px; }
  h1 { font-size: 43px; }
  .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-panel { padding: 21px; }
  .section { padding: 50px 0; }
  .solution-grid, .steps { grid-template-columns: 1fr; }
  .solution-card { min-height: 230px; }
  .footer-inner { flex-direction: column; }
}
