:root {
  --navy: #0e2240;
  --deep: #0b1a30;
  --red: #d8232a;
  --red-dark: #b3161c;
  --gold: #c99a2e;
  --page: #f4f6f9;
  --white: #ffffff;
  --ink: #101a2c;
  --ink-2: #3b475c;
  --ink-3: #6a7588;
  --line: #d9dfe8;
  --green: #14653a;
  --green-tint: #e3f3ea;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body { margin: 0; background: var(--page); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: var(--navy); }
img { max-width: 100%; display: block; }
.wrap { max-width: 980px; margin: 0 auto; padding-inline: 20px; }

/* header */
.top { background: var(--deep); color: var(--white); }
.top .wrap { display: flex; align-items: center; gap: 14px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 11px; }
.brand b { font-weight: 800; font-size: 21px; letter-spacing: -0.01em; }
.brand b i { font-style: italic; font-weight: 800; }
.nav { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: rgba(255,255,255,.78); text-decoration: none; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.nav a:hover, .nav a:focus-visible { color: var(--white); }

/* hero */
.hero { background: var(--navy); color: var(--white); padding-block: 56px 60px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: auto -10% -60% auto; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(216,35,42,.28), rgba(216,35,42,0)); pointer-events: none; }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.hero h1 { font-size: clamp(38px, 7vw, 66px); line-height: 1; letter-spacing: -0.03em; font-weight: 800; margin: 14px 0 18px; max-width: 14ch; text-wrap: balance; }
.hero p { font-size: 19px; line-height: 1.45; color: rgba(255,255,255,.8); max-width: 54ch; margin: 0 0 26px; }
.cta { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 13px; background: var(--red); color: var(--white); font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: 0; cursor: pointer; }
.cta:hover, .cta:focus-visible { background: var(--red-dark); }
.cta.ghost { background: transparent; border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.cta.ghost:hover { background: rgba(255,255,255,.08); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.status { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.status i { width: 8px; height: 8px; border-radius: 50%; background: #3ac36f; box-shadow: 0 0 0 4px rgba(58,195,111,.2); }

/* sections */
section { padding-block: 48px; }
h2 { font-size: 30px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 8px; text-wrap: balance; }
.lead { color: var(--ink-2); font-size: 17px; max-width: 62ch; margin: 0 0 24px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px 18px 16px; }
.card .k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.card h3 { margin: 8px 0 6px; font-size: 18px; line-height: 1.2; }
.card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.steps { counter-reset: s; display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; max-width: 68ch; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.steps li::before { content: counter(s); width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: var(--mono); font-weight: 700; font-size: 13px; display: grid; place-items: center; margin-top: 1px; }
.steps b { display: block; }
.steps span { color: var(--ink-2); font-size: 14.5px; }
code, .code { font-family: var(--mono); font-size: 13px; background: #e9edf4; padding: 2px 6px; border-radius: 6px; word-break: break-all; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.note { font-size: 13.5px; color: var(--ink-3); }

/* form */
form { display: grid; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
label { display: grid; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
input, select, textarea { font: inherit; font-size: 15px; color: var(--ink); background: var(--page); border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; width: 100%; min-height: 48px; }
textarea { min-height: 120px; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible, .cta:focus-visible, a:focus-visible { outline: 3px solid rgba(216,35,42,.35); outline-offset: 1px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.msg { font-size: 14px; color: var(--ink-2); }
.msg.ok { color: var(--green); font-weight: 700; }
.msg.bad { color: var(--red-dark); font-weight: 700; }

/* prose pages */
.prose { max-width: 70ch; }
.prose h2 { font-size: 22px; margin-top: 34px; }
.prose h3 { font-size: 17px; margin: 22px 0 6px; }
.prose p, .prose li { color: var(--ink-2); }
.prose .meta { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.prose ul { padding-left: 20px; }

footer { border-top: 1px solid var(--line); padding-block: 26px 40px; color: var(--ink-3); font-size: 13.5px; }
footer .wrap { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--ink-2); }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }

/* screenshots */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 8px; }
.shots figure { margin: 0; }
.phone { border-radius: 26px; overflow: hidden; background: var(--deep); padding: 8px; box-shadow: 0 18px 40px rgba(11,26,48,.22); max-width: 320px; margin: 0 auto; }
.phone img { border-radius: 19px; width: 100%; height: auto; }
.shots figcaption { text-align: center; margin-top: 12px; color: var(--ink-2); font-size: 14px; }
