:root {
  --bg: #120202;
  --bg-top: #1a0404;
  --panel: rgba(36, 10, 10, 0.76);
  --stroke: rgba(255, 129, 114, 0.16);
  --text: #fff2ee;
  --muted: #d3a29b;
  --soft: #9c6963;
  --accent: #ff715f;
  --accent-soft: #ff9886;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --font-ui: "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 42%, rgba(145, 11, 11, 0.5), transparent 22rem),
    linear-gradient(180deg, var(--bg-top) 0%, #110202 55%, #090101 100%);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 20px;
  min-height: 100vh;
}

.page-aura {
  position: absolute;
  inset: 50% auto auto 54%;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168, 13, 13, 0.42), rgba(120, 9, 9, 0.16) 34%, transparent 72%);
  filter: blur(26px);
  opacity: 0.72;
  pointer-events: none;
}

.site-header,
.hero,
.site-footer,
.legal-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(255, 80, 80, 0.22);
}

.brand-wordmark {
  color: rgba(255, 242, 238, 0.98);
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: auto;
  padding: 16px 0 18px;
}

.eyebrow,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.card-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 111, 97, 0.72);
}

.hero h1,
.legal-title {
  margin: 0;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.92;
}

.hero-text {
  max-width: 24rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, rgba(255, 156, 141, 1), rgba(255, 113, 95, 1));
  color: #220404;
  border-color: rgba(255, 167, 154, 0.5);
  box-shadow: 0 16px 32px rgba(255, 111, 97, 0.18);
}

.button-secondary {
  background: rgba(73, 29, 28, 0.5);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.micro-copy {
  max-width: 24rem;
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.hero-preview {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.preview-stage {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  min-height: 420px;
  padding: 0;
}

.preview-stage::before {
  content: "";
  position: absolute;
  inset: 14% 18% 18%;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.12), transparent 58%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

.preview-carousel {
  isolation: isolate;
}

.hero-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transform-origin: center;
  display: block;
  filter: drop-shadow(0 20px 62px rgba(0, 0, 0, 0.42));
  opacity: 0;
  animation: hero-cycle 18s infinite ease-in-out;
}

.hero-shot-1 {
  animation-delay: 0s;
}

.hero-shot-2 {
  animation-delay: 6s;
}

.hero-shot-3 {
  animation-delay: 12s;
}

.preview-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preview-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 181, 171, 0.22);
}

.preview-dots span:nth-child(1) {
  animation: dot-cycle 18s infinite ease-in-out;
}

.preview-dots span:nth-child(2) {
  animation: dot-cycle 18s infinite ease-in-out 6s;
}

.preview-dots span:nth-child(3) {
  animation: dot-cycle 18s infinite ease-in-out 12s;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 124, 109, 0.08);
  color: var(--soft);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.legal-body {
  margin: 0;
}

.activate-page {
  display: grid;
  place-items: center;
}

.activate-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 34px 28px;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(41, 12, 11, 0.96), rgba(18, 5, 5, 0.92)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.activate-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 18px;
  box-shadow: 0 0 28px rgba(255, 76, 76, 0.18);
}

.activate-copy {
  max-width: 28rem;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.activate-card .button {
  min-width: 174px;
  margin-top: 22px;
}

.activate-help {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.legal-shell {
  width: min(760px, 100%);
  margin: 36px auto 18px;
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(41, 12, 11, 0.96), rgba(18, 5, 5, 0.92)),
    var(--panel);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.legal-intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-section {
  margin-top: 22px;
}

.legal-section h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.76;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 12px;
  }

  .hero-preview {
    justify-content: flex-start;
    justify-items: stretch;
  }

  .preview-stage {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1100px);
    padding-top: 12px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .footer-links {
    gap: 12px;
  }

  .hero {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-text,
  .legal-intro,
  .legal-section p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .button {
    width: 100%;
  }

  .preview-stage {
    min-height: 300px;
  }
}

@keyframes hero-cycle {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
  }
}

@keyframes dot-cycle {
  0%,
  28% {
    opacity: 1;
    background: rgba(255, 181, 171, 0.95);
    box-shadow: 0 0 12px rgba(255, 111, 97, 0.45);
  }

  33%,
  100% {
    opacity: 0.45;
    background: rgba(255, 181, 171, 0.22);
    box-shadow: none;
  }
}
