:root {
  color-scheme: dark;
  --bg: #05071a;
  --bg-soft: #080d2d;
  --surface: rgba(13, 18, 52, 0.72);
  --surface-strong: #0d1234;
  --surface-elevated: rgba(19, 25, 69, 0.86);
  --surface-light: rgba(255, 255, 255, 0.075);
  --text: #f7f8ff;
  --text-soft: #b8bfd8;
  --text-muted: #7f88a8;
  --border: rgba(255, 255, 255, 0.12);
  --border-bright: rgba(83, 225, 255, 0.32);
  --cyan: #35e6ff;
  --blue: #2166ff;
  --violet: #6c47ff;
  --pink: #f20cbd;
  --coral: #ff4d7d;
  --green: #50e3a4;
  --amber: #ffbd59;
  --danger: #ff4f6d;
  --brand-gradient: linear-gradient(115deg, var(--cyan), var(--blue) 34%, var(--violet) 67%, var(--pink));
  --brand-gradient-soft: linear-gradient(115deg, rgba(53, 230, 255, 0.16), rgba(108, 71, 255, 0.18), rgba(242, 12, 189, 0.14));
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-neon: 0 0 80px rgba(33, 102, 255, 0.18), 0 0 140px rgba(242, 12, 189, 0.08);
  --container: 1200px;
  --header-height: 84px;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f8ff;
  --bg-soft: #eef1ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-elevated: rgba(255, 255, 255, 0.94);
  --surface-light: rgba(7, 12, 42, 0.055);
  --text: #080d2d;
  --text-soft: #3e4766;
  --text-muted: #6e7691;
  --border: rgba(8, 13, 45, 0.12);
  --border-bright: rgba(33, 102, 255, 0.28);
  --shadow-soft: 0 24px 80px rgba(27, 37, 90, 0.12);
  --shadow-neon: 0 0 80px rgba(33, 102, 255, 0.1), 0 0 140px rgba(242, 12, 189, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

::selection {
  background: rgba(53, 230, 255, 0.28);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #080d2d;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

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

.ambient__orb {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
  animation: ambient-drift 18s var(--ease) infinite alternate;
}

.ambient__orb--cyan {
  top: -20vw;
  left: -12vw;
  background: var(--cyan);
}

.ambient__orb--violet {
  top: 28vh;
  right: -24vw;
  background: var(--violet);
  animation-delay: -6s;
}

.ambient__orb--pink {
  bottom: -18vw;
  left: 30vw;
  background: var(--pink);
  animation-delay: -12s;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(92, 115, 178, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 115, 178, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
}

.cursor-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 230, 255, 0.07), transparent 66%);
  transform: translate3d(calc(var(--pointer-x, 50vw) - 230px), calc(var(--pointer-y, 50vh) - 230px), 0);
  transition: transform 0.08s linear;
}

@keyframes ambient-drift {
  to { transform: translate3d(7vw, 8vh, 0) scale(1.15); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(53, 230, 255, 0.14));
}

.brand__word {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand__word span {
  background: var(--brand-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.brand__pulse {
  position: absolute;
  top: 6px;
  right: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(242, 12, 189, 0.45);
  animation: pulse-dot 2.4s ease-out infinite;
}

@keyframes pulse-dot {
  70% { box-shadow: 0 0 0 9px rgba(242, 12, 189, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 12, 189, 0); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-gradient);
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-light);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.icon-button:hover,
.menu-toggle:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-toggle__sun,
html[data-theme="light"] .theme-toggle__moon {
  display: none;
}

html[data-theme="light"] .theme-toggle__sun {
  display: block;
}

.menu-toggle {
  display: none;
  gap: 5px;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.button {
  display: inline-flex;
  position: relative;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.button::before {
  position: absolute;
  top: -100%;
  left: -45%;
  width: 30%;
  height: 300%;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  transform: rotate(25deg);
  transition: left 0.7s var(--ease);
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.button--primary {
  background: var(--brand-gradient);
  box-shadow: 0 16px 48px rgba(73, 70, 255, 0.25);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 20px 64px rgba(73, 70, 255, 0.38);
}

.button--ghost,
.button--glass {
  border-color: var(--border);
  background: var(--surface-light);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.button--ghost:hover,
.button--glass:hover {
  border-color: var(--border-bright);
  background: var(--surface);
}

.button--light {
  background: #fff;
  box-shadow: 0 18px 50px rgba(3, 7, 28, 0.18);
  color: #080d2d;
}

.button__play {
  width: 9px;
  height: 11px;
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hero {
  display: flex;
  min-height: 930px;
  padding-top: calc(var(--header-height) + 70px);
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 2%;
  left: 52%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(53, 230, 255, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 140px rgba(108, 71, 255, 0.05), 0 0 180px rgba(33, 102, 255, 0.07);
  content: "";
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  background: rgba(53, 230, 255, 0.06);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 13px var(--pink);
}

.hero h1 {
  max-width: 700px;
  margin-top: 24px;
  font-size: clamp(58px, 6.4vw, 94px);
  font-weight: 950;
  letter-spacing: -0.072em;
  line-height: 0.97;
}

.text-gradient {
  display: inline-block;
  padding-right: 0.08em;
  background: var(--brand-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 620px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  margin-top: 36px;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__proof {
  display: grid;
  max-width: 660px;
  margin-top: 48px;
  padding-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.hero__proof div {
  padding-right: 18px;
}

.hero__proof div + div {
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  font-size: 12px;
  font-weight: 850;
}

.hero__proof span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  min-height: 700px;
  perspective: 1200px;
}

.hero-stage__halo {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, rgba(53, 230, 255, 0.2), transparent 28%, rgba(242, 12, 189, 0.2), transparent 60%, rgba(108, 71, 255, 0.22), transparent);
  filter: blur(34px);
  transform: translate(-50%, -50%);
  animation: halo-rotate 16s linear infinite;
}

@keyframes halo-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.phone {
  position: absolute;
  z-index: 3;
  border: 7px solid #151829;
  border-radius: 52px;
  background: #02050e;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 90px rgba(33, 102, 255, 0.18);
}

.phone--hero {
  top: 3%;
  left: 50%;
  width: 356px;
  height: 712px;
  overflow: hidden;
  transform: translateX(-50%) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.35s var(--ease);
}

.phone__island {
  position: absolute;
  z-index: 20;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 26px;
  border-radius: 99px;
  background: #000;
  transform: translateX(-50%);
}

.live-demo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 44px;
  background: #040817;
  color: #fff;
}

.live-demo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-demo__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 5, 15, 0.66), transparent 27%, transparent 48%, rgba(2, 5, 15, 0.96) 93%), linear-gradient(90deg, transparent 55%, rgba(2, 5, 15, 0.28));
}

.live-demo__top {
  display: grid;
  position: absolute;
  z-index: 2;
  top: 52px;
  right: 18px;
  left: 18px;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
}

.seller-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  font-size: 10px;
  font-weight: 900;
}

.live-demo__top div:nth-child(2) strong,
.live-demo__top div:nth-child(2) span {
  display: block;
}

.live-demo__top div:nth-child(2) strong {
  font-size: 12px;
  line-height: 1.2;
}

.live-demo__top div:nth-child(2) span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.viewer-pill {
  display: flex;
  padding: 7px 10px;
  align-items: center;
  gap: 6px;
  border-radius: 99px;
  background: rgba(242, 12, 118, 0.85);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.viewer-pill span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.live-demo__comments {
  position: absolute;
  z-index: 2;
  right: 64px;
  bottom: 180px;
  left: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.live-demo__comments p {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.3;
}

.live-demo__comments strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.comment-enter {
  animation: comment-enter 7s ease-in-out infinite;
}

@keyframes comment-enter {
  0%, 15% { opacity: 0; transform: translateY(8px); }
  25%, 85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}

.live-demo__commerce {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 18px;
  left: 12px;
}

.product-pill {
  display: grid;
  padding: 10px;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(4, 8, 24, 0.78);
  backdrop-filter: blur(14px);
}

.product-pill__cube {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(53, 230, 255, 0.25), rgba(108, 71, 255, 0.22));
  color: var(--cyan);
}

.product-pill span:not(.product-pill__cube) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-pill span:last-child {
  text-align: right;
}

.product-pill small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.product-pill strong {
  overflow: hidden;
  font-size: 10px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-slider {
  display: flex;
  position: relative;
  height: 54px;
  margin-top: 8px;
  padding: 0 40px 0 63px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(53, 230, 255, 0.42);
  border-radius: 99px;
  background: rgba(7, 14, 34, 0.88);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.bid-slider:active {
  cursor: grabbing;
}

.bid-slider__track {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bid-progress, 0%);
  background: linear-gradient(90deg, rgba(53, 230, 255, 0.32), rgba(108, 71, 255, 0.26));
}

.bid-slider__handle {
  display: grid;
  position: absolute;
  z-index: 2;
  top: 4px;
  left: var(--bid-left, 4px);
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 8px 22px rgba(33, 102, 255, 0.38);
  transition: left 0.2s ease;
}

.bid-slider.is-dragging .bid-slider__handle {
  transition: none;
}

.bid-slider__handle svg {
  width: 18px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.bid-slider > strong {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  font-size: 11px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bid-slider__chevrons {
  position: absolute;
  right: 15px;
  color: var(--cyan);
  font-size: 18px;
  letter-spacing: -4px;
  animation: chevrons 1.4s ease-in-out infinite;
}

@keyframes chevrons {
  50% { opacity: 0.4; transform: translateX(3px); }
}

.demo-caption {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  text-align: center;
}

.floating-card,
.auction-ticker {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 15, 43, 0.77);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  color: #fff;
  backdrop-filter: blur(20px);
}

.floating-card {
  display: flex;
  padding: 13px 14px;
  align-items: center;
  gap: 11px;
  border-radius: 18px;
  animation: float-card 4.4s ease-in-out infinite;
}

.floating-card--top {
  top: 70px;
  right: -12px;
}

.floating-card--side {
  bottom: 116px;
  left: -30px;
  animation-delay: -2s;
}

.floating-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-gradient-soft);
  color: var(--cyan);
  font-size: 20px;
}

.floating-card span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.floating-card small,
.auction-ticker small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.floating-card strong {
  font-size: 10px;
}

.status-orb {
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
}

.mini-graph {
  display: flex;
  width: 52px;
  height: 38px;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.mini-graph i {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: var(--brand-gradient);
  animation: graph 1.8s ease-in-out infinite alternate;
}

.mini-graph i:nth-child(1) { height: 12px; }
.mini-graph i:nth-child(2) { height: 28px; animation-delay: -0.5s; }
.mini-graph i:nth-child(3) { height: 19px; animation-delay: -0.9s; }
.mini-graph i:nth-child(4) { height: 32px; animation-delay: -1.2s; }

@keyframes graph {
  to { height: 80%; }
}

@keyframes float-card {
  50% { transform: translateY(-9px); }
}

.auction-ticker {
  display: flex;
  right: -12px;
  bottom: 45px;
  padding: 12px 14px;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
}

.auction-ticker__ring {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.13);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: halo-rotate 3s linear infinite;
}

.auction-ticker > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.auction-ticker strong {
  font-size: 13px;
}

.auction-ticker__signal {
  padding: 4px 7px;
  border-radius: 99px;
  background: rgba(80, 227, 164, 0.14);
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.scroll-cue {
  display: grid;
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 28px;
  height: 46px;
  place-items: start center;
  border: 1px solid var(--border);
  border-radius: 99px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--cyan);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  70% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 0; }
}

.signal-bar {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-light);
}

.signal-bar__track {
  display: flex;
  width: max-content;
  padding: 18px 0;
  align-items: center;
  animation: marquee 34s linear infinite;
}

.signal-bar__track span {
  padding: 0 30px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.signal-bar__track i {
  color: var(--pink);
  font-style: normal;
  text-shadow: 0 0 14px rgba(242, 12, 189, 0.7);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.radar-copy h2,
.passport-copy h2,
.faq-intro h2 {
  margin-top: 15px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 930;
  letter-spacing: -0.062em;
  line-height: 1.02;
}

.section-heading p,
.radar-copy > p,
.passport-copy > p,
.faq-intro p {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading--split > p {
  padding-bottom: 7px;
}

.manifesto {
  padding-top: 154px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.experience-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-elevated), var(--surface));
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, transform 0.25s ease;
}

.experience-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(53, 230, 255, 0.12), transparent 38%);
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease;
}

.experience-card:hover {
  border-color: var(--border-bright);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card--large {
  display: grid;
  min-height: 550px;
  grid-column: 1 / -1;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.experience-card--large::after {
  position: absolute;
  right: -10%;
  bottom: -45%;
  width: 65%;
  height: 95%;
  border-radius: 50%;
  background: rgba(33, 102, 255, 0.12);
  filter: blur(70px);
  content: "";
}

.experience-card--wide {
  display: grid;
  min-height: 285px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.experience-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.experience-card__copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.status-chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.status-chip--live {
  background: rgba(242, 12, 118, 0.14);
  color: #ff5a9a;
}

.experience-card h3 {
  position: relative;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.experience-card p {
  position: relative;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
}

.icon-spark {
  display: grid;
  position: relative;
  width: 52px;
  height: 52px;
  margin-top: 28px;
  place-items: center;
  border-radius: 17px;
  font-size: 24px;
}

.icon-spark--cyan { background: rgba(53, 230, 255, 0.1); color: var(--cyan); }
.icon-spark--pink { background: rgba(242, 12, 189, 0.1); color: var(--pink); }

.feed-stack {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 410px;
  margin: 30px auto 0;
  perspective: 800px;
}

.feed-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 205px;
  height: 370px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: #0a0e27;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.feed-card--back {
  background: linear-gradient(150deg, #17204d, #0c102e);
  transform: translate(-77%, -48%) rotate(-11deg) scale(0.88);
}

.feed-card--mid {
  background: linear-gradient(150deg, #381d58, #101538);
  transform: translate(-23%, -48%) rotate(10deg) scale(0.92);
}

.feed-card--front {
  z-index: 2;
  transform: translate(-50%, -50%);
}

.feed-card--front::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(2, 5, 16, 0.95));
  content: "";
}

.feed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-card span,
.feed-card strong {
  position: absolute;
  z-index: 2;
  left: 16px;
}

.feed-card span {
  top: 16px;
  padding: 5px 8px;
  border-radius: 99px;
  background: var(--pink);
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feed-card strong {
  right: 14px;
  bottom: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.chat-preview {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-light);
}

.chat-preview p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 11px;
}

.chat-preview p + p { margin-top: 7px; }
.chat-preview b { color: var(--cyan); }
.chat-preview span { display: block; margin-top: 12px; color: var(--text-muted); font-size: 9px; font-weight: 800; text-align: right; }

.micro-slider {
  display: flex;
  position: absolute;
  right: 28px;
  bottom: 32px;
  left: 28px;
  height: 58px;
  padding: 0 18px 0 7px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(108, 71, 255, 0.36);
  border-radius: 99px;
  background: rgba(108, 71, 255, 0.1);
}

.micro-slider span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 21px;
}

.micro-slider b { font-size: 13px; }
.micro-slider i { color: var(--violet); font-size: 20px; font-style: normal; letter-spacing: -5px; }

.fixed-sale-preview {
  display: grid;
  position: relative;
  padding: 20px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface-light);
}

.fixed-sale-preview__image {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(53, 230, 255, 0.16), rgba(242, 12, 189, 0.18));
  color: var(--cyan);
  font-size: 28px;
}

.fixed-sale-preview span:nth-child(2) { display: flex; flex-direction: column; }
.fixed-sale-preview small { color: var(--pink); font-size: 8px; font-weight: 900; letter-spacing: 0.12em; }
.fixed-sale-preview strong { margin-top: 4px; font-size: 14px; }
.fixed-sale-preview em { color: var(--text-muted); font-size: 10px; font-style: normal; }
.fixed-sale-preview button { padding: 10px 16px; border: 0; border-radius: 99px; background: var(--brand-gradient); color: #fff; font-size: 10px; font-weight: 900; }

.product-preview-section {
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(33, 102, 255, 0.04), transparent);
}

.screen-gallery {
  display: flex;
  min-height: 730px;
  justify-content: center;
  gap: 18px;
  align-items: center;
  perspective: 1400px;
}

.screen-shot {
  position: relative;
  width: 270px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  background: #0c0f1e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: rotateY(9deg) rotateZ(-2deg) scale(0.88);
  transition: transform 0.6s var(--ease), opacity 0.6s ease;
}

.screen-shot--featured {
  z-index: 2;
  width: 320px;
  transform: translateY(-12px);
}

.screen-shot--three {
  transform: rotateY(-9deg) rotateZ(2deg) scale(0.88);
}

.screen-shot:hover {
  z-index: 4;
  transform: translateY(-18px) scale(1);
}

.screen-shot > img {
  width: 100%;
  aspect-ratio: 945 / 2048;
  border-radius: 31px;
  object-fit: cover;
}

.screen-shot__chrome {
  display: flex;
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 72px;
  height: 22px;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  border-radius: 99px;
  background: #000;
  transform: translateX(-50%);
}

.screen-shot__chrome span:first-child { width: 5px; height: 5px; border-radius: 50%; background: #131625; }
.screen-shot__chrome span:nth-child(2) { width: 4px; height: 4px; border-radius: 50%; background: #151827; }
.screen-shot__chrome span:last-child { width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #0f1120; }

.screen-shot figcaption {
  display: flex;
  position: absolute;
  right: 8px;
  bottom: -48px;
  left: 8px;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.screen-shot figcaption span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 8px;
}

.screen-shot__glow {
  position: absolute;
  z-index: -1;
  inset: 10%;
  background: var(--violet);
  filter: blur(60px);
  opacity: 0.24;
}

.radar-section {
  overflow: hidden;
}

.radar-section::before {
  position: absolute;
  z-index: -1;
  inset: 10% -20% 10% 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 230, 255, 0.1), transparent 60%);
  content: "";
}

.radar-grid,
.passport-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 90px;
  align-items: center;
}

.feature-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  padding: 22px 0;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-top: 1px solid var(--border);
}

.feature-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
}

.feature-list strong { font-size: 15px; }
.feature-list p { margin-top: 4px; color: var(--text-muted); font-size: 13px; }

.radar-visual {
  position: relative;
  min-height: 680px;
}

.radar-visual__rings,
.radar-visual__rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(53, 230, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-visual__rings { width: 570px; height: 570px; background: radial-gradient(circle, rgba(53, 230, 255, 0.05), transparent 68%); }
.radar-visual__rings i:nth-child(1) { width: 75%; height: 75%; }
.radar-visual__rings i:nth-child(2) { width: 50%; height: 50%; }
.radar-visual__rings i:nth-child(3) { width: 25%; height: 25%; }
.radar-visual__rings i:nth-child(4) { width: 110%; height: 1px; border: 0; border-top: 1px dashed rgba(108, 71, 255, 0.2); border-radius: 0; transform: translate(-50%, -50%) rotate(-28deg); }

.radar-core {
  display: flex;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(53, 230, 255, 0.38);
  border-radius: 50%;
  background: rgba(7, 12, 40, 0.88);
  box-shadow: 0 0 70px rgba(53, 230, 255, 0.22), inset 0 0 28px rgba(53, 230, 255, 0.08);
  color: #fff;
  transform: translate(-50%, -50%);
}

.radar-core img { width: 64px; height: 64px; }
.radar-core span { color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: 0.2em; }
.radar-core strong { margin-top: 2px; font-size: 10px; letter-spacing: 0.1em; }

.radar-node {
  display: flex;
  position: absolute;
  z-index: 4;
  width: 240px;
  padding: 14px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  animation: float-card 4.8s ease-in-out infinite;
}

.radar-node--one { top: 68px; right: 0; }
.radar-node--two { bottom: 82px; left: -5px; animation-delay: -1.7s; }
.radar-node--three { right: -12px; bottom: 145px; animation-delay: -3.1s; }

.radar-node__image {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-gradient-soft);
  color: var(--cyan);
  font-size: 20px;
}

.radar-node > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.radar-node small { color: var(--pink); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.radar-node strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.radar-node em { color: var(--text-muted); font-size: 9px; font-style: normal; }

.radar-scan {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 270px;
  border-radius: 50% 0 0 0;
  background: conic-gradient(from 0deg, rgba(53, 230, 255, 0.26), transparent 25%);
  transform-origin: 0 0;
  animation: radar-scan 5s linear infinite;
}

@keyframes radar-scan {
  to { transform: rotate(360deg); }
}

.seller-section {
  background: linear-gradient(180deg, transparent, rgba(108, 71, 255, 0.045), transparent);
}

.seller-console {
  display: grid;
  min-height: 650px;
  overflow: hidden;
  grid-template-columns: 82px 1fr;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: rgba(8, 12, 39, 0.8);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.3), var(--shadow-neon);
  color: #fff;
}

.seller-console__sidebar {
  display: flex;
  padding: 22px 0;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 5, 20, 0.4);
  flex-direction: column;
}

.seller-console__sidebar img { width: 48px; height: 48px; margin-bottom: 22px; }
.seller-console__sidebar span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 13px; color: rgba(255, 255, 255, 0.45); font-size: 17px; }
.seller-console__sidebar .is-active { border: 1px solid rgba(53, 230, 255, 0.3); background: rgba(53, 230, 255, 0.1); color: var(--cyan); }

