:root {
  --black: #050505;
  --panel: #0b0b0d;
  --panel-2: #111115;
  --white: #f8f8f8;
  --muted: #9c9ca5;
  --red: #ec003d;
  --red-dark: #7f001f;
  --blue: #16bdf2;
  --line: rgba(255,255,255,.09);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 10%, rgba(236,0,61,.08), transparent 35%),
    linear-gradient(180deg, #030303 0%, #080809 55%, #030303 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.red-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  opacity: .18;
}

.red-glow-one {
  width: 260px;
  height: 260px;
  background: var(--red);
  top: 80px;
  left: -120px;
}

.red-glow-two {
  width: 320px;
  height: 320px;
  background: var(--red-dark);
  right: -160px;
  top: 420px;
}

.site-header {
  width: min(calc(100% - 36px), var(--max));
  height: 76px;
  margin: 14px auto 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 50;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6,6,7,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: .4px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), #a7002b);
  border-radius: 8px;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(236,0,61,.24);
}

.brand-text { font-size: 21px; }
.brand-text b { color: var(--blue); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #cacad0;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover { color: white; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  min-height: calc(100vh - 90px);
  width: min(calc(100% - 36px), 1040px);
  margin: 0 auto;
  padding: 92px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(236,0,61,.32);
  border-radius: 999px;
  color: #e7e7ea;
  background: rgba(236,0,61,.07);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(236,0,61,.12);
  animation: pulse 1.8s infinite;
}

.logo-shell {
  width: min(100%, 760px);
  margin: 32px auto 34px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(236,0,61,.55), rgba(22,189,242,.18), rgba(255,255,255,.08));
  box-shadow: 0 28px 90px rgba(0,0,0,.5), 0 0 70px rgba(236,0,61,.08);
}

.main-logo {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 8vw, 96px);
  line-height: .92;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-style: italic;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.75);
}

.hero-copy {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.primary-button,
.secondary-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--red), #b70030);
  box-shadow: 0 14px 40px rgba(236,0,61,.22);
}

.primary-button:hover,
.secondary-button:hover { transform: translateY(-2px); }

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.scroll-cue {
  margin-top: auto;
  padding-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #777780;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--red), transparent);
}

.preview-section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 40px;
}

.section-heading h2,
.about-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  text-transform: uppercase;
  font-style: italic;
}

.section-heading > p:last-child,
.about-panel > p {
  color: var(--muted);
  line-height: 1.75;
}

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

.feature-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent),
    var(--panel);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -65px;
  bottom: -65px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(60px);
  opacity: .12;
}

.featured-card {
  transform: translateY(-18px);
  border-color: rgba(236,0,61,.28);
}

.card-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(255,255,255,.08);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 64px;
  font-weight: 900;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 12px;
  background: rgba(236,0,61,.11);
  color: var(--red);
  font-size: 23px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 32px;
  text-transform: uppercase;
  font-style: italic;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.coming-label {
  position: absolute;
  bottom: 26px;
  left: 28px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.about-section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 10px 0 110px;
}

.about-panel {
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(236,0,61,.09), transparent 40%),
    var(--panel-2);
}

footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: #777780;
  text-align: center;
  font-size: 12px;
}

.footer-brand {
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
}

.footer-brand span { color: var(--blue); }
.copyright { margin-top: 20px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(236,0,61,.10); }
  50% { box-shadow: 0 0 0 9px rgba(236,0,61,.02); }
}

@media (max-width: 800px) {
  .site-header { height: 66px; padding: 0 16px; }
  .brand-text { font-size: 17px; }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7,7,8,.97);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 8px; }

  .hero { padding-top: 62px; }
  .logo-shell { margin-top: 26px; }
  h1 { letter-spacing: -1px; }

  .feature-grid { grid-template-columns: 1fr; }
  .featured-card { transform: none; }

  .about-panel {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .preview-section,
  .about-section,
  footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand-text { display: none; }
  .hero { min-height: auto; padding-bottom: 85px; }

  .logo-shell {
    padding: 5px;
    border-radius: 12px;
  }

  .main-logo { border-radius: 8px; }
  .hero-copy { font-size: 15px; }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button { width: 100%; }

  .scroll-cue { display: none; }
  .preview-section { padding: 82px 0; }
  .feature-card { min-height: 300px; }
}
