:root {
  --bg: #090312;
  --bg-deep: #03010a;
  --panel: rgba(18, 13, 40, 0.58);
  --panel-strong: rgba(14, 16, 48, 0.82);
  --line: rgba(181, 160, 255, 0.18);
  --text: #f6f2ff;
  --muted: rgba(236, 231, 255, 0.74);
  --accent: #b892ff;
  --accent-warm: #ff8fda;
  --accent-cold: #69b7ff;
  --accent-deep: #7b61ff;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
  --radius: 28px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 146, 255, 0.22), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(105, 183, 255, 0.16), transparent 24%),
    radial-gradient(circle at 54% 76%, rgba(255, 143, 218, 0.12), transparent 28%),
    linear-gradient(180deg, #090312 0%, #09051b 35%, #04020c 100%);
  overflow-x: hidden;
  cursor: none;
}

a,
button,
[role="button"],
input,
textarea,
select,
label,
summary {
  cursor: none !important;
  -webkit-user-select: none;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 30%, rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 50% 0%, rgba(123, 97, 255, 0.16), transparent 40%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -2;
}

#constellation,
.grid-noise,
.bg-orb,
.spotlight,
.aurora,
.edge-flare,
.scroll-orb,
.cursor-glow,
.cursor-dot,
.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#constellation {
  z-index: -5;
}

.grid-noise {
  z-index: -4;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(184, 146, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 183, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 92%);
  will-change: transform, opacity;
  transition: transform 1.4s ease-out, opacity 1.6s ease-out;
}

.bg-orb {
  z-index: -3;
  filter: blur(38px);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity, filter;
  transition: transform 1.8s ease-out, opacity 1.8s ease-out, filter 2s ease-out;
}

.spotlight {
  z-index: -1;
  opacity: 0.65;
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(184, 146, 255, 0.2), transparent 18%),
    radial-gradient(circle at calc(var(--spotlight-x, 50%) + 12%) calc(var(--spotlight-y, 50%) - 8%), rgba(105, 183, 255, 0.16), transparent 16%);
  transition: opacity 1.2s ease-out, background-position 1.2s ease-out;
}

body.cursor-hidden .spotlight {
  opacity: 0.08;
}

.scroll-orb {
  inset: auto auto 14vh 5vw;
  width: 148px;
  height: 148px;
  z-index: -1;
  border-radius: 50%;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform, opacity, filter;
  opacity: 0.8;
  filter: drop-shadow(0 0 36px rgba(184, 146, 255, 0.22));
}

.scroll-orb-shell,
.scroll-orb-ring,
.scroll-orb-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.scroll-orb-shell {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), rgba(184, 146, 255, 0.18) 22%, rgba(105, 183, 255, 0.12) 42%, rgba(5, 7, 25, 0.08) 70%, transparent 76%),
    radial-gradient(circle at center, rgba(184, 146, 255, 0.2), transparent 72%);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    inset 0 -24px 50px rgba(4, 6, 20, 0.3);
  backdrop-filter: blur(12px);
}

.scroll-orb-ring {
  border: 1px solid rgba(255, 255, 255, 0.16);
  mix-blend-mode: screen;
}

.scroll-orb .ring-a {
  width: 112%;
  height: 112%;
}

.scroll-orb .ring-b {
  width: 78%;
  height: 78%;
}

.scroll-orb .ring-c {
  width: 48%;
  height: 48%;
}

.scroll-orb-core {
  width: 34%;
  height: 34%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(184, 146, 255, 0.6) 34%, rgba(105, 183, 255, 0.34) 66%, transparent 78%);
  box-shadow: 0 0 34px rgba(184, 146, 255, 0.4);
}

.cursor-glow,
.cursor-dot {
  inset: 0 auto auto 0;
  z-index: 30;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
}

.fx-layer {
  z-index: 4;
  overflow: hidden;
}

.cursor-glow {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(184, 146, 255, 0.24), rgba(105, 183, 255, 0.08) 45%, transparent 70%);
  filter: blur(10px);
  opacity: 0.8;
  transition: opacity 0.35s ease;
}

