@font-face {
  font-family: Geist;
  src: url("assets/geist.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/geist-mono.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #fffaf7;
  --card: #ffffff;
  --ink: #242424;
  --muted: #6f655f;
  --line: #eadfd6;
  --coral: #f04b23;
  --coral-deep: #a13e25;
  --peach: #ffd6c4;
  --hero: #242424;
  --hero-ink: #faf6f2;
  --hero-muted: #b9aca4;
  --radius: 16px;
  --mono: "Geist Mono", ui-monospace, monospace;
  --serif: Georgia, "Times New Roman", serif;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #1b1b1b;
  --card: #262626;
  --ink: #f5f1ec;
  --muted: #b7ada6;
  --line: #3a3733;
  --coral: #ff6338;
  --coral-deep: #ff9874;
  --peach: #3a2a24;
  --hero: #101010;
  --hero-ink: #faf6f2;
  --hero-muted: #a89c94;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}
.wrap { max-width: 600px; margin: 0 auto; padding: 28px 18px 56px; }

/* ---------- hero (LP dark panel) ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(240, 75, 35, 0.28), transparent 55%),
    var(--hero);
  color: var(--hero-ink);
  border-radius: 22px;
  padding: 30px 26px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.announce {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.02em;
  color: var(--hero-muted);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px; padding: 7px 14px; margin: 0 0 20px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  outline: 2px solid var(--coral); outline-offset: 4px;
  display: block; margin: 0 auto;
}
.hero h1 {
  font-size: 34px; line-height: 1.12; letter-spacing: -0.025em;
  margin: 18px 0 10px; font-weight: 700;
}
.hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.lede { color: var(--hero-muted); font-size: 16px; line-height: 1.6; margin: 0 auto 22px; max-width: 400px; }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; }
.btn-solid {
  display: block; text-decoration: none; text-align: center;
  background: var(--coral); color: #fff; font-weight: 700; font-size: 16px;
  border-radius: 12px; padding: 15px 20px;
  transition: transform 0.16s ease, filter 0.16s ease;
}
.btn-solid:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  display: block; text-decoration: none; text-align: center;
  color: var(--hero-ink); font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 12px; padding: 13px 20px;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.btn-ghost:hover { border-color: var(--coral); background: rgba(240, 75, 35, 0.12); }
.micro { font-family: var(--mono); font-size: 11.5px; color: var(--hero-muted); margin: 14px 0 0; }

/* ---------- groups ---------- */
.group { margin-top: 30px; }
.label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted); margin: 0 4px 12px;
}

/* ---------- offer cards ---------- */
.offer {
  display: block; text-decoration: none; color: var(--ink);
  background: linear-gradient(135deg, var(--peach) 0%, var(--card) 130%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 20px 18px; margin-bottom: 12px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.offer.dark { background: linear-gradient(135deg, #2b2b2b, var(--hero)); color: var(--hero-ink); border-color: rgba(255,255,255,0.1); }
:root[data-theme="dark"] .offer.dark { background: linear-gradient(135deg, #333, #101010); }
.offer:hover { transform: translateY(-2px); border-color: var(--coral); }
.offer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pill {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  background: var(--coral); color: #fff; border-radius: 999px; padding: 4px 11px;
}
.mono { font-family: var(--mono); font-size: 12px; color: var(--coral-deep); }
.offer.dark .mono { color: var(--hero-muted); }
.offer strong { display: block; font-size: 21px; letter-spacing: -0.015em; }
.offer .sub { display: block; font-size: 14.5px; line-height: 1.55; color: var(--muted); margin-top: 6px; }
.offer.dark .sub { color: var(--hero-muted); }
.go { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 14.5px; color: var(--coral-deep); }
.offer.dark .go { color: var(--coral); }

/* ---------- rows ---------- */
.row {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 15px 16px; margin-bottom: 10px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.row:hover { transform: translateY(-2px); border-color: var(--coral); }
.glyph {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 18px; color: var(--coral-deep);
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
}
.txt { flex: 1; min-width: 0; }
.txt strong { display: block; font-size: 16px; letter-spacing: -0.01em; }
.txt .sub { display: block; font-size: 13.5px; line-height: 1.5; color: var(--muted); margin-top: 2px; }
.arrow { font-size: 17px; color: var(--muted); transition: transform 0.16s ease, color 0.16s ease; }
.row:hover .arrow { transform: translate(2px, -2px); color: var(--coral); }

/* ---------- tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile {
  text-decoration: none; color: var(--ink); text-align: center;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 8px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.tile:hover { transform: translateY(-2px); border-color: var(--coral); }
.tile strong { display: block; font-size: 14.5px; }
.tile .sub { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ---------- footer ---------- */
footer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 34px; }
.theme-row { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.theme-row button {
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; cursor: pointer; min-height: 40px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.theme-row button[aria-pressed="true"] { color: var(--coral-deep); border-color: var(--coral); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* ---------- one orchestrated entrance ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.load { opacity: 0; animation: rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: calc(var(--d, 0) * 0.08s); }
@media (prefers-reduced-motion: reduce) {
  .load { opacity: 1; animation: none; }
  .row:hover, .offer:hover, .tile:hover, .btn-solid:hover { transform: none; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 29px; }
  .tiles { grid-template-columns: 1fr; }
}
