@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Manrope:wght@400;600;700;800&family=Share+Tech+Mono&display=swap');

:root {
  --void: #020104;
  --panel: rgba(9, 6, 18, 0.82);
  --panel-strong: rgba(14, 9, 27, 0.94);
  --ink: #ffffff;
  --muted: #b9acd2;
  --dim: #746982;
  --purple: #8b3dff;
  --violet: #5f24ff;
  --magenta: #f016ff;
  --cyan: #4af5ff;
  --lime: #bbff4d;
  --line: rgba(166, 117, 255, 0.28);
  --hard-line: rgba(255, 255, 255, 0.72);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(112deg, rgba(121, 48, 255, 0.14), transparent 34%),
    linear-gradient(248deg, rgba(240, 22, 255, 0.14), transparent 36%), #020104;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

button,
textarea {
  font: inherit;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before,
.bg-glow::after {
  content: '';
  position: absolute;
  width: 120vw;
  height: 34vh;
  left: -10vw;
  transform: rotate(-24deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(139, 61, 255, 0.02),
      rgba(139, 61, 255, 0.42),
      rgba(74, 245, 255, 0.2),
      transparent
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(255, 255, 255, 0.16) 44px 45px,
      transparent 47px 92px
    );
  filter: blur(10px);
  animation: beamRun 9s linear infinite;
}

.bg-glow::before {
  top: 18vh;
}

.bg-glow::after {
  top: 64vh;
  opacity: 0.55;
  animation-duration: 12s;
  animation-direction: reverse;
}

.speed-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.speed-field span {
  position: absolute;
  width: 46vw;
  height: 2px;
  right: -20vw;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(174, 88, 255, 0.85),
    rgba(74, 245, 255, 0.55),
    transparent
  );
  box-shadow: 0 0 18px rgba(139, 61, 255, 0.9);
  transform: rotate(-24deg);
  animation: streak 4.8s linear infinite;
}

.speed-field span:nth-child(1) {
  top: 16%;
}

.speed-field span:nth-child(2) {
  top: 29%;
  animation-delay: -1.2s;
  animation-duration: 6.2s;
}

.speed-field span:nth-child(3) {
  top: 45%;
  animation-delay: -2.4s;
}

.speed-field span:nth-child(4) {
  top: 62%;
  animation-delay: -0.7s;
  animation-duration: 5.4s;
}

.speed-field span:nth-child(5) {
  top: 74%;
  animation-delay: -3.2s;
  animation-duration: 6.8s;
}

.speed-field span:nth-child(6) {
  top: 88%;
  animation-delay: -2s;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 74px;
  padding: 0 max(20px, calc((100% - 1360px) / 2));
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(2, 1, 4, 0.92), rgba(2, 1, 4, 0.28));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--purple);
  filter: drop-shadow(0 0 14px rgba(139, 61, 255, 0.75));
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path {
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  min-width: 78px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #d8cff0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(139, 61, 255, 0.22);
  color: #ffffff;
}

.homepage {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1360px);
  margin: 0 auto;
}

.container {
  position: relative;
  visibility: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.85fr);
  gap: 34px;
  min-height: calc(100vh - 74px);
  align-items: center;
  padding: 18px 0 46px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.mission-card > p:first-child,
.prompt-label,
.sessions h2 {
  color: #b46cff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 116px;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(139, 61, 255, 0.28);
}

.hero h1 span,
.mission-card h2 span {
  color: var(--purple);
  text-shadow:
    0 0 16px rgba(139, 61, 255, 0.95),
    0 0 46px rgba(240, 22, 255, 0.48);
}

.subtitle {
  max-width: 520px;
  margin-top: 22px;
  color: #f3edff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.subtitle strong {
  color: #c59bff;
}

.input-group {
  width: min(100%, 640px);
  margin-top: 34px;
}

.prompt-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
}

.prompt-shell {
  position: relative;
  padding: 1px;
  border-radius: 8px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.22),
      rgba(139, 61, 255, 0.72),
      rgba(74, 245, 255, 0.35)
    ),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 32px 110px rgba(75, 24, 190, 0.36);
}

.prompt-input {
  display: block;
  width: 100%;
  min-height: 142px;
  padding: 18px 18px 86px;
  border: 0;
  border-radius: 7px;
  outline: none;
  resize: vertical;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)), #090613;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.prompt-input:focus {
  box-shadow: inset 0 0 0 2px rgba(74, 245, 255, 0.52);
}

.prompt-input::placeholder {
  color: rgba(215, 205, 235, 0.45);
}

