:root {
  --void: #0b0c0f;
  --ink: #f2efe6;
  --dim: #9a9588;
  --line: rgba(242, 239, 230, 0.14);
  --heat: #ff4d1a;
  --heat-deep: #c2340d;
  --steel: #1c2230;
  --flash: #f6e27a;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: var(--void);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 70% 10%, rgba(255, 77, 26, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(28, 34, 48, 0.95), transparent 50%),
    linear-gradient(180deg, #0b0c0f 0%, #12151c 50%, #0b0c0f 100%);
}
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 239, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 230, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(72px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulseHeat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 26, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(255, 77, 26, 0); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.brand {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  animation: rise 0.7s 0.1s both;
}
.brand em {
  font-style: normal;
  color: var(--heat);
}

.headline {
  margin-top: 1.2rem;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 600;
  max-width: 22ch;
  line-height: 1.2;
  animation: rise 0.7s 0.22s both;
}

.sub {
  margin-top: 0.85rem;
  color: var(--dim);
  font-size: 1.05rem;
  max-width: 38ch;
  line-height: 1.45;
  animation: rise 0.7s 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 1.55rem;
  background: var(--heat);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  animation: pulseHeat 2.4s ease-in-out infinite;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover {
  background: var(--heat-deep);
  transform: translateY(-2px);
  animation: none;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  animation: none;
}
.btn.ghost:hover {
  border-color: var(--heat);
  background: rgba(255, 77, 26, 0.08);
}
.btn small {
  opacity: 0.85;
  font-weight: 600;
  font-size: 0.85rem;
}

.meta {
  color: var(--dim);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  animation: rise 0.7s 0.42s both;
}

section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 0.9rem;
}
h2 span { color: var(--heat); }

.lead {
  color: var(--dim);
  font-size: 1.12rem;
  max-width: 42ch;
  margin-bottom: 2rem;
  line-height: 1.45;
}

footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  color: var(--dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