.cursor-dot {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 24px rgba(184, 146, 255, 0.4);
  transition: opacity 0.25s ease;
}

body.cursor-hidden .cursor-glow,
body.cursor-hidden .cursor-dot {
  opacity: 0;
}

.aurora {
  width: 52vw;
  height: 52vw;
  inset: auto;
  z-index: -2;
  filter: blur(46px);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: auroraFloat 18s ease-in-out infinite alternate;
  will-change: transform, opacity, filter;
  transition: transform 2s ease-out, opacity 1.8s ease-out, filter 2.2s ease-out;
}

.edge-flare {
  z-index: -2;
  inset: 0 auto 0 0;
  width: 26vw;
  opacity: 0.42;
  filter: blur(34px);
  will-change: transform, opacity;
  transition: transform 1.8s ease-out, opacity 1.8s ease-out;
}

.edge-flare-left {
  background: radial-gradient(circle at 0% 50%, rgba(184, 146, 255, 0.28), rgba(105, 183, 255, 0.12) 35%, transparent 72%);
}

.edge-flare-right {
  inset: 0 0 0 auto;
  background: radial-gradient(circle at 100% 50%, rgba(105, 183, 255, 0.26), rgba(184, 146, 255, 0.1) 35%, transparent 72%);
}

.aurora-a {
  top: -12vw;
  left: -8vw;
  background: conic-gradient(from 120deg, rgba(184, 146, 255, 0.42), rgba(105, 183, 255, 0.16), rgba(255, 143, 218, 0.3), rgba(184, 146, 255, 0.42));
}

.aurora-b {
  right: -12vw;
  bottom: -10vw;
  background: conic-gradient(from 240deg, rgba(105, 183, 255, 0.3), rgba(123, 97, 255, 0.32), rgba(184, 146, 255, 0.28), rgba(105, 183, 255, 0.3));
  animation-duration: 22s;
}

.orb-a {
  inset: 8% auto auto 4%;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 255, 0.22), transparent 68%);
}

.orb-b {
  inset: auto 3% 8% auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 183, 255, 0.18), transparent 68%);
}

.orb-c {
  inset: 34% auto auto 46%;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 218, 0.14), transparent 68%);
}

.site-header,
main,
.site-footer {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
}

.brand h1,
.hero h2,
.section-heading h2,
.feature h3,
.story h3,
.timeline-item h3,
.review-card h3,
.signal-band h2,
.dimension-card h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  letter-spacing: -0.02em;
}

.brand h1 {
  font-size: 2rem;
}

.eyebrow,
.story-kicker,
.card-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.feature a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.82;
}

.site-nav a:hover,
.feature a:hover {
  opacity: 1;
}

main {
  padding: 24px 0 80px;
}

.panel {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(21, 17, 47, 0.72), rgba(8, 9, 24, 0.76)),
    radial-gradient(circle at top left, rgba(184, 146, 255, 0.12), transparent 30%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%);
  opacity: 0.55;
  z-index: -1;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 42px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 35%;
  height: 340px;
  background: radial-gradient(circle, rgba(184, 146, 255, 0.18), transparent 64%);
}

.hero-copy {
  max-width: 720px;
}

.hero h2 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.88;
  margin-bottom: 20px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 146, 255, 0.42);
}

.button.primary {
  background: linear-gradient(135deg, rgba(184, 146, 255, 0.34), rgba(105, 183, 255, 0.24));
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.hero-stack {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-top: 8px;
}

.hero-cosmos {
  position: relative;
  height: 320px;
  margin-bottom: 6px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(105, 183, 255, 0.08), transparent 36%),
    radial-gradient(circle at center, rgba(184, 146, 255, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transform-style: preserve-3d;
  will-change: transform;
}

.liquid-core-canvas,
.scene-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.liquid-core-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.scene-depth-a,
.scene-depth-b {
  filter: blur(28px);
}

.scene-depth-a {
  inset: 22% 24% 22% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 255, 0.28), transparent 64%);
  transform: translateZ(24px);
}