.prompt-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  color: #d8cff0;
  background: rgba(255, 255, 255, 0.055);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 156px;
  min-height: 44px;
  margin-left: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #b06bff, #7b2dff 52%, #5d1cff), var(--purple);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    0 0 22px rgba(139, 61, 255, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 0.16s ease,
    filter 0.16s ease,
    box-shadow 0.16s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.2);
  box-shadow:
    0 0 34px rgba(139, 61, 255, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.zap-icon {
  width: 19px;
  height: 19px;
}

.gen-counter {
  width: min(100%, 640px);
  margin-top: 10px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
}

.gen-counter.limit-reached {
  color: #ff6a7d;
}

.spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.loading .spinner {
  display: inline-block;
}

.loading .btn-label {
  display: none;
}

.launch-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--hard-line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(ellipse at 75% 18%, rgba(139, 61, 255, 0.42), transparent 38%),
    linear-gradient(155deg, rgba(2, 1, 4, 0.55), rgba(2, 1, 4, 0.95) 54%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 36px 140px rgba(68, 13, 160, 0.52);
  isolation: isolate;
}

.launch-visual::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0 48px,
      rgba(170, 82, 255, 0.28) 50px 51px,
      transparent 53px 86px
    ),
    linear-gradient(
      114deg,
      transparent 20%,
      rgba(139, 61, 255, 0.72) 49%,
      rgba(74, 245, 255, 0.22) 50%,
      transparent 68%
    );
  transform: translateX(18%);
  animation: visualRush 6s linear infinite;
}

.launch-visual::after {
  content: '04';
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(230, 218, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 34px;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(184, 119, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(139, 61, 255, 0.25);
}

.orbit-ring-one {
  width: 470px;
  height: 470px;
  right: -118px;
  top: 58px;
  animation: slowSpin 18s linear infinite;
}

.orbit-ring-two {
  width: 320px;
  height: 320px;
  right: -40px;
  top: 128px;
  border-color: rgba(74, 245, 255, 0.22);
  animation: slowSpin 24s linear infinite reverse;
}

.rocket-stage {
  position: absolute;
  right: 12%;
  bottom: 18px;
  width: min(82%, 520px);
  aspect-ratio: 1;
  transform: rotate(5deg);
}

.rocket-picto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.06) drop-shadow(0 0 34px rgba(139, 61, 255, 0.64))
    drop-shadow(0 0 80px rgba(74, 245, 255, 0.15));
  animation: rocketFloat 2.8s ease-in-out infinite;
}

.launch-plume {
  position: absolute;
  left: 8%;
  bottom: -5%;
  width: 44%;
  height: 48%;
  background:
    linear-gradient(
      180deg,
      rgba(139, 61, 255, 0),
      rgba(139, 61, 255, 0.76) 54%,
      rgba(74, 245, 255, 0.2)
    ),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.22) 15px 16px);
  filter: blur(5px);
  clip-path: polygon(43% 0, 60% 0, 100% 100%, 0 100%);
  opacity: 0.34;
  transform: rotate(-23deg);
}

.console-card {
  position: absolute;
  right: 26px;
  bottom: 88px;
  width: 260px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 3, 10, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 48px rgba(139, 61, 255, 0.25);
}

.console-top {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.console-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b3dff;
}

.console-top span:nth-child(2) {
  background: #4af5ff;
}

.console-top span:nth-child(3) {
  background: #bbff4d;
}

.console-stat {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.console-stat strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 900;
  line-height: 0.82;
}

.console-stat span,
.console-row span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.console-meter {
  height: 8px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.console-meter span {
  display: block;
  width: 91%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.console-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.console-row strong {
  font-family: var(--font-mono);
  font-size: 14px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -18px 0 22px;
  overflow: hidden;
  border: 1px solid var(--hard-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.proof-strip div {
  min-height: 96px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(139, 61, 255, 0.18), rgba(2, 1, 4, 0.9)), rgba(2, 1, 4, 0.92);
}

.proof-strip strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 14px;
  padding: 16px 0 72px;
}

.mission-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(139, 61, 255, 0.18), rgba(2, 1, 4, 0.24) 38%), rgba(5, 3, 11, 0.86);
}

.mission-card::after {
  content: '';
  position: absolute;
  inset: auto -22% -32% -22%;
  height: 52%;
  background:
    repeating-linear-gradient(112deg, transparent 0 26px, rgba(139, 61, 255, 0.38) 27px 28px),
    linear-gradient(115deg, transparent, rgba(139, 61, 255, 0.58), transparent);
  filter: blur(1px);
  transform: skewY(-8deg);
}

.mission-card h2 {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.mission-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 330px;
  list-style: none;
}

.mission-card li,
.card-copy {
  color: #f4edff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.mission-card li {
  display: flex;
  gap: 10px;
}

.mission-card li::before {
  content: '';
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 14px rgba(139, 61, 255, 0.95);
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin-top: 22px;
  color: var(--muted);
}

