:root {
  --blue: #0900e9;
  --green: #22ff00;
  --black: #050505;
  --white: #ffffff;
  --soft-white: rgba(255,255,255,.78);
  --glass: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(34,255,0,.18), transparent 24rem),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.12), transparent 18rem),
    linear-gradient(135deg, var(--blue) 0%, #060085 58%, #020021 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  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: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
  pointer-events: none;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--stroke);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(0,0,0,.36), rgba(255,255,255,.06));
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -22%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.brand-card {
  position: absolute;
  top: 28px;
  left: 32px;
  width: 178px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.brand-logo {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(34,255,0,.42);
  border-radius: 999px;
  color: var(--green);
  background: rgba(34,255,0,.08);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: .86;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

h1 span {
  color: var(--green);
  text-shadow: 0 0 24px rgba(34,255,0,.42);
}

.subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--soft-white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-top: 34px;
}

.time-box {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px 10px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.time-box strong {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.time-box small {
  color: var(--soft-white);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-btn {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(34,255,0,.24);
}

.secondary-btn {
  color: var(--white);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.08);
}

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

.promo-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,255,0,.55), 0 16px 38px rgba(34,255,0,.26);
  font: inherit;
  font-weight: 1000;
  text-decoration: none;
  cursor: pointer;
  animation: promoBounce 1.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}

.promo-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(34,255,0,.62);
  border-radius: inherit;
  animation: promoPulse 1.8s ease-out infinite;
}

.promo-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 42px rgba(34,255,0,.34);
}

.promo-hint {
  max-width: 590px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.55;
}

@keyframes promoBounce {
  0%, 100% { transform: translateY(0); }
  12% { transform: translateY(-5px); }
  24% { transform: translateY(0); }
  36% { transform: translateY(-3px); }
  48% { transform: translateY(0); }
}

@keyframes promoPulse {
  0% { opacity: .8; transform: scale(.96); }
  80%, 100% { opacity: 0; transform: scale(1.12); }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}

.modal-backdrop.is-open { display: grid; }

.promo-modal {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(34,255,0,.18), transparent 20rem),
    linear-gradient(135deg, #0900e9, #070056 68%, #010018);
  box-shadow: 0 36px 120px rgba(0,0,0,.56);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0,0,0,.32);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-copy {
  align-self: center;
  padding: 34px 12px 34px 10px;
}

.modal-eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(34,255,0,.42);
  border-radius: 999px;
  color: var(--green);
  background: rgba(34,255,0,.08);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.modal-copy p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.65;
}

.modal-copy small {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.64);
  line-height: 1.55;
}

.form-frame {
  height: min(76vh, 780px);
  border-radius: 22px;
  background: var(--white);
  overflow: hidden;
}

.form-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

body.modal-open { overflow: hidden; }

.social-feed {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(34,255,0,.18), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.1), transparent 55%),
    rgba(0,0,0,.22);
  border: 1px solid var(--stroke);
  overflow: hidden;
}

.social-feed::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), var(--white), transparent);
  opacity: .64;
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.feed-header span {
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feed-header strong {
  font-size: .95rem;
}

.feed-frame {
  width: 100%;
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  overflow: hidden;
}

.feed-frame iframe {
  display: block;
  width: min(100%, 500px);
  max-width: 100%;
}

.speed-line {
  position: absolute;
  left: -80px;
  width: 340px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  opacity: .75;
}

.speed-line-top { top: 32%; }
.speed-line-bottom { bottom: 24%; left: -34px; background: linear-gradient(90deg, transparent, var(--green), transparent); }

.social-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-mini a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  background: rgba(255,255,255,.075);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .01em;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-mini a:hover {
  transform: translateY(-2px);
  background: rgba(34,255,0,.16);
  border-color: rgba(34,255,0,.48);
}

.social-mini svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.info-strip > div {
  padding: 20px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(0,0,0,.24);
}

.info-strip small {
  display: block;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.site-credit {
  margin-top: 14px;
  padding: 18px 12px 4px;
  color: rgba(255,255,255,.56);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
}

.site-credit a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 900;
}

.site-credit a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .brand-card {
    position: relative;
    top: auto;
    left: auto;
    width: 154px;
  }

  .hero-content { padding-top: 0; }
  .social-feed { min-height: 560px; }
  .feed-frame { min-height: 560px; }
  .feed-frame iframe { height: 560px; }
  .info-strip { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .page-shell { width: min(100% - 22px, 1160px); padding: 12px 0; }
  .hero { border-radius: 24px; padding: 18px; min-height: auto; }
  h1 { font-size: clamp(2.7rem, 17vw, 4.2rem); }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .time-box { min-height: 96px; }
  .social-feed { min-height: 500px; padding: 12px; }
  .feed-frame { min-height: 500px; }
  .feed-frame iframe { height: 500px; }
  .cta-row a { width: 100%; }
  .social-mini { justify-content: center; }
  .social-mini a { flex: 1 1 calc(50% - 10px); justify-content: center; }
}



@media (max-width: 900px) {
  .promo-modal {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-copy {
    padding: 28px 8px 0;
  }

  .form-frame {
    height: 68vh;
    min-height: 520px;
  }
}

@media (max-width: 580px) {
  .promo-btn { width: 100%; }
  .promo-hint { text-align: center; }
  .modal-backdrop { padding: 10px; }
  .promo-modal { padding: 14px; border-radius: 22px; }
  .modal-close { top: 10px; right: 10px; }
  .form-frame { min-height: 560px; height: 70vh; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-btn,
  .promo-btn::after {
    animation: none;
  }
}