.scene-depth-b {
  inset: 12% 14% 12% 14%;
  border-radius: 42%;
  background: radial-gradient(circle, rgba(105, 183, 255, 0.18), transparent 70%);
  transform: translateZ(10px);
}

.hero-ring,
.hero-core,
.hero-satellite {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero-ring {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 30px rgba(184, 146, 255, 0.08);
}

.ring-1 {
  width: 120px;
  height: 120px;
}

.ring-2 {
  width: 190px;
  height: 190px;
}

.ring-3 {
  width: 270px;
  height: 270px;
}

.hero-core {
  width: 82px;
  height: 82px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(184, 146, 255, 0.55) 26%, rgba(105, 183, 255, 0.3) 54%, transparent 70%),
    radial-gradient(circle, rgba(184, 146, 255, 0.42), transparent 72%);
  box-shadow: 0 0 80px rgba(184, 146, 255, 0.35);
}

.hero-satellite {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(105, 183, 255, 0.72));
  box-shadow: 0 0 34px rgba(105, 183, 255, 0.5);
}

.satellite-a {
  animation: orbitA 12s linear infinite;
}

.satellite-b {
  width: 12px;
  height: 12px;
  animation: orbitB 16s linear infinite;
}

.satellite-c {
  width: 10px;
  height: 10px;
  animation: orbitC 9s linear infinite reverse;
}

.floating-card,
.review-card,
.timeline-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(184, 146, 255, 0.1), transparent 44%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--accent-warm);
}

.signal-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.feature-grid,
.reviews-grid,
.timeline,
.dimension-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  margin-top: 24px;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.feature,
.story,
.dimension-card {
  position: relative;
  padding: 28px;
}

.feature-large {
  min-height: 320px;
}

.feature-large::after,
.story::after,
.dimension-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 18px auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 255, 0.22), transparent 68%);
  filter: blur(8px);
}

.feature h3,
.story h3,
.review-card h3,
.timeline-item h3,
.section-heading h2,
.dimension-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  margin-bottom: 16px;
}

.timeline-item h3 {
  font-size: clamp(1.85rem, 2vw, 2.45rem);
  line-height: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.timeline-item .text-line {
  max-width: 100%;
}

.text-line {
  display: block;
  overflow: hidden;
}

.measure-word {
  display: inline-block;
}

.text-line-inner {
  display: block;
  transform: translateY(135%);
  opacity: 0;
  filter: blur(8px);
  transition: transform 1.05s cubic-bezier(.22,1,.36,1), opacity 1.05s ease, filter 1.05s ease;
}

.in-view .text-line-inner,
.hero-ready .text-line-inner {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.split-lines .text-line:nth-child(2) .text-line-inner {
  transition-delay: 0.08s;
}

.split-lines .text-line:nth-child(3) .text-line-inner {
  transition-delay: 0.16s;
}

.feature p,
.story p,
.review-card p,
.timeline-item p,
.site-footer p,
.dimension-card p {
  color: var(--muted);
  line-height: 1.8;
}

.signal-band,
.reviews-section,
.timeline-section {
  margin-top: 24px;
}

.signal-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(123, 97, 255, 0.16), rgba(105, 183, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.signal-band h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
}

.signal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.signal-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

.reviews-section,
.timeline-section {
  padding: 30px;
}

.pin-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  min-height: 165vh;
}

.reviews-pin {
  position: relative;
  min-height: 100%;
}

.reviews-copy {
  position: sticky;
  top: 96px;
  padding: 16px 8px 16px 0;
}

.lead.compact {
  max-width: 32rem;
  font-size: 1rem;
}

.reviews-flow {
  display: grid;
  gap: 24px;
  padding-top: 18vh;
  padding-bottom: 18vh;
}

.reviews-flow .review-card {
  min-height: 320px;
}

.ticker-wrap {
  position: relative;
  overflow: hidden;
  margin: 26px 0 6px;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 16px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 247, 251, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-score {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.45rem;
}

.review-card span {
  display: block;
  margin-top: 16px;
  color: rgba(244, 247, 251, 0.82);
}

.articles-section {
  margin-top: 24px;
}

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

.dimension-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dimension-card {
  min-height: 250px;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--accent-warm);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px;
  margin-bottom: 120px;
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 30%;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 146, 255, 0.18), transparent 66%);
  filter: blur(8px);
}

