:root {
  --bg: #0c0c0c;
  --bg-2: #121212;
  --panel: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --fg: #f4f1ec;
  --muted: #9a9a9a;
  --accent: #ff5a1f;
  --accent-ink: #160a05;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { color-scheme: dark; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
#apply { scroll-margin-top: 24px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.6 var(--sans);
  padding: 0 20px 96px;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(255, 90, 31, 0.16), transparent 60%),
    radial-gradient(700px 500px at 100% 20%, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--bg);
}
.wrap { max-width: 720px; margin: 0 auto; }

header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--fg); }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand span { font-weight: 600; font-size: 15px; letter-spacing: 0.01em; }
.pill {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 12px;
}

.hero { padding: 84px 0 56px; }
.eyebrow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; }
h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 8vw, 68px); line-height: 1.02; letter-spacing: -0.015em;
  margin: 0 0 22px;
}
h1 em { font-style: italic; color: #fff; }
.lede { color: #c9c4bc; font-size: 19px; line-height: 1.55; max-width: 560px; margin: 0 0 30px; }
.cta { display: inline-flex; align-items: center; gap: 10px; }
.cta a.primary {
  background: var(--accent); color: var(--accent-ink); text-decoration: none;
  padding: 15px 22px; border-radius: 12px; font-weight: 600; font-size: 16px;
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.5), 0 14px 40px -12px rgba(255, 90, 31, 0.6);
}
.cta a.primary:hover { filter: brightness(1.07); }
.cta small { color: var(--muted); font-size: 14px; }

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
section { padding: 52px 0; }
section + section { border-top: 1px solid var(--line); }
h2 {
  font-family: var(--serif); font-weight: 400; font-size: 30px; letter-spacing: -0.01em;
  margin: 0 0 18px; line-height: 1.15;
}
.kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
p { margin: 0 0 14px; color: #d9d4cc; }
p:last-child { margin-bottom: 0; }

.two { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .two { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 18px;
}
.card h3 { margin: 0 0 12px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.card.yes h3 { color: var(--accent); }
.card.no h3 { color: var(--muted); }
.card ul { list-style: none; padding: 0; margin: 0; }
.card li { padding: 10px 0; border-top: 1px solid var(--line); color: #d9d4cc; font-size: 16px; line-height: 1.45; }
.card li:first-child { border-top: 0; padding-top: 0; }

.steps { display: grid; grid-template-columns: 1fr; gap: 0; counter-reset: s; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.step { padding: 18px 0; border-top: 1px solid var(--line); }
@media (min-width: 640px) { .step { border-top: 1px solid var(--line-strong); padding-top: 20px; } }
.step .n { font-family: var(--serif); font-size: 26px; color: var(--accent); margin: 0 0 6px; }
.step p { font-size: 15.5px; color: #cfc9c0; }

.spec { display: grid; grid-template-columns: 1fr; gap: 0; }
.spec div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 16px; }
.spec div:first-child { border-top: 0; }
.spec dt { color: var(--muted); margin: 0; flex: 0 0 28%; }
.spec dd { margin: 0; color: #e6e1d9; text-align: right; }

form {
  background: linear-gradient(180deg, #171717, #121212);
  border: 1px solid var(--line-strong); border-radius: 20px; padding: 28px;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
}
@media (min-width: 640px) { form { padding: 34px; } }
.grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .grid { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13px; color: var(--muted); margin: 0 0 7px; letter-spacing: 0.02em; }
input {
  width: 100%; background: #0b0b0b; color: var(--fg);
  border: 1px solid #2a2a2a; border-radius: 11px; padding: 14px 15px; font: inherit; font-size: 16px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
input::placeholder { color: #4f4f4f; }
input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18); }
button {
  width: 100%; margin-top: 22px; padding: 17px; border: 0; border-radius: 12px;
  background: var(--accent); color: var(--accent-ink); font: inherit; font-weight: 600; font-size: 17px; cursor: pointer;
  box-shadow: 0 14px 40px -14px rgba(255, 90, 31, 0.7);
}
button:hover { filter: brightness(1.07); }
.hp { position: absolute; left: -9999px; }
.note { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }
a { color: var(--fg); }

.big {
  display: inline-block; margin-top: 22px; padding: 16px 24px; background: var(--accent); color: var(--accent-ink);
  border-radius: 12px; font-weight: 600; text-decoration: none; font-size: 17px;
  box-shadow: 0 14px 40px -14px rgba(255, 90, 31, 0.7);
}
footer { padding-top: 40px; color: #5e5e5e; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
footer a { color: #8a8a8a; text-decoration: none; }

@keyframes lift { to { border-color: rgba(255, 90, 31, 0.55); box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.14), 0 30px 80px -40px rgba(0, 0, 0, 0.9); } }
form.lit { animation: lift 500ms ease-out forwards; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } form.lit { animation: none; } }
