:root {
  --ink: #101722;
  --ink-2: #172231;
  --paper: #f6f1e7;
  --paper-2: #ebe5d8;
  --gold: #dca23c;
  --teal: #247f8f;
  --muted: #667382;
  --line: rgba(16, 23, 34, .14);
  --display: Georgia, "Times New Roman", serif;
  --body: Arial, system-ui, sans-serif;
  --mono: "Cascadia Mono", "Segoe UI Mono", ui-monospace, monospace;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--paper);
  background: rgba(13, 18, 26, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(246, 241, 231, .12);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand b { font-family: var(--display); font-size: 23px; }
.brand span, .eyebrow, .gold { color: var(--gold); }
.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(246, 241, 231, .66);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; font-size: 13px; font-weight: 700; color: rgba(246, 241, 231, .76); }
.links a:hover { color: var(--paper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
}
.btn-gold { background: var(--gold); color: #191105; }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-ghost { border-color: rgba(246, 241, 231, .34); color: var(--paper); }

.hero {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(36, 127, 143, .28), transparent 48%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid rgba(220, 162, 60, .28);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  padding: 88px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { margin-top: 18px; font-size: clamp(42px, 6vw, 72px); }
.hero p {
  margin-top: 18px;
  color: rgba(246, 241, 231, .78);
  font-size: 18px;
  max-width: 66ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.proof-panel {
  border: 1px solid rgba(246, 241, 231, .12);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, .045);
}
.proof-panel h2 { font-size: 28px; }
.proof-list, .check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
}
.proof-list li, .check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}
.check {
  color: var(--gold);
  font-weight: 900;
}

.section { padding: 78px 0; }
.section-muted { background: var(--paper-2); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { margin-top: 14px; font-size: clamp(32px, 4vw, 52px); }
.section-head p { margin-top: 14px; color: #46515f; font-size: 17px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card, .content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbf8f1;
}
.service-card h3, .content-card h3 { font-size: 24px; }
.service-card p, .content-card p { margin-top: 10px; color: #4b5866; font-size: 14.5px; }
.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #7b5412;
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fbf8f1;
}
.panel h2 { font-size: 34px; }
.panel p { margin-top: 12px; color: #4b5866; }
.cta-band {
  color: var(--paper);
  background: var(--ink);
  padding: 58px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { font-size: clamp(30px, 4vw, 48px); }
.cta-inner p { margin-top: 10px; color: rgba(246, 241, 231, .74); }

footer {
  color: rgba(246, 241, 231, .7);
  background: #0b111a;
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}
footer a { display: block; margin-top: 8px; }
footer a:hover { color: var(--paper); }

@media (max-width: 900px) {
  .links { display: none; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .hero-grid { padding: 64px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