.footer-top,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.92;
  margin: 0 0 18px;
}

.footer-lead {
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-glass-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(105, 183, 255, 0.14), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-card-label,
.footer-column-title,
.signal-dock-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.footer-glass-card strong {
  display: block;
  font-size: 3rem;
  margin-bottom: 14px;
  color: var(--accent-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-column {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-dock {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 28px), 920px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(20, 15, 44, 0.82), rgba(10, 11, 28, 0.82)),
    radial-gradient(circle at top left, rgba(184, 146, 255, 0.12), transparent 34%);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  z-index: 8;
}

.signal-dock-copy {
  min-width: 240px;
}

.signal-dock-copy strong {
  display: block;
  font-size: 0.96rem;
}

.signal-dock-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.signal-dock-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-dock-link {
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(184, 146, 255, 0.26), rgba(105, 183, 255, 0.16));
}

.fx-ripple {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: radial-gradient(circle, rgba(184, 146, 255, 0.18), rgba(105, 183, 255, 0.08) 40%, transparent 72%);
  transform: translate(-50%, -50%) scale(0.2);
  animation: rippleBurst 1.6s cubic-bezier(.16,1,.3,1) forwards;
}

.fx-ripple::before,
.fx-ripple::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fx-ripple::before {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(184, 146, 255, 0.22);
}

.fx-ripple::after {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(105, 183, 255, 0.16);
}
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.tilt-card:hover {
  border-color: rgba(184, 146, 255, 0.32);
  box-shadow: 0 24px 80px rgba(14, 7, 34, 0.7);
}

.magnetic {
  transition: transform 0.18s ease-out, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .hero,
  .feature-grid,
  .reviews-grid,
  .article-layout,
  .timeline,
  .dimension-grid,
  .signal-band,
  .pin-section,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .section-heading,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px;
  }

  .signal-points {
    justify-content: flex-start;
  }

  .reviews-copy {
    position: static;
    top: auto;
    padding-right: 0;
  }

  .footer-bottom,
  .signal-dock {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-dock {
    border-radius: 28px;
    bottom: 14px;
  }
}

@media (max-width: 720px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 20px), var(--max));
  }

  .brand {
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 3.1rem;
  }

  .feature h3,
  .story h3,
  .review-card h3,
  .timeline-item h3,
  .section-heading h2,
  .dimension-card h3,
  .signal-band h2 {
    font-size: 2.2rem;
  }

  .panel,
  .story,
  .feature,
  .reviews-section,
  .timeline-section,
  .signal-band,
  .dimension-card,
  .site-footer,
  .signal-dock {
    border-radius: 24px;
  }

  .cursor-glow,
  .cursor-dot {
    display: none;
  }

  body {
    cursor: auto;
  }

  a,
  button,
  [role="button"],
  input,
  textarea,
  select,
  label,
  summary {
    cursor: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tilt-card,
  .button,
  .ticker-track,
  .aurora,
  .hero-satellite,
  .text-line-inner {
    transition: none;
    animation: none;
  }

  .fx-ripple {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes orbitA {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(95px);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(95px);
  }
}

@keyframes orbitB {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(135px);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(135px);
  }
}

@keyframes orbitC {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(62px);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(62px);
  }
}

@keyframes auroraFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  to {
    transform: translate3d(3vw, -2vw, 0) rotate(18deg) scale(1.08);
  }
}

@keyframes rippleBurst {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.2);
    filter: blur(0);
  }
  70% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
    filter: blur(4px);
  }
}
