@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap";

/* virtual:styles.css */
:root {
  --bg: #050608;
  --bg-soft: rgba(8, 10, 14, 0.72);
  --panel: rgba(10, 12, 18, 0.62);
  --panel-strong: rgba(8, 10, 14, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5efe7;
  --text-soft: rgba(245, 239, 231, 0.72);
  --muted: rgba(245, 239, 231, 0.46);
  --accent: #ff5a1f;
  --accent-bright: #ff8848;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body,
#root {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top,
      rgba(255, 98, 40, 0.1),
      transparent 28%),
    linear-gradient(
      180deg,
      #07080c 0%,
      #040507 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}
body {
  overscroll-behavior: none;
}
button,
a {
  font: inherit;
}
.app-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
}
.scene-layer,
.scene-layer canvas,
.vignette-layer,
.mesh-gradient,
.track-glow {
  position: fixed;
  inset: 0;
}
.scene-layer {
  z-index: 1;
}
.mesh-gradient {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(255, 118, 67, 0.14),
      transparent 22%),
    radial-gradient(
      circle at 75% 68%,
      rgba(255, 255, 255, 0.07),
      transparent 18%),
    linear-gradient(
      180deg,
      rgba(2, 3, 6, 0) 0%,
      rgba(2, 3, 6, 0.46) 100%);
}
.vignette-layer {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.94) 0%,
      rgba(4, 5, 8, 0.34) 22%,
      rgba(4, 5, 8, 0.1) 50%,
      rgba(4, 5, 8, 0.34) 78%,
      rgba(4, 5, 8, 0.94) 100%),
    linear-gradient(
      180deg,
      rgba(4, 5, 8, 0.94) 0%,
      rgba(4, 5, 8, 0.06) 24%,
      rgba(4, 5, 8, 0.08) 76%,
      rgba(4, 5, 8, 0.9) 100%);
}
.track-glow {
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 2px,
      rgba(255, 98, 45, 0.04) 2px,
      rgba(255, 98, 45, 0.04) 4px);
}
.track-glow.is-live {
  opacity: 1;
}
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 110, 56, 0.12),
      transparent 18%),
    linear-gradient(
      180deg,
      #06070b 0%,
      #040507 100%);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-content {
  position: relative;
  width: min(460px, calc(100vw - 48px));
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(14, 16, 22, 0.96),
      rgba(8, 10, 14, 0.98)),
    rgba(10, 12, 18, 0.98);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.loading-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 28%,
      transparent 56%),
    radial-gradient(
      circle at top right,
      rgba(255, 90, 31, 0.12),
      transparent 28%);
  pointer-events: none;
}
.loading-visual {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 24px;
}
.loading-ring,
.loading-ring-secondary,
.loading-core,
.loading-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.loading-ring {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 28px rgba(255, 90, 31, 0.08);
}
.loading-ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 90, 31, 0.8);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  animation: loading-spin 2.8s linear infinite;
}
.loading-ring-secondary {
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.loading-ring-secondary::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border-right: 1px solid rgba(255, 136, 72, 0.8);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  animation: loading-spin-reverse 2.2s linear infinite;
}
.loading-core {
  inset: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle,
      rgba(255, 90, 31, 0.16),
      rgba(10, 12, 18, 0.9));
  box-shadow: inset 0 0 16px rgba(255, 90, 31, 0.14);
}
.loading-core span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text);
}
.loading-orbit::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.6);
}
.loading-orbit {
  animation: loading-spin 3.2s linear infinite;
}
.loading-speedbars {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateX(-50%);
}
.loading-speedbars span {
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 90, 31, 0.9),
      transparent);
  animation: loading-bar-scan 1.8s ease-in-out infinite;
}
.loading-speedbars span:nth-child(2) {
  animation-delay: 0.15s;
}
.loading-speedbars span:nth-child(3) {
  animation-delay: 0.3s;
}
.eyebrow,
.telemetry-label,
.stat-label,
.feature-number,
.rail-index,
.rail-label,
.hero-chip,
.hero-spec-pill,
.header-model,
.scroll-prompt {
  text-transform: uppercase;
  letter-spacing: 0.28em;
}
.loading-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
}
.loading-title-minimal {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-header {
  position: fixed;
  inset: 22px 24px auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.brand-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.header-model {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.header-button {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 14, 0.72);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.header-button:hover {
  background: rgba(255, 90, 31, 0.16);
  border-color: rgba(255, 90, 31, 0.45);
  transform: translateY(-1px);
}
.scroll-rail {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}
.rail-stop {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.rail-index {
  font-size: 0.64rem;
  font-weight: 800;
}
.rail-label {
  font-size: 0.64rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}
.rail-stop::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.rail-stop:hover .rail-label,
.rail-stop.active .rail-label {
  opacity: 1;
  transform: translateX(0);
}
.rail-stop.active {
  color: var(--accent-bright);
}
.rail-stop.active::after {
  transform: scale(1.18);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.42);
}
.scroll-frame {
  position: relative;
  z-index: 8;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.scroll-frame::-webkit-scrollbar {
  display: none;
}
.story-panel {
  min-height: 100vh;
  width: 100%;
  display: grid;
  align-items: center;
  padding: 112px 64px 56px;
  scroll-snap-align: start;
}
.panel-shell {
  position: relative;
  width: min(430px, calc(100vw - 104px));
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(22, 24, 31, 0.54),
      rgba(8, 10, 14, 0.28)),
    rgba(10, 12, 18, 0.22);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 80px rgba(0, 0, 0, 0.38);
  opacity: 0.56;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
  overflow: hidden;
}
.panel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      transparent 28%,
      transparent 72%,
      rgba(255, 90, 31, 0.06));
  pointer-events: none;
}
.panel-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.panel-shell.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(255, 90, 31, 0.32);
  background:
    linear-gradient(
      180deg,
      rgba(24, 27, 35, 0.62),
      rgba(8, 10, 14, 0.34)),
    rgba(10, 12, 18, 0.26);
}
.panel-shell-left {
  justify-self: start;
  margin-left: clamp(0px, 7vw, 100px);
}
.panel-shell-right {
  justify-self: end;
  margin-right: clamp(0px, 10vw, 160px);
}
.panel-shell-center {
  justify-self: center;
  text-align: center;
}
.hero-topline,
.hero-bottomline,
.stat-grid,
.feature-stack,
.telemetry-grid,
.detail-grid,
.cta-row {
  display: flex;
}
.hero-topline {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.hero-chip {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}
.hero-content-block {
  margin-bottom: 24px;
}
.eyebrow {
  color: var(--accent-bright);
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.display-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  max-width: 10ch;
}
.display-title span {
  display: block;
}
.display-title-small {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.panel-body {
  position: relative;
  z-index: 1;
  max-width: 38ch;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}
.panel-body-wide {
  max-width: 42ch;
}
.hero-bottomline {
  flex-wrap: wrap;
  gap: 10px;
}
.hero-spec-pill {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}
.stat-grid,
.telemetry-grid,
.detail-grid {
  gap: 14px;
  margin-top: 24px;
}
.stat-grid,
.telemetry-grid,
.detail-grid {
  flex-wrap: wrap;
}
.stat-card,
.telemetry-card,
.detail-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.stat-card {
  min-width: 118px;
  padding: 16px 14px;
}
.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
}
.feature-stack {
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}
.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-number {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}
.feature-row p {
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.93rem;
}
.telemetry-card {
  min-width: 122px;
  padding: 15px 13px;
}
.telemetry-label {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
}
.telemetry-value {
  margin-top: 8px;
  display: inline-block;
  color: var(--accent-bright);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.detail-card {
  flex: 1 1 150px;
  padding: 16px;
}
.detail-card h3 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}
.detail-card p {
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.9rem;
}
.panel-shell-ribbon {
  width: min(920px, calc(100vw - 120px));
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: end;
  justify-self: center;
}
.cta-copy,
.cta-aside {
  position: relative;
  z-index: 1;
}
.cta-specline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.cta-specline span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cta-row {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 0;
}
.cta-primary,
.cta-secondary {
  min-width: 188px;
  padding: 15px 24px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.cta-primary {
  border: 1px solid transparent;
  background:
    linear-gradient(
      90deg,
      var(--accent),
      var(--accent-bright));
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 90, 31, 0.22);
}
.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.cta-link {
  position: relative;
  padding: 0 0 2px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}
.cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 90, 31, 0.75),
      rgba(255, 90, 31, 0.05));
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-1px);
}
.cta-primary:hover {
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.28);
}
.cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}
.cta-link:hover {
  color: var(--text);
  transform: translateX(2px);
}
.cta-link:hover::after {
  transform: scaleX(1.05);
}
.scroll-prompt {
  position: fixed;
  left: 24px;
  bottom: 22px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
}
.scroll-prompt-line {
  width: 48px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12),
      var(--accent));
}
.panel-hero {
  align-items: center;
}
.panel-performance {
  align-items: start;
  justify-items: end;
}
.panel-aero {
  align-items: center;
}
.panel-track {
  align-items: end;
  justify-items: end;
}
.panel-detail {
  align-items: end;
}
.panel-cta {
  align-items: end;
  justify-items: center;
}
@keyframes loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading-spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes loading-bar-scan {
  0%, 100% {
    opacity: 0.25;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media (max-width: 1100px) {
  .story-panel {
    padding-inline: 28px;
  }
  .panel-shell-left,
  .panel-shell-right {
    margin-inline: 0;
  }
}
@media (max-width: 820px) {
  .floating-header {
    inset: 18px 18px auto;
  }
  .header-model,
  .rail-label,
  .scroll-prompt {
    display: none;
  }
  .scroll-rail {
    right: 16px;
  }
  .story-panel {
    padding: 100px 18px 42px;
    align-items: end;
  }
  .panel-shell,
  .panel-shell-left,
  .panel-shell-right,
  .panel-shell-center {
    width: 100%;
    justify-self: stretch;
    text-align: left;
  }
  .panel-shell-ribbon {
    grid-template-columns: 1fr;
  }
  .display-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
  .cta-row,
  .hero-topline,
  .stat-grid,
  .telemetry-grid,
  .detail-grid {
    flex-direction: column;
  }
  .cta-actions {
    align-items: stretch;
  }
  .cta-specline {
    flex-direction: column;
  }
  .cta-row {
    align-items: stretch;
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
  }
  .cta-link {
    align-self: flex-start;
  }
}
