@font-face { font-family: "Barlow Condensed"; src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/assets/fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/assets/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }

:root { --bg: #0B0B0C; --text: #FFFFFF; --muted: #C9C9CC; --accent: #FF5A1F; --line: #2A2A2E; --radius: 12px; }
* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text); font: 400 17px/1.5 Inter, system-ui, sans-serif; }
body { margin: 0; }
a { color: var(--text); text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-photos, .hero-photo, .hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo img { object-fit: cover; }
.hero-photo { opacity: 0; transition: opacity 1.2s ease; }
.hero-photo.is-active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.72) 0%, rgba(11,11,12,.55) 45%, rgba(11,11,12,.92) 72%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 1; width: min(640px, 100%); padding: 24px 16px 40px; }
.brand { font: 800 20px/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 12px; }
.brand a { text-decoration: none; }
h1 { font: 800 clamp(44px, 12vw, 88px)/.92 "Barlow Condensed", sans-serif; text-transform: uppercase; margin: 0 0 12px; }
h1 span { color: var(--accent); }
.lede { color: var(--text); max-width: 34ch; margin: 0 0 20px; }

form label[for="email"], legend { font-weight: 600; font-size: 15px; display: block; margin-bottom: 6px; }
input[type="email"] { width: 100%; min-height: 52px; padding: 0 14px; border-radius: var(--radius); border: 1px solid var(--line); background: #151517; color: var(--text); font: inherit; }
fieldset { border: 0; padding: 0; margin: 16px 0; display: flex; flex-wrap: wrap; gap: 8px; }
legend { width: 100%; }
.chip input { position: absolute; opacity: 0; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); background: #151517; cursor: pointer; }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--bg); font-weight: 600; }
.chip input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
.honeypot { position: absolute; left: -9999px; }
button { width: 100%; min-height: 56px; border: 0; border-radius: var(--radius); background: var(--accent); color: var(--bg); font: 800 22px/1 "Barlow Condensed", sans-serif; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
button:disabled { opacity: .6; cursor: progress; }
button.pulse { animation: pulse .6s ease-out 1; }
@keyframes pulse { 50% { transform: scale(1.02); } }
.micro { color: var(--muted); font-size: 14px; margin: 10px 0 0; }
#form-status, #confirm-status { min-height: 1.5em; margin: 12px 0 0; font-weight: 600; }

.how, .honesty { width: min(960px, 100%); margin: 0 auto; padding: 48px 16px; }
.how h2 { font: 800 36px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.how ol { display: grid; gap: 16px; padding: 0; list-style: none; counter-reset: step; }
.how li { counter-increment: step; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); }
.how li::before { content: counter(step); display: block; font: 800 32px/1 "Barlow Condensed", sans-serif; color: var(--accent); margin-bottom: 8px; }
@media (min-width: 760px) {
  .how ol { grid-template-columns: repeat(3, 1fr); }
  .hero-content { padding: 48px; }
  .hero::after { background: linear-gradient(90deg, rgba(11,11,12,.9) 0%, rgba(11,11,12,.68) 40%, rgba(11,11,12,0) 70%), linear-gradient(180deg, rgba(11,11,12,0) 20%, rgba(11,11,12,.85) 62%, var(--bg) 100%); }
  .hero-photo img { object-position: 78% center; }
}
.honesty p { color: var(--muted); border-left: 3px solid var(--accent); padding-left: 16px; margin: 0; }
footer { padding: 32px 16px 48px; color: var(--muted); font-size: 14px; text-align: center; }

.plain { min-height: 100svh; display: grid; place-items: center; }
.panel { width: min(560px, 100%); padding: 32px 16px; }
.prose h2 { font-size: 18px; margin-top: 28px; }
.prose p { color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .hero-photo { transition: none; }
  button.pulse { animation: none; }
}
