:root {
  --thunder-orange: #f96302;
  --thunder-orange-deep: #d44d00;
  --thunder-black: #050505;
  --thunder-black-soft: #111111;
  --thunder-white: #f4f4f4;
  --thunder-gray: #9f9f9f;
  --panel-border: rgba(255, 255, 255, 0.16);
  --panel-fill: rgba(10, 10, 10, 0.7);
  --shadow-strong: 0 25px 80px rgba(0, 0, 0, 0.55);
}

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

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--thunder-white);
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(249, 99, 2, 0.25), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(249, 99, 2, 0.18), transparent 24%),
    radial-gradient(circle at bottom center, rgba(249, 99, 2, 0.08), transparent 30%),
    linear-gradient(180deg, #090909 0%, #030303 58%, #000000 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
  pointer-events: none;
}

.storm,
.grid-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.storm {
  width: 28rem;
  height: 28rem;
  filter: blur(6px);
  opacity: 0.9;
}

.storm::before,
.storm::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 24%, rgba(249, 99, 2, 0.95) 25%, transparent 27%),
    linear-gradient(135deg, transparent 52%, rgba(249, 99, 2, 0.6) 53%, transparent 56%),
    linear-gradient(106deg, transparent 69%, rgba(255, 255, 255, 0.88) 70%, transparent 72%);
  clip-path: polygon(46% 0%, 59% 0%, 48% 35%, 66% 35%, 34% 100%, 43% 58%, 27% 58%);
  animation: flicker 5.2s ease-in-out infinite;
}

.storm::after {
  transform: scale(0.7) rotate(-12deg) translate(18%, 12%);
  opacity: 0.55;
  animation-delay: 0.8s;
}

.storm-left {
  top: 0;
  left: -7rem;
}

.storm-right {
  top: 6rem;
  right: -7rem;
  transform: scaleX(-1);
}

.grid-glow {
  inset: auto 0 0;
  height: 16rem;
  background:
    radial-gradient(circle at center, rgba(249, 99, 2, 0.26), transparent 48%),
    linear-gradient(180deg, transparent, rgba(249, 99, 2, 0.08));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  gap: 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: clamp(34rem, 76vh, 46rem);
  padding: 0.5rem 0 0;
}

.hero-copy,
.logo-card,
.message-band,
.closing-banner {
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(249, 99, 2, 0.45);
  border-radius: 999px;
  color: var(--thunder-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(249, 99, 2, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.eyebrow::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--thunder-orange);
  box-shadow: 0 0 18px rgba(249, 99, 2, 0.85);
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--thunder-white);
  text-shadow:
    0 0 20px rgba(249, 99, 2, 0.22),
    0 0 42px rgba(249, 99, 2, 0.18);
}

h1 span:last-child {
  color: var(--thunder-orange);
}

.lede {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: rgba(244, 244, 244, 0.88);
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  line-height: 1.5;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.status-card {
  display: grid;
  place-items: center;
  min-height: 5.25rem;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid var(--panel-border);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.7);
  box-shadow: var(--shadow-strong);
}

.status-label {
  display: block;
  color: rgba(244, 244, 244, 0.9);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.bolt-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 1.5rem;
}

.bolt-divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 99, 2, 0.9), transparent);
}

.bolt-divider i {
  display: block;
  width: 1.8rem;
  height: 2.7rem;
  background: linear-gradient(180deg, #fff, var(--thunder-orange) 55%, #ff8c42);
  clip-path: polygon(47% 0%, 93% 0%, 59% 43%, 80% 43%, 28% 100%, 43% 58%, 13% 58%);
  filter: drop-shadow(0 0 14px rgba(249, 99, 2, 0.7));
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-pills span {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--thunder-white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-card {
  position: relative;
  width: min(100%, 32rem);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top, rgba(249, 99, 2, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(6, 6, 6, 0.76);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -18%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 99, 2, 0.25), transparent 70%);
}

.logo-card::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: 1.5rem;
  width: 7rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--thunder-orange));
  transform: rotate(-18deg);
  box-shadow: 0 0 20px rgba(249, 99, 2, 0.55);
}

.logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 24rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(249, 99, 2, 0.06), rgba(255, 255, 255, 0)),
    rgba(0, 0, 0, 0.78);
  overflow: hidden;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
}

.logo-frame img {
  position: relative;
  width: min(100%, 32rem);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55));
}

.tagline-block {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.05rem;
  padding: 0.9rem 0.95rem 0.25rem;
}

.tagline-kicker {
  margin: 0;
  color: var(--thunder-orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tagline-main {
  margin: 0;
  color: var(--thunder-white);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}

.message-band {
  position: relative;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(249, 99, 2, 0.24);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top center, rgba(249, 99, 2, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.78);
  text-align: center;
  overflow: hidden;
}

.message-band::before {
  content: "";
  position: absolute;
  inset: auto auto -2rem -2rem;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(249, 99, 2, 0.15), transparent 72%);
}

.message-kicker {
  margin: 0 0 0.45rem;
  color: var(--thunder-orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.message-band h2 {
  margin: 0 0 0.55rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.message-copy {
  max-width: 52rem;
  margin: 0 auto;
  color: rgba(244, 244, 244, 0.88);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-banner {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(249, 99, 2, 0.28);
  border-radius: 1.4rem;
  background:
    linear-gradient(90deg, rgba(249, 99, 2, 0.12), rgba(255, 255, 255, 0.03), rgba(249, 99, 2, 0.12)),
    rgba(7, 7, 7, 0.78);
  text-align: center;
}

.closing-banner p {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--thunder-white);
}

@keyframes flicker {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }

  8% {
    opacity: 0.95;
  }

  16% {
    opacity: 0.35;
  }

  24% {
    opacity: 0.78;
    transform: translateY(-0.25rem) scale(1.02);
  }

  32% {
    opacity: 0.42;
  }

  48% {
    opacity: 0.88;
  }

  60% {
    opacity: 0.3;
  }

  74% {
    opacity: 0.84;
    transform: translateY(0.2rem) scale(0.99);
  }
}

@media (max-width: 960px) {
  .page-shell {
    width: min(100% - 1.25rem, 1100px);
    padding-top: 1rem;
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.5rem;
    padding-top: 0.5rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .status-row {
    grid-template-columns: 1fr;
  }

  .logo-frame {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  .storm {
    width: 18rem;
    height: 18rem;
    opacity: 0.55;
  }

  .page-shell {
    width: calc(100% - 1rem);
    padding-bottom: 1rem;
    gap: 0.9rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .lede {
    font-size: 1.04rem;
  }

  .status-card,
  .logo-card,
  .message-band,
  .closing-banner {
    border-radius: 1.15rem;
  }

  .logo-card {
    padding: 0.8rem;
  }

  .logo-frame {
    min-height: 14rem;
    padding: 0.8rem;
  }

  .feature-pills span {
    width: calc(50% - 0.375rem);
    text-align: center;
  }

  .closing-banner p {
    line-height: 0.95;
  }
}
