:root {
  --ink: #0b0e12;
  --ink-2: #12171e;
  --ink-3: #1a212b;
  --paper: #f3eee4;
  --paper-2: #e8e0d2;
  --copper: #c9893a;
  --copper-2: #e8b86d;
  --teal: #5eead4;
  --teal-dim: #2a9d8f;
  --muted: #9aa4b0;
  --line: rgba(243, 238, 228, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1180px;
  --font-d: "Fraunces", Georgia, serif;
  --font-s: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-s);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--copper);
  color: var(--ink);
  padding: 8px 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 14, 18, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand svg {
  display: block;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}

.btn-copper {
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #1a1208;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: grid;
  place-items: end start;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 18, 0.2), rgba(11, 14, 18, 0.92)),
    radial-gradient(circle at 20% 80%, rgba(201, 137, 58, 0.18), transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
  max-width: 820px;
}

.kicker {
  color: var(--teal);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  font-family: var(--font-d);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(40px, 7vw, 84px);
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 0 0 16px;
}

h3 {
  font-size: 26px;
  margin: 0 0 10px;
}

.lede {
  font-size: 19px;
  color: var(--paper-2);
  max-width: 62ch;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-family: var(--font-d);
  font-size: 34px;
  color: var(--copper-2);
}

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

section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: end;
}

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

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

.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 240px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 137, 58, 0.45);
}

.card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split img,
.media {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.paper {
  background: var(--paper);
  color: var(--ink);
}

.paper .muted {
  color: #5c564c;
}

.paper .card {
  background: #fffdf8;
  border-color: rgba(11, 14, 18, 0.08);
  color: var(--ink);
}

.paper .table th,
.paper .table td {
  border-bottom-color: rgba(11, 14, 18, 0.12);
}

.paper .kicker {
  color: var(--teal-dim);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.paper .step {
  border-top-color: rgba(11, 14, 18, 0.15);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--copper);
  font-family: var(--font-d);
  font-size: 22px;
  margin-bottom: 10px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

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

.table th {
  color: var(--muted);
  font-weight: 500;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--paper);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.success {
  display: none;
  padding: 16px;
  border-radius: 12px;
  background: rgba(94, 234, 212, 0.12);
  color: var(--teal);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 6px 0;
}

.tiny {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 68px);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    inset: 74px 16px auto;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .stats,
  .cards,
  .steps,
  .split,
  .section-head,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
