:root {
  --bg-deep: #0c0b0a;
  --bg-mid: #161412;
  --text-primary: #f2ece4;
  --text-muted: #9a9188;
  --accent: #c41e1e;
  --accent-dim: rgba(196, 30, 30, 0.35);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100dvh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-dim) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(196, 30, 30, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 45%, #080706 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--accent);
  text-transform: uppercase;
  animation: brandFade 1s ease-out both;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-top: 0.75rem;
  animation: headlineRise 0.9s ease-out 0.15s both;
}

.hero__support {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 36rem;
  animation: headlineRise 0.9s ease-out 0.3s both;
}

.hero__accent {
  width: 0;
  height: 2px;
  background: var(--accent);
  margin: 2rem 0;
  animation: lineDraw 0.8s ease-out 0.5s both;
}

.hero__identity {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  animation: headlineRise 0.9s ease-out 0.65s both;
}

.hero__identity-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.hero__identity dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__identity dd {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.hero__alias {
  color: var(--text-muted);
  font-style: italic;
}

.hero__decency {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-muted);
  max-width: 32rem;
  animation: headlineRise 0.9s ease-out 0.75s both;
}

.hero__actions {
  margin-top: 2.5rem;
  animation: headlineRise 0.9s ease-out 0.8s both;
}

.hero__cta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero__cta:hover {
  color: var(--accent);
  border-color: var(--text-primary);
}

.hero__notice {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.7;
  animation: brandFade 1s ease-out 1s both;
}

@keyframes brandFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes headlineRise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineDraw {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 4rem;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .hero__identity-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .hero__identity dt {
    font-size: 0.6875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__brand,
  .hero__headline,
  .hero__support,
  .hero__accent,
  .hero__identity,
  .hero__decency,
  .hero__actions,
  .hero__notice {
    animation: none;
  }

  .hero__accent {
    width: 4rem;
    opacity: 1;
  }
}
