@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
@import url("https://fonts.cdnfonts.com/css/departure-mono");

:root {
  --bg: #0a0a0a;
  --panel: #111110;
  --fg: #f2f2ee;
  --dim: #c2c2bc;
  --muted: #8e8e88;
  --line: rgba(232, 232, 227, 0.12);
  --line-strong: rgba(232, 232, 227, 0.22);
  --accent: #e9b357;
  --accent-soft: rgba(233, 179, 87, 0.12);
  --mono: "Departure Mono", ui-monospace, monospace;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--fg); }
body { font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #1a1407; }

.page { min-height: 100svh; display: flex; flex-direction: column; background: linear-gradient(180deg, #090909 0%, #0d0d0c 52%, #080808 100%); }
.shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(10, 10, 10, 0.78); backdrop-filter: blur(10px); }
.site-header .shell { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 22px; letter-spacing: -0.01em; }
.brand-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.nav { display: flex; align-items: center; gap: 18px; font-family: var(--mono); color: var(--dim); font-size: 14px; letter-spacing: 0.04em; }
.nav a { border: 1px solid transparent; padding: 8px 12px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.nav a:hover { color: var(--accent); border-color: var(--line); background: rgba(255, 255, 255, 0.03); }
.nav .cta { color: #1a1407; background: var(--accent); border-color: var(--accent); }
.nav .cta:hover { color: #1a1407; filter: brightness(1.08); }

main { flex: 1; }
.hero { padding: 90px 0 56px; }
.eyebrow { font-family: var(--mono); color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; font-size: 15px; margin-bottom: 22px; }
h1, h2, h3, .meta-label, .btn, .footer-brand { font-family: var(--mono); font-weight: 400; }
h1 { max-width: 900px; margin: 0; font-size: clamp(38px, 6vw, 76px); line-height: 0.98; letter-spacing: -0.03em; }
.lead { max-width: 760px; margin: 28px 0 0; color: var(--dim); font-size: clamp(19px, 2vw, 24px); line-height: 1.5; }
.meta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 42px; border: 1px solid var(--line); background: var(--line); }
.meta-item { background: rgba(17, 17, 16, 0.9); padding: 20px 22px; }
.meta-label { display: block; color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.meta-value { color: var(--fg); }

.grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr); gap: 24px; padding: 0 0 72px; }
.panel { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)); padding: 32px; }
.panel h2 { margin: 0 0 18px; font-size: 26px; line-height: 1.2; color: var(--fg); }
.panel p { color: var(--dim); margin: 0 0 18px; max-width: 72ch; }
.panel p:last-child { margin-bottom: 0; }
.list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.list li { position: relative; padding-left: 22px; color: var(--dim); }
.list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.steps li { counter-increment: step; display: grid; grid-template-columns: 72px 1fr; gap: 22px; background: var(--panel); padding: 24px; color: var(--dim); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--mono); color: var(--accent); letter-spacing: 0.08em; }
.section { padding: 0 0 72px; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding: 32px 0 82px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border: 1px solid var(--line-strong); letter-spacing: 0.04em; transition: transform 0.2s, border-color 0.2s, background 0.2s; }
.btn:hover { transform: translateY(-1px); border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #1a1407; }
.btn.secondary { color: var(--dim); }
.footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--muted); }
.footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--fg); }

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 1120px); }
  .site-header .shell { height: auto; min-height: 62px; padding: 12px 0; align-items: flex-start; }
  .nav { gap: 8px; flex-wrap: wrap; justify-content: flex-end; font-size: 12px; }
  .nav a { padding: 7px 9px; }
  .hero { padding: 58px 0 36px; }
  .meta-row, .grid { grid-template-columns: 1fr; }
  .panel { padding: 24px 20px; }
  .steps li { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .cta-row, .footer .shell { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
