:root {
  --bg: #070709;
  --ink: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.62);
  --gold: #f2c94c;
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
}

body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  position: relative;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(242, 201, 76, 0.16), transparent 55%),
    radial-gradient(700px 480px at 88% 78%, rgba(90, 120, 160, 0.18), transparent 50%),
    linear-gradient(165deg, #0b0b10 0%, #070709 45%, #0a0c12 100%);
  pointer-events: none;
  z-index: 0;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  animation: rise 0.7s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.mark {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 9vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.tag {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.headline {
  margin: 0 0 0.85rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 560;
  font-size: clamp(1.85rem, 7vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 34ch;
}

.actions {
  display: grid;
  gap: 0.75rem;
}

.btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.985);
}

.btn-primary {
  background: var(--gold);
  color: #111;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-ghost {
  background: var(--panel);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.btn-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.btn-primary .btn-kicker {
  opacity: 0.75;
}

.btn-label {
  font-size: 1.05rem;
  font-weight: 700;
}

.hint {
  margin: 1.1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.hint.is-warn {
  color: #ffb4a8;
}

.foot {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.foot a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 201, 76, 0.45);
}

.foot a:hover {
  color: var(--gold);
}
