:root {
  --sp-red:       #B5121A;
  --sp-red-deep:  #7A0A11;
  --sp-red-glow:  #E2241D;
  --sp-ink:       #0A0A0A;
  --sp-paper:     #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius-btn: 999px;
  --max-width:  480px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(ellipse 70% 50% at 50% 12%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,0,0,0.35), transparent 70%),
    var(--sp-red);
  color: var(--sp-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.hero__logo {
  width: 220px;
  height: 220px;
  max-width: 60vw;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.hero__wordmark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(44px, 12vw, 56px);
  color: var(--sp-ink);
  margin: -8px 0 6px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.hero__tag {
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.link:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.link:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(0,0,0,0.25); }

.link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.link__icon { font-size: 18px; opacity: 0.85; }

.link--primary {
  background: var(--sp-paper);
  color: var(--sp-ink);
}

.link--secondary {
  background: rgba(0,0,0,0.92);
  color: var(--sp-paper);
}

.link--secondary:hover {
  background: var(--sp-ink);
}

.social {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.social__link {
  color: rgba(0,0,0,0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 10px 6px;
  margin: -10px -6px;
  transition: color 160ms ease, border-color 160ms ease;
}

.social__link:hover {
  color: var(--sp-ink);
  border-color: rgba(0,0,0,0.5);
}

.social__link:focus-visible {
  color: var(--sp-ink);
  border-color: rgba(0,0,0,0.5);
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 2px;
}

.social__sep {
  color: rgba(0,0,0,0.4);
}

@keyframes sp-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sp-fade-in-scale {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

.hero__logo {
  animation: sp-fade-in-scale 400ms ease-out both;
}

.hero__wordmark { animation: sp-fade-up 350ms 80ms ease-out both; }
.hero__tag      { animation: sp-fade-up 350ms 160ms ease-out both; }

.link--primary    { animation: sp-fade-up 350ms 240ms ease-out both; }
.link--secondary:nth-of-type(2) { animation: sp-fade-up 350ms 300ms ease-out both; }
.link--secondary:nth-of-type(3) { animation: sp-fade-up 350ms 360ms ease-out both; }
.link--secondary:nth-of-type(4) { animation: sp-fade-up 350ms 420ms ease-out both; }
.social         { animation: sp-fade-up 350ms 520ms ease-out both; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