.seller-console__main { padding: 30px; }
.seller-console__header { display: flex; align-items: center; justify-content: space-between; }
.seller-console__header div { display: flex; flex-direction: column; }
.seller-console__header small { color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: 0.18em; }
.seller-console__header strong { margin-top: 4px; font-size: 18px; }
.live-health { display: flex; padding: 8px 12px; align-items: center; gap: 7px; border: 1px solid rgba(80, 227, 164, 0.25); border-radius: 99px; background: rgba(80, 227, 164, 0.08); color: var(--green); font-size: 9px; font-weight: 850; }
.live-health i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.seller-console__metrics {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.seller-console__metrics article { display: flex; min-width: 0; padding: 18px; flex-direction: column; }
.seller-console__metrics article + article { border-left: 1px solid rgba(255, 255, 255, 0.09); }
.seller-console__metrics small { color: rgba(255, 255, 255, 0.38); font-size: 7px; font-weight: 900; letter-spacing: 0.13em; }
.seller-console__metrics strong { margin-top: 5px; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.seller-console__metrics span { margin-top: 2px; color: rgba(255, 255, 255, 0.46); font-size: 9px; }

.seller-console__body {
  display: grid;
  height: 450px;
  margin-top: 24px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.seller-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
}

.seller-video::after { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(2, 5, 15, 0.4), transparent 45%, rgba(2, 5, 15, 0.8)); content: ""; }
.seller-video img { width: 100%; height: 100%; object-fit: cover; }
.practice-badge { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 7px 10px; border: 1px solid rgba(53, 230, 255, 0.4); border-radius: 99px; background: rgba(4, 9, 27, 0.72); color: #fff; font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.seller-video__controls { display: flex; position: absolute; z-index: 2; right: 13px; bottom: 18px; left: 13px; justify-content: center; gap: 8px; }
.seller-video__controls span { padding: 8px 10px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 99px; background: rgba(4, 8, 22, 0.72); font-size: 8px; font-weight: 800; backdrop-filter: blur(10px); }

.seller-queue {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.seller-queue__head { display: flex; align-items: center; justify-content: space-between; }
.seller-queue__head strong { font-size: 14px; }
.seller-queue__head span { color: rgba(255, 255, 255, 0.45); font-size: 9px; }

.queue-item { display: grid; margin-top: 12px; padding: 12px; grid-template-columns: 30px 1fr auto; gap: 10px; align-items: center; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.queue-item > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.46); font-size: 8px; font-weight: 900; }
.queue-item div { display: flex; min-width: 0; flex-direction: column; }
.queue-item strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.queue-item small { color: rgba(255, 255, 255, 0.42); font-size: 8px; }
.queue-item b { color: rgba(255, 255, 255, 0.4); font-size: 7px; letter-spacing: 0.09em; }
.queue-item--active { border-color: rgba(53, 230, 255, 0.3); background: rgba(53, 230, 255, 0.07); }
.queue-item--active > span { background: var(--cyan); color: #071126; }
.queue-item--active b { color: var(--cyan); }

.request-summary { display: flex; margin-top: 14px; padding: 14px; border-radius: 16px; background: linear-gradient(130deg, rgba(108, 71, 255, 0.14), rgba(242, 12, 189, 0.1)); flex-direction: column; }
.request-summary small { color: #cfbdff; font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.request-summary strong { margin-top: 4px; font-size: 10px; }
.request-summary span { margin-top: 3px; color: rgba(255, 255, 255, 0.45); font-size: 8px; }

.seller-features {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.seller-feature { padding: 26px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); }
.seller-feature > span { color: var(--cyan); font-size: 9px; font-weight: 900; }
.seller-feature h3 { margin-top: 26px; font-size: 18px; font-weight: 880; letter-spacing: -0.03em; line-height: 1.2; }
.seller-feature p { margin-top: 10px; color: var(--text-muted); font-size: 12px; line-height: 1.6; }

.journey-section { overflow: hidden; }
.journey { display: grid; position: relative; margin-top: 90px; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.journey__line { position: absolute; top: 38px; right: 8%; left: 8%; height: 1px; background: var(--border); }
.journey__line i { display: block; width: 38%; height: 100%; background: var(--brand-gradient); box-shadow: 0 0 16px rgba(53, 230, 255, 0.4); animation: journey-line 5s ease-in-out infinite; }
@keyframes journey-line { 50% { width: 78%; } }
.journey-step { position: relative; z-index: 2; text-align: center; }
.journey-step__index { position: absolute; top: -24px; left: 50%; color: var(--text-muted); font-size: 8px; font-weight: 900; transform: translateX(-50%); }
.journey-step__icon { display: grid; width: 76px; height: 76px; margin: 0 auto; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--surface-strong); box-shadow: 0 0 0 8px var(--bg); color: var(--cyan); font-size: 23px; }
.journey-step h3 { margin-top: 22px; font-size: 17px; }
.journey-step p { margin-top: 8px; color: var(--text-muted); font-size: 11px; line-height: 1.6; }

.universe-grid { display: grid; margin-top: 120px; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.universe-card { position: relative; padding: 36px; overflow: hidden; border: 1px solid var(--border); border-radius: 30px; background: var(--surface); }
.universe-card::after { position: absolute; right: -80px; bottom: -80px; width: 190px; height: 190px; border-radius: 50%; background: var(--violet); filter: blur(80px); content: ""; opacity: 0.1; }
.universe-card--live::after { background: var(--pink); opacity: 0.18; }
.universe-card__tag { color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: 0.18em; }
.universe-card h3 { margin-top: 18px; font-size: 26px; font-weight: 900; letter-spacing: -0.04em; }
.universe-card ul { display: grid; margin: 26px 0 0; padding: 0; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; list-style: none; }
.universe-card li { position: relative; padding-left: 16px; color: var(--text-soft); font-size: 12px; }
.universe-card li::before { position: absolute; top: 0.68em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-gradient); content: ""; }

.passport-section { background: linear-gradient(180deg, transparent, rgba(242, 12, 189, 0.035), transparent); }
.passport-grid { grid-template-columns: minmax(480px, 1.05fr) minmax(0, 0.95fr); }
.passport-visual { position: relative; min-height: 570px; perspective: 1100px; }
.passport-card { position: absolute; top: 50%; left: 50%; width: 470px; min-height: 430px; border: 1px solid var(--border); border-radius: 32px; }
.passport-card--back { background: linear-gradient(145deg, rgba(108, 71, 255, 0.4), rgba(242, 12, 189, 0.22)); transform: translate(-46%, -47%) rotate(7deg); }
.passport-card--front { padding: 24px; background: var(--surface-elevated); box-shadow: var(--shadow-soft); transform: translate(-55%, -52%) rotate(-3deg); backdrop-filter: blur(22px); }
.passport-card__head { display: flex; align-items: center; justify-content: space-between; }
.passport-card__head span { color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: 0.18em; }
.passport-card__head i { color: var(--text-muted); font-size: 8px; font-style: normal; }
.passport-card__product { display: grid; margin-top: 22px; padding: 14px; grid-template-columns: 90px 1fr; gap: 16px; align-items: center; border: 1px solid var(--border); border-radius: 20px; background: var(--surface-light); }
.passport-card__product img { width: 90px; height: 90px; border-radius: 16px; object-fit: cover; }
.passport-card__product div { display: flex; flex-direction: column; }
.passport-card__product small { color: var(--pink); font-size: 7px; font-weight: 900; letter-spacing: 0.1em; }
.passport-card__product strong { margin-top: 5px; font-size: 14px; }
.passport-card__product span { color: var(--text-muted); font-size: 9px; }
.passport-card__timeline { display: grid; position: relative; margin-top: 28px; grid-template-columns: repeat(4, 1fr); }
.passport-card__timeline::before { position: absolute; z-index: -1; top: 14px; right: 11%; left: 11%; height: 1px; background: var(--border); content: ""; }
.passport-card__timeline span { display: flex; align-items: center; flex-direction: column; text-align: center; }
.passport-card__timeline i { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--surface-strong); color: var(--text-muted); font-size: 8px; font-style: normal; }
.passport-card__timeline .is-complete i { border-color: rgba(80, 227, 164, 0.36); background: rgba(80, 227, 164, 0.12); color: var(--green); }
.passport-card__timeline b { margin-top: 8px; font-size: 8px; }
.passport-card__timeline small { color: var(--text-muted); font-size: 7px; }
.passport-card__hash { display: flex; margin-top: 30px; padding-top: 16px; align-items: center; gap: 10px; border-top: 1px solid var(--border); }
.passport-card__hash span { width: 62px; height: 18px; opacity: 0.5; background: repeating-linear-gradient(90deg, var(--text-soft) 0 2px, transparent 2px 4px); }
.passport-card__hash small { color: var(--text-muted); font-size: 7px; }

.passport-points { margin-top: 36px; }
.passport-points > div { display: grid; padding: 20px 0; grid-template-columns: auto 1fr; gap: 16px; border-top: 1px solid var(--border); }
.passport-points > div > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--border); border-radius: 12px; color: var(--cyan); }
.passport-points p { display: flex; color: var(--text-muted); font-size: 12px; flex-direction: column; }
.passport-points strong { margin-bottom: 3px; color: var(--text); font-size: 14px; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card { position: relative; min-height: 290px; padding: 30px; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: var(--surface); transition: transform 0.35s var(--ease), border-color 0.35s ease; }
.trust-card:hover { border-color: var(--border-bright); transform: translateY(-7px); }
.trust-card__icon { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--border); border-radius: 16px; background: var(--surface-light); color: var(--cyan); font-size: 21px; }
.trust-card h3 { margin-top: 30px; font-size: 21px; font-weight: 880; letter-spacing: -0.03em; }
.trust-card p { margin-top: 11px; color: var(--text-soft); font-size: 13px; line-height: 1.7; }
.trust-card small { position: absolute; right: 28px; bottom: 22px; left: 28px; color: var(--text-muted); font-size: 7px; font-weight: 900; letter-spacing: 0.16em; }

.status-section { background: linear-gradient(180deg, transparent, rgba(53, 230, 255, 0.035), transparent); }
.status-board { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--border); border-radius: 32px; background: var(--surface); box-shadow: var(--shadow-soft); }
.status-column { padding: 32px; }
.status-column + .status-column { border-left: 1px solid var(--border); }
.status-column__head { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.status-column__head > span { width: 9px; height: 9px; grid-row: 1 / 3; border-radius: 50%; box-shadow: 0 0 14px currentColor; }
.status-column__head strong { font-size: 15px; }
.status-column__head small { color: var(--text-muted); font-size: 9px; }
.status-column--testing .status-column__head { color: var(--green); }
.status-column--external .status-column__head { color: var(--amber); }
.status-column--gated .status-column__head { color: #c792ff; }
.status-column__head strong { color: var(--text); }
.status-column ul { margin: 28px 0 0; padding: 0; list-style: none; }
.status-column li { position: relative; padding: 11px 0 11px 18px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: 12px; }
.status-column li::before { position: absolute; top: 19px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: currentColor; content: ""; opacity: 0.55; }
.status-note { max-width: 760px; margin: 24px auto 0; color: var(--text-muted); font-size: 11px; text-align: center; }

.faq-grid { display: grid; grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr); gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 48px); }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; position: relative; padding: 26px 54px 26px 0; align-items: center; justify-content: space-between; font-size: 16px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before,
.faq-list summary span::after { position: absolute; top: 50%; right: 8px; width: 16px; height: 2px; border-radius: 2px; background: var(--cyan); content: ""; transition: transform 0.3s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { padding: 0 48px 26px 0; color: var(--text-soft); font-size: 13px; line-height: 1.8; }

.launch-section { padding-top: 80px; }
.launch-card { position: relative; padding: 86px 80px; overflow: hidden; border-radius: 42px; background: linear-gradient(120deg, #101d74, #5227ca 50%, #c40996); box-shadow: 0 40px 120px rgba(86, 51, 221, 0.28); color: #fff; text-align: center; }
.launch-card::before { position: absolute; inset: 1px; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 41px; content: ""; pointer-events: none; }
.launch-card__noise { position: absolute; inset: 0; opacity: 0.16; background-image: radial-gradient(rgba(255, 255, 255, 0.85) 0.5px, transparent 0.5px); background-size: 6px 6px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent); }
.launch-card > img { position: relative; width: 120px; height: 120px; margin: 0 auto 22px; filter: drop-shadow(0 14px 34px rgba(3, 7, 30, 0.3)); }
.launch-card .kicker { position: relative; color: #aaf5ff; }
.launch-card h1,
.launch-card h2 { position: relative; max-width: 780px; margin: 18px auto 0; font-size: clamp(44px, 6vw, 78px); font-weight: 950; letter-spacing: -0.065em; line-height: 0.98; }
.launch-card > p { position: relative; max-width: 660px; margin: 24px auto 0; color: rgba(255, 255, 255, 0.75); font-size: 16px; }
.launch-card__actions { display: flex; position: relative; margin: 32px 0; justify-content: center; gap: 10px; flex-wrap: wrap; }
.platform-pill { display: grid; padding: 10px 16px; grid-template-columns: auto auto; gap: 0 8px; align-items: center; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 99px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); font-size: 12px; font-weight: 850; }
.platform-pill b { grid-row: 1 / 3; font-size: 19px; }
.platform-pill small { color: rgba(255, 255, 255, 0.58); font-size: 8px; font-weight: 600; }
.launch-card .button { position: relative; }
.launch-card__orbit { position: absolute; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
.launch-card__orbit--one { top: -55%; left: -10%; width: 720px; height: 720px; }
.launch-card__orbit--two { right: -25%; bottom: -85%; width: 850px; height: 850px; }

.site-footer { padding: 44px 0 26px; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg-soft) 55%, var(--bg)); }
.site-footer__top { display: flex; padding-bottom: 36px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.brand--footer img { width: 54px; height: 54px; }
.brand--footer .brand__word { font-size: 26px; }
.site-footer__top > p { color: var(--text); font-size: 10px; font-weight: 900; letter-spacing: 0.2em; text-align: right; text-transform: uppercase; }
.site-footer__top > p span { color: var(--text-muted); font-size: 9px; letter-spacing: 0.07em; text-transform: none; }
.site-footer__links { display: grid; padding: 42px 0; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.site-footer__links > div { display: flex; align-items: flex-start; gap: 8px; flex-direction: column; }
.site-footer__links strong { margin-bottom: 6px; font-size: 11px; }
.site-footer__links a,
.site-footer__links span { color: var(--text-muted); font-size: 11px; transition: color 0.2s ease; }
.site-footer__links a:hover { color: var(--cyan); }
.site-footer__bottom { display: flex; padding-top: 22px; justify-content: space-between; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 9px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) 440px; gap: 30px; }
  .hero h1 { font-size: clamp(54px, 7vw, 78px); }
  .floating-card--top, .auction-ticker { right: 0; }
  .floating-card--side { left: 0; }
  .radar-grid, .passport-grid { gap: 44px; }
  .seller-console__metrics { grid-template-columns: repeat(2, 1fr); }
  .seller-console__metrics article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.09); }
  .seller-console__metrics article:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.09); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 96px 0; }
  .main-nav {
    display: flex;
    position: fixed;
    z-index: 101;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    padding: 22px;
    visibility: hidden;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-elevated);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    backdrop-filter: blur(24px);
    flex-direction: column;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { padding: 13px 8px; font-size: 15px; }
  .main-nav a + a { border-top: 1px solid var(--border); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; flex-direction: column; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding: 130px 0 100px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof { margin-inline: auto; text-align: left; }
  .hero-stage { min-height: 700px; margin-top: 30px; }
  .hero::before { top: 48%; left: 50%; transform: translateX(-50%); }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .section-heading--split > p { max-width: 650px; }
  .experience-card--large { grid-template-columns: 1fr 1fr; }
  .screen-gallery { min-height: 620px; }
  .screen-shot { width: 220px; }
  .screen-shot--featured { width: 260px; }
  .radar-grid, .passport-grid { grid-template-columns: 1fr; }
  .radar-copy { max-width: 680px; }
  .radar-visual { max-width: 620px; width: 100%; margin: 0 auto; }
  .passport-visual { grid-row: 2; }
  .seller-features { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(3, 1fr); row-gap: 60px; }
  .journey__line { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .status-board { grid-template-columns: 1fr; }
  .status-column + .status-column { border-top: 1px solid var(--border); border-left: 0; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }
  .header-cta { display: none; }
  .brand img { width: 40px; height: 40px; }
  .brand__word { font-size: 20px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { grid-template-columns: 1fr; gap: 14px; }
  .hero__proof div { padding: 0; }
  .hero__proof div + div { padding: 14px 0 0; border-top: 1px solid var(--border); border-left: 0; }
  .hero-stage { min-height: 630px; }
  .phone--hero { width: 306px; height: 612px; border-radius: 46px; }
  .live-demo { border-radius: 38px; }
  .floating-card--top { top: 48px; right: -4px; transform: scale(0.85); transform-origin: right; }
  .floating-card--side { display: none; }
  .auction-ticker { right: -2px; bottom: 18px; transform: scale(0.84); transform-origin: right bottom; }
  .hero-stage__halo { width: 390px; height: 390px; }
  .scroll-cue { display: none; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .radar-copy h2, .passport-copy h2, .faq-intro h2 { font-size: clamp(38px, 12vw, 54px); }
  .section-heading p, .radar-copy > p, .passport-copy > p, .faq-intro p { font-size: 15px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 360px; padding: 26px; border-radius: 28px; }
  .experience-card--large { min-height: 760px; grid-template-columns: 1fr; }
  .experience-card--wide { min-height: 490px; grid-template-columns: 1fr; align-content: center; }
  .feed-stack { width: 280px; }
  .fixed-sale-preview { grid-template-columns: auto 1fr; }
  .fixed-sale-preview button { grid-column: 1 / -1; }
  .screen-gallery { min-height: 550px; margin: 0 -10px; gap: 6px; }
  .screen-shot { width: 145px; padding: 5px; border-radius: 27px; }
  .screen-shot > img { border-radius: 22px; }
  .screen-shot--featured { width: 186px; }
  .screen-shot__chrome { top: 10px; width: 46px; height: 14px; }
  .screen-shot figcaption { display: none; }
  .radar-visual { min-height: 600px; transform: scale(0.88); transform-origin: center; }
  .radar-visual__rings { width: 470px; height: 470px; }
  .radar-node { width: 210px; }
  .radar-node--one { right: -30px; }
  .radar-node--two { left: -35px; }
  .radar-node--three { right: -35px; bottom: 115px; }
  .seller-console { min-height: auto; grid-template-columns: 1fr; border-radius: 28px; }
  .seller-console__sidebar { display: none; }
  .seller-console__main { padding: 18px; }
  .seller-console__header { align-items: flex-start; gap: 12px; flex-direction: column; }
  .seller-console__metrics { grid-template-columns: 1fr 1fr; }
  .seller-console__body { height: auto; grid-template-columns: 1fr; }
  .seller-video { height: 470px; }
  .seller-queue { min-height: 390px; }
  .seller-features { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr 1fr; }
  .universe-grid { grid-template-columns: 1fr; margin-top: 80px; }
  .universe-card ul { grid-template-columns: 1fr; }
  .passport-visual { min-height: 500px; transform: scale(0.76); transform-origin: center; }
  .passport-card { width: 440px; }
  .trust-grid { grid-template-columns: 1fr; }
  .status-column { padding: 26px; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-intro { position: static; }
  .launch-card { padding: 64px 22px; border-radius: 30px; }
  .launch-card h1,
  .launch-card h2 { font-size: clamp(40px, 13vw, 58px); }
  .site-footer__top { align-items: flex-start; gap: 22px; flex-direction: column; }
  .site-footer__top > p { text-align: left; }
  .site-footer__links { grid-template-columns: repeat(2, 1fr); }
  .site-footer__bottom { gap: 12px; flex-direction: column; }
}

@media (max-width: 390px) {
  .phone--hero { width: 286px; height: 572px; }
  .hero-stage { min-height: 590px; }
  .radar-visual { margin: -30px 0; transform: scale(0.75); }
  .passport-visual { margin: -40px 0; transform: scale(0.66); }
  .site-footer__links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
