:root {
  --bg-top: #0b3a67;
  --bg-bottom: #171a2d;
  --panel: rgba(10, 20, 42, 0.9);
  --panel-strong: rgba(12, 27, 54, 0.96);
  --line: rgba(39, 171, 255, 0.4);
  --line-soft: rgba(39, 171, 255, 0.18);
  --accent: #ffb84e;
  --accent-strong: #ff8d36;
  --cyan: #63d7ff;
  --text: #f6f7fb;
  --muted: #b9c7db;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 164, 255, 0.2), transparent 26%),
    radial-gradient(circle at 82% 88%, rgba(255, 136, 54, 0.16), transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, #0c2748 28%, var(--bg-bottom) 100%);
  background-size: 100% 100%, 100% 100%, 100% 140%;
  animation: backgroundShift 14s ease-in-out infinite;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
  animation: pulseGlow 6s ease-in-out infinite;
}

.page-glow-left {
  top: -9rem;
  left: -9rem;
  background: rgba(15, 177, 255, 0.32);
}

.page-glow-right {
  right: -8rem;
  bottom: 4rem;
  background: rgba(255, 141, 54, 0.24);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.section {
  padding: 18px 0;
}

.hero {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
  animation: heroFloat 5.5s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 166, 77, 0.55);
  background: rgba(7, 16, 31, 0.82);
  color: #fff3d3;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(27, 167, 255, 0.18),
    0 0 22px rgba(255, 141, 54, 0.2);
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.06;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: none;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  margin-top: 10px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 span {
  background: linear-gradient(90deg, var(--accent) 0%, #ffd66f 22%, var(--cyan) 72%, #b8eeff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShimmer 4s linear infinite;
}

.hero-text,
.step-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 44rem;
  margin: 14px 0 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
}

.steps-vertical {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.steps-vertical::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, rgba(99, 215, 255, 0.55), rgba(255, 141, 54, 0.22));
}

.step-card,
.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 20px 22px 20px 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.step-card::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: auto auto -36px -18px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 141, 54, 0.24), transparent 68%);
  pointer-events: none;
}

.step-card::before,
.media-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 34%;
  height: 300%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 30%,
    rgba(112, 219, 255, 0.22) 50%,
    rgba(255, 190, 118, 0.14) 60%,
    transparent 100%
  );
  transform: rotate(18deg);
  animation: cardSweep 5.8s linear infinite;
  pointer-events: none;
}

.featured {
  background:
    linear-gradient(180deg, rgba(19, 173, 255, 0.08), rgba(255, 141, 54, 0.05)),
    var(--panel-strong);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(255, 141, 54, 0.12);
}

.step-card:hover,
.media-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(99, 215, 255, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(18, 167, 255, 0.18);
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.step-orb {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow:
    0 0 18px rgba(255, 141, 54, 0.5),
    0 0 28px rgba(99, 215, 255, 0.28);
  animation: stepPulse 2.8s ease-in-out infinite;
}

.step-number {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-tag {
  color: rgba(255, 245, 220, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
}

.step-card p {
  margin: 10px 0 0;
  font-size: 0.87rem;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 174, 84, 0.35);
  color: #fff1cf;
  background: linear-gradient(135deg, rgba(255, 141, 54, 0.2), rgba(20, 151, 255, 0.14));
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-link:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 141, 54, 0.18);
}

.media-card {
  margin-top: 12px;
  padding-left: 24px;
}

.media-card h2,
.media-card .eyebrow {
  position: relative;
  z-index: 1;
}

.video-frame {
  overflow: hidden;
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(39, 171, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(255, 141, 54, 0.12),
    0 0 30px rgba(39, 171, 255, 0.12);
  animation: frameGlow 3.8s ease-in-out infinite;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.final-cta {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.bio-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 174, 84, 0.42);
  color: #fff6df;
  background: linear-gradient(135deg, rgba(255, 141, 54, 0.24), rgba(20, 151, 255, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(255, 141, 54, 0.14),
    0 0 30px rgba(39, 171, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bio-link-button:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(99, 215, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 141, 54, 0.2),
    0 0 36px rgba(39, 171, 255, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.steps-vertical .step-card:nth-child(1) {
  transition-delay: 0.06s;
}

.steps-vertical .step-card:nth-child(2) {
  transition-delay: 0.14s;
}

.steps-vertical .step-card:nth-child(3) {
  transition-delay: 0.22s;
}

.steps-vertical .step-card:nth-child(4) {
  transition-delay: 0.3s;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes backgroundShift {
  0%,
  100% {
    background-position: 0 0, 0 0, 50% 0;
  }

  50% {
    background-position: 0 0, 0 0, 50% 100%;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes titleShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes cardSweep {
  0% {
    transform: translateX(-180%) rotate(18deg);
  }

  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes frameGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 141, 54, 0.12),
      0 0 22px rgba(39, 171, 255, 0.12);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 141, 54, 0.24),
      0 0 34px rgba(39, 171, 255, 0.22);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 920px);
    padding-top: 24px;
  }

  .step-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-card,
  .media-card {
    padding: 18px 18px 18px 58px;
  }

  .steps-vertical::before {
    left: 19px;
  }

  h1 {
    font-size: clamp(1.7rem, 7.8vw, 2.2rem);
    white-space: normal;
  }
}
