:root {
  --white: #fff;
  --paper: #f8f8f5;
  --black: #0d0d0d;
  --muted: #6f6f68;
  --line: #deded7;
  --yellow: #ffd91a;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--black); }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
header { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.045em; font-size: 18px; }
.brand-mark { width: 27px; height: 27px; border-radius: 8px; background: var(--black); position: relative; }
.brand-mark::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; right: 5px; bottom: 5px; background: var(--yellow); }
.domain { font-size: 13px; color: var(--muted); letter-spacing: -.01em; }
main { flex: 1; display: grid; align-items: center; padding: 42px 0 74px; }
.hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: #3a3a36; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.kicker-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,217,26,.2); }
h1 { margin: 0; max-width: 800px; font-size: clamp(58px, 7.5vw, 104px); line-height: .91; letter-spacing: -.075em; font-weight: 800; }
.highlight { position: relative; display: inline-block; z-index: 0; }
.highlight::after { content: ""; position: absolute; left: -.01em; right: -.03em; height: .18em; bottom: .04em; background: var(--yellow); z-index: -1; transform: rotate(-1.2deg); }
.lead { max-width: 600px; margin: 28px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.55; letter-spacing: -.015em; }
.waitlist { margin-top: 34px; display: flex; gap: 10px; max-width: 600px; }
.email-wrap { flex: 1; position: relative; }
input[type="email"] { width: 100%; height: 56px; padding: 0 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--black); outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
input[type="email"]:focus { border-color: var(--black); box-shadow: 0 0 0 4px rgba(13,13,13,.06); }
input[type="email"]::placeholder { color: #a3a39c; }
.cta { height: 56px; padding: 0 22px; border: 0; border-radius: 14px; background: var(--black); color: white; font-weight: 750; letter-spacing: -.02em; cursor: pointer; transition: transform .18s ease, background .18s ease, opacity .18s ease; white-space: nowrap; }
.cta:hover:not(:disabled) { transform: translateY(-1px); background: #1c1c1c; }
.cta:active:not(:disabled) { transform: translateY(0); }
.cta:disabled { cursor: not-allowed; opacity: .48; }
.fineprint { margin-top: 12px; color: #94948d; font-size: 12px; }
.status { min-height: 20px; margin-top: 10px; font-size: 13px; color: var(--black); }
.status.error { color: #8c2d20; }
.turnstile { margin-top: 12px; max-width: 300px; }
.visual { min-height: 430px; display: grid; place-items: center; position: relative; }
.visual::before { content: ""; position: absolute; width: min(92%, 430px); aspect-ratio: 1; border-radius: 50%; background: var(--yellow); opacity: .14; filter: blur(2px); }
.vault-card { position: relative; width: min(100%, 420px); padding: 18px; border: 1px solid #d9d9d2; border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 28px 70px rgba(20,20,20,.10); transform: rotate(-2deg); }
.browser-bar { display: flex; align-items: center; gap: 7px; height: 30px; padding: 0 3px 14px; border-bottom: 1px solid #ecece7; }
.browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: #d8d8d1; }
.space { margin-top: 16px; display: flex; align-items: center; gap: 14px; padding: 15px; border-radius: 16px; background: var(--paper); }
.avatar { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--black); color: var(--yellow); font-weight: 800; font-size: 13px; }
.space-copy { min-width: 0; flex: 1; }
.space-title { font-weight: 750; letter-spacing: -.025em; }
.space-sub { margin-top: 3px; color: #85857d; font-size: 12px; }
.lock { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--yellow); color: var(--black); }
.lock svg { width: 16px; height: 16px; }
.signal { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; padding: 4px 2px 0; color: #77776f; font-size: 12px; }
.signal strong { color: var(--black); font-weight: 700; }
footer { min-height: 68px; border-top: 1px solid #efefea; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #999991; font-size: 12px; }
.sr-only, .hp { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 680px); }
  header { height: 68px; }
  .domain { display: none; }
  main { padding: 34px 0 54px; }
  .hero { grid-template-columns: 1fr; gap: 46px; }
  h1 { font-size: clamp(54px, 15vw, 82px); }
  .visual { min-height: auto; }
  .vault-card { width: min(92%, 430px); }
}
@media (max-width: 560px) {
  .waitlist { flex-direction: column; }
  .cta { width: 100%; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}
