/* One sheet for both pages. The claim page is the product's front door — read by a stranger who
   has just been told money is waiting for them — so it has to look like the same real thing the
   coming-soon page does, not like an error screen with a logo on it. */
:root {
  --ink: #fdf4ec;
  --dim: #a89c93;
  --bg: #100c0a;
  --panel: #1b1512;
  --line: #2e2521;
  --flame: #ff6a1f;
  --ember: #ffc24b;
  --good: #4ade80;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(70rem 40rem at 50% -12rem, #33170c 0%, rgba(51, 23, 12, 0) 62%),
    var(--bg);
  color: var(--ink);
  font: 17px/1.6 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}
/* `margin: auto` rather than `align-items: center`, which clips the top of a card taller than the
   viewport — and the funded claim state is the tall one. */
main { width: 100%; max-width: 30rem; margin: auto; }
.lede main { text-align: center; }
.mark { display: block; margin: 0 auto 1.6rem; }
h1 {
  margin: 0 0 .9rem;
  font-size: clamp(2.6rem, 12vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
  background: linear-gradient(180deg, var(--ember), var(--flame));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.say { margin: 0 0 .5rem; font-size: 1.22rem; letter-spacing: -0.01em; }
.quiet { margin: 0 0 2.4rem; color: var(--dim); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

form { display: flex; gap: .5rem; flex-wrap: wrap; }
input {
  flex: 1 1 12rem;
  min-width: 0;
  font: inherit;
  padding: .8rem 1rem;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
input::placeholder { color: #6d625b; }
input:focus-visible { outline: 2px solid var(--flame); outline-offset: 1px; }
button {
  font: inherit;
  font-weight: 550;
  /* Full width once the row wraps, so a narrow screen gets a button and not a stub. */
  flex: 1 1 100%;
  padding: .8rem 1.25rem;
  border: 0;
  border-radius: 10px;
  color: #24100a;
  background: linear-gradient(180deg, var(--ember), var(--flame));
  cursor: pointer;
}
button:disabled { opacity: .55; cursor: default; }
.note { min-height: 1.6rem; margin: .9rem 0 0; font-size: .93rem; color: var(--dim); }
.note.good { color: var(--good); }

/* ── the claim page ───────────────────────────────────────────────────────────────────────── */
.brand {
  display: flex; align-items: center; gap: .55rem;
  margin: 0 0 1.75rem; font-weight: 600; letter-spacing: -0.01em;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}
.card h2 { margin: 0 0 .5rem; font-size: 1.35rem; letter-spacing: -0.015em; font-weight: 600; }
.card p { margin: 0 0 .9rem; color: var(--dim); }
.card p:last-child { margin-bottom: 0; }
.card a { color: var(--ember); }
/* `.card a` would otherwise repaint the button's own label in the button's own colour. */
.card a.cta { color: #24100a; }
/* `.card` in the selector on purpose: `.card p` would otherwise out-specify a bare `.amount` and
   render the one number on the page in the muted colour. */
.card p.amount {
  margin: .4rem 0 .3rem;
  font-size: clamp(2.4rem, 11vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--ink);
}
.card p.from { margin: 0 0 1.5rem; }
.cta {
  display: block;
  margin: 0 0 1.5rem;
  text-align: center;
  text-decoration: none;
  font-weight: 550;
  padding: .85rem 1.25rem;
  border-radius: 10px;
  color: #24100a;
  background: linear-gradient(180deg, var(--ember), var(--flame));
}
.assure {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .93rem;
  color: var(--dim);
}
.assure b { color: var(--ink); font-weight: 550; }
.assure ul { margin: .6rem 0 0; padding-left: 1.1rem; }
.assure li { margin: .35rem 0; }
