:root {
  --bg: #090713;
  --panel: #130f22;
  --panel-2: #1d152b;
  --red: #e02526;
  --red-dark: #9c121c;
  --gold: #f8c35b;
  --gold-2: #ffdf8a;
  --text: #fff9ee;
  --muted: #b9adc8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 18px;
}

.legal-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 36px;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 37, 38, 0.38);
  background: #050309;
}

.ticker-label {
  display: grid;
  place-items: center;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-window {
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 36px;
  align-items: center;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  margin-right: 26px;
  color: rgba(255, 249, 238, 0.78);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(248, 195, 91, 0.9);
  vertical-align: 1px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 37, 38, 0.22), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(248, 195, 91, 0.2), transparent 32%),
    linear-gradient(180deg, #0d0918, #090713 68%, #110d1b);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.hero-glow-red {
  top: 120px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(224, 37, 38, 0.36);
}

.hero-glow-gold {
  right: -70px;
  bottom: 70px;
  width: 340px;
  height: 340px;
  background: rgba(248, 195, 91, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  text-decoration: none;
}

.brand-mark img {
  display: block;
  width: min(286px, 74vw);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(224, 37, 38, 0.22));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--gold-2);
  text-shadow: 0 0 32px rgba(248, 195, 91, 0.22);
}

.hero-lede {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.primary-cta,
.submit-button {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), #ff553d);
  color: white;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(224, 37, 38, 0.3);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.primary-cta {
  display: inline-flex;
  min-width: 290px;
  min-height: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
}

.primary-cta small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.primary-cta:hover,
.submit-button:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.secondary-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.notice-strip {
  max-width: 690px;
  padding: 13px 16px;
  border: 1px solid rgba(248, 195, 91, 0.28);
  border-radius: var(--radius);
  background: rgba(248, 195, 91, 0.08);
  color: rgba(255, 249, 238, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 42%, rgba(224, 37, 38, 0.2), transparent 58%);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

.momentum-section {
  padding: 28px 0;
  background: #0d0918;
}

.momentum-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(240px, 1fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.momentum-card strong {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
}

.momentum-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.momentum-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.momentum-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-section,
.features {
  padding: 76px 0;
}

.form-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(224, 37, 38, 0.18), transparent 30%),
    linear-gradient(180deg, #110d1b, var(--bg));
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: 46px;
  align-items: center;
}

.form-copy h2,
.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(31px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.06;
}

.form-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 249, 238, 0.86);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.signup-card {
  padding: 28px;
  border: 1px solid rgba(248, 195, 91, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: var(--shadow);
}

.signup-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.signup-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.signup-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
}

.signup-card input[type="email"] {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.signup-card input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248, 195, 91, 0.14);
}

.signup-card small {
  display: block;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.submit-button {
  display: block;
  width: 100%;
  min-height: 54px;
  margin-bottom: 16px;
  padding: 13px 18px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.micro-legal {
  margin: 0 !important;
  color: rgba(185, 173, 200, 0.82) !important;
  font-size: 12px !important;
}

.form-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 97, 97, 0.45);
  border-radius: var(--radius);
  background: rgba(224, 37, 38, 0.12);
  color: #ffb7b7;
  font-size: 14px;
  font-weight: 800;
}

.form-success {
  padding: 30px;
  border: 1px solid rgba(248, 195, 91, 0.32);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(248, 195, 91, 0.12), rgba(255, 255, 255, 0.04)), var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #090713;
  font-size: 36px;
  font-weight: 900;
}

.form-success h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
}

.submitted-email {
  margin: 14px 0 18px;
  color: var(--gold-2);
  font-weight: 900;
  word-break: break-word;
}

.outline-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(248, 195, 91, 0.38);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.features {
  background: #0d0918;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.feature-card > span {
  display: inline-grid;
  min-width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(224, 37, 38, 0.18);
  color: var(--gold);
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .form-grid,
  .momentum-card {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 620px) {
  .ticker-label {
    display: none;
  }

  .legal-ticker {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .primary-cta {
    width: 100%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.form-message {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.form-message[hidden] {
  display: none;
}

.form-message[data-state="success"] {
  color: #48d597;
}

.form-message[data-state="error"] {
  color: #ff7b7b;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}