.card-number {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 2;
  color: rgba(230, 218, 255, 0.38);
  font-family: var(--font-mono);
  font-size: 32px;
}

.speed-card {
  background:
    radial-gradient(ellipse at 50% 62%, rgba(139, 61, 255, 0.7), transparent 43%),
    rgba(5, 3, 11, 0.9);
}

.speedometer {
  position: absolute;
  right: 26px;
  bottom: 54px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 10px solid rgba(139, 61, 255, 0.38);
  border-bottom-color: transparent;
  border-radius: 50%;
  box-shadow:
    inset 0 0 28px rgba(139, 61, 255, 0.45),
    0 0 44px rgba(139, 61, 255, 0.45);
}

.speedometer::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(74, 245, 255, 0.36);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.speedometer strong {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}

.needle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #bbff4d, #8b3dff);
  transform-origin: left center;
  transform: rotate(-28deg);
  box-shadow: 0 0 20px rgba(187, 255, 77, 0.55);
}

.sessions {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1360px);
  margin: 0 auto 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.sessions h2 {
  margin-bottom: 16px;
  color: var(--cyan);
}

.session-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
}

.session-list.single-col {
  max-width: 520px;
  grid-template-columns: 1fr;
}

.session-list.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.session-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 5, 18, 0.86);
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.session-item:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 61, 255, 0.72);
  box-shadow: 0 0 34px rgba(139, 61, 255, 0.24);
}

.session-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(130deg, rgba(139, 61, 255, 0.34), transparent 46%), #05030b;
}

.session-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 800px;
  border: 0;
  pointer-events: none;
  transform-origin: top left;
}

.session-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.28);
}

.session-placeholder svg {
  width: 48px;
  height: 48px;
}

.session-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  gap: 6px;
  justify-items: end;
}

.session-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(4, 3, 10, 0.72);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 12px;
}

.badge-time {
  box-shadow: inset 0 0 18px rgba(139, 61, 255, 0.36);
}

.badge-cost {
  box-shadow: inset 0 0 18px rgba(74, 245, 255, 0.24);
}

.session-info {
  min-height: 102px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.session-prompt {
  display: -webkit-box;
  overflow: hidden;
  color: #f4edff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.wappalyzer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  padding: 7px 12px;
  background: var(--lime);
  color: #030106;
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: center;
}

.social-links {
  position: fixed;
  left: 22px;
  bottom: 20px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(3, 2, 8, 0.58);
  backdrop-filter: blur(12px);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover {
  color: #ffffff;
  border-color: rgba(139, 61, 255, 0.74);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

body.has-sessions {
  overflow-y: auto;
}

body.has-sessions .hero {
  min-height: auto;
  padding-top: 44px;
}

@keyframes streak {
  from {
    transform: translate3d(0, 0, 0) rotate(-24deg);
    opacity: 0;
  }
  10%,
  74% {
    opacity: 1;
  }
  to {
    transform: translate3d(-135vw, 42vh, 0) rotate(-24deg);
    opacity: 0;
  }
}

@keyframes beamRun {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      1000px 0,
      520px 0;
  }
}

@keyframes visualRush {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      780px 0,
      540px 0;
  }
}

@keyframes rocketFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes flamePulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.86;
  }
  50% {
    transform: scaleY(1.16);
    opacity: 1;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: 96px;
  }

  .launch-visual {
    min-height: 520px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 300px;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .homepage,
  .sessions {
    width: min(100% - 28px, 1360px);
  }

  .site-nav {
    height: auto;
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 76px;
  }

  .subtitle {
    font-size: 18px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-list,
  .session-list.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-nav,
  .homepage,
  .sessions {
    width: min(100% - 22px, 1360px);
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 55px;
    line-height: 0.9;
  }

  .subtitle {
    font-size: 16px;
  }

  .prompt-input {
    min-height: 178px;
    padding-bottom: 126px;
  }

  .prompt-actions {
    flex-wrap: wrap;
  }

  .prompt-chip {
    flex: 1 1 auto;
  }

  .submit-btn {
    width: 100%;
    margin-left: 0;
  }

  .launch-visual {
    min-height: 470px;
  }

  .rocket-stage {
    right: 8%;
    bottom: 32px;
    transform: rotate(18deg) scale(0.78);
    transform-origin: bottom right;
  }

  .console-card {
    right: 12px;
    bottom: 54px;
    width: 210px;
  }

  .console-stat strong {
    font-size: 58px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 320px;
    padding: 22px;
  }

  .mission-card h2 {
    font-size: 42px;
  }

  .speedometer {
    right: 18px;
    width: 150px;
    height: 150px;
  }

  .session-list,
  .session-list.two-col {
    grid-template-columns: 1fr;
  }

  .social-links {
    position: static;
    justify-content: center;
    padding: 0 0 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
