:root {
  /* Core Palette - Deep Black Base for Glass */
  --bg:            #000000;
  --surface-glass: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* Typography */
  --text:          #FFFFFF;
  --text-2:        #B0B0B0;
  --text-3:        #606060;

  /* Type & Scale */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* State colors */
  --ok:      #FFFFFF;
  --warn:    #B0B0B0;
  --err:     #FF4D4D;
  --accent:  #FFFFFF;
  --muted:   #606060;
  --muted2:  #B0B0B0;
  --border2: rgba(255, 255, 255, 0.15);
  --panel:   rgba(255, 255, 255, 0.04);
  --panel2:  rgba(255, 255, 255, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --transition: .2s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* --- DARK BACKGROUND LAYERS --- */
body::before, body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
}
body::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.05), transparent 62%);
  top: -250px; left: -200px;
  border-radius: 50%;
}
body::after {
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}
/* Beams - B&W ReactBits-style sweeping light strips (transform-only animation) */
.beams {
  position: fixed; inset: 0; z-index: -3;
  overflow: hidden; pointer-events: none;
}
.beams i {
  position: absolute; left: 50%; top: -30%;
  width: 42vw; height: 160%;
  transform-origin: 50% 0;
  background: conic-gradient(from 0deg at 50% 0%, transparent 0deg, rgba(255, 255, 255, 0.055) 6deg, transparent 13deg);
  animation: beam-swing var(--t, 34s) ease-in-out infinite alternate;
  will-change: transform;
}
.beams i:nth-child(1) { --t: 34s; --a0: -14deg; animation-delay: -8s; opacity: 0.9; }
.beams i:nth-child(2) { --t: 27s; --a0: 4deg;  animation-delay: -16s; opacity: 0.6; }
.beams i:nth-child(3) { --t: 43s; --a0: 21deg; animation-delay: -4s; opacity: 0.8; }
.beams i:nth-child(4) { --t: 31s; --a0: -30deg; animation-delay: -12s; opacity: 0.5; }
.beams i:nth-child(5) { --t: 39s; --a0: 38deg; animation-delay: -2s; opacity: 0.7; }
.beams i:nth-child(6) { --t: 29s; --a0: -47deg; animation-delay: -20s; opacity: 0.45; }
.beams i:nth-child(7) { --t: 45s; --a0: 12deg; animation-delay: -27s; opacity: 0.65; }
@keyframes beam-swing { from { transform: rotate(var(--a0, 0deg)); } to { transform: rotate(calc(var(--a0, 0deg) + 13deg)); } }
/* Dot grid - subtle B&W texture, static */
.dot-grid {
  position: fixed; inset: 0; z-index: -3;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 38%, #000 15%, transparent 72%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 38%, #000 15%, transparent 72%);
}

/* Cursor glow: */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px;
  border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 60%);
  mix-blend-mode: screen;
  will-change: transform;
}

/* FloatingLines WebGL background */
#fl-lines {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.45;
}
#fl-lines canvas { display: block; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
code, .mono { font-family: var(--font-mono); font-size: 0.85em; letter-spacing: 0.02em; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 48px 0; }

/* --- NAVIGATION (Glass) --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; font-size: 18px; }
.brand .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.nav-links { position: relative; display: flex; gap: 28px; margin-right: auto; }
.nav-links a, .nav-links .nav-link {
  position: relative; z-index: 1;
  color: var(--text-2); font-size: 14px; font-weight: 400;
  transition: color .25s var(--ease), text-shadow .25s var(--ease);
}
.nav-links a:hover, .nav-links .nav-link:hover { color: var(--text); text-shadow: 0 0 14px rgba(255,255,255,0.35); }
.nav-links a.is-active, .nav-links .nav-link.is-active { color: var(--text); text-shadow: 0 0 14px rgba(255,255,255,0.4); }
/* Springy gradient underline (motion-primitives AnimatedUnderline style) */
.nav-links a::after, .nav-links .nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffffff, #7a7a7a);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  transform: scaleX(0); transform-origin: center;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.nav-links a:hover::after, .nav-links a.is-active::after,
.nav-links .nav-link:hover::after, .nav-links .nav-link.is-active::after { transform: scaleX(1); }

/* Discord brand icon */
.ic-discord { width: 15px; height: 15px; flex-shrink: 0; stroke: none !important; }
.foot-col a .ic-discord { width: 13px; height: 13px; vertical-align: -2px; margin-right: 6px; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: #FFFFFF; color: #000000; font-weight: 600;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-primary:hover { background: #E0E0E0; box-shadow: 0 8px 30px rgba(255,255,255,0.25); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--text-2); }
/* ReactBits MagneticButton equivalent */
.magnetic { transition: all .2s var(--ease), transform .5s cubic-bezier(.22,1,.36,1); will-change: transform; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn.disabled, .btn:disabled { opacity: .4; pointer-events: none; }
.btn svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }

/* --- HERO --- */
.hero { padding: 140px 0 100px; position: relative; text-align: center; z-index: 1; }
.hero.left { text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  border: 1px solid var(--border-strong); border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-2);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px;
  text-transform: uppercase;
  position: relative; overflow: hidden;
}
/* sweep highlight across the pill */
.eyebrow::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: translateX(-120%);
  animation: eyebrow-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes eyebrow-sweep {
  0% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(320%); }
}
/* pulsing live dot */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FFFFFF; box-shadow: 0 0 10px rgba(255,255,255,0.8);
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.55; }
}
/* mini equalizer bars */
.eb-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; }
.eb-eq i {
  width: 2px; border-radius: 1px; background: #ffffff;
  transform-origin: bottom; animation: eq-bounce 1s ease-in-out infinite;
}
.eb-eq i:nth-child(1) { height: 5px; animation-delay: 0s; }
.eb-eq i:nth-child(2) { height: 10px; animation-delay: .15s; }
.eb-eq i:nth-child(3) { height: 7px; animation-delay: .3s; }
.eb-eq i:nth-child(4) { height: 10px; animation-delay: .45s; }
@keyframes eq-bounce { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }
.eb-status { display: inline-flex; align-items: center; gap: 10px; }

.hero h1 {
  font-size: clamp(44px, 7vw, 80px); line-height: 1.05;
  letter-spacing: -0.04em; font-weight: 600; margin-bottom: 28px;
  max-width: 900px; margin-left: auto; margin-right: auto;
  background: linear-gradient(110deg, #fff 25%, #7a7a7a 45%, #fff 65%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: rise .9s cubic-bezier(.22,1,.36,1) forwards, shimmer 7s linear infinite;
}
.hero.r4l-left h1 { margin-left: 0; }
.hero h1.hero-r4l {
  background: none;
  -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: initial; color: inherit;
  animation: rise .9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-r4l .hl {
  display: inline-block;
  background: linear-gradient(110deg, #fff 25%, #7a7a7a 45%, #fff 65%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  opacity: 0;
  animation: hl-pop .8s cubic-bezier(.22,1,.36,1) forwards, shimmer 7s linear infinite;
  animation-delay: calc(.15s + var(--i) * .12s);
}
@keyframes hl-pop { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { to { background-position: -220% center; } }
.hero .lede {
  font-size: 20px; color: var(--text-2); max-width: 600px; margin: 0 auto 40px;
  font-weight: 300;
}
.hero.left .lede { margin-left: 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero.left .hero-cta { justify-content: flex-start; }

/* --- SECTIONS --- */
section.block { padding: 120px 0; position: relative; z-index: 1; }
.sec-head { margin-bottom: 64px; max-width: 720px; }
.sec-label { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.sec-head h2 {
  font-size: clamp(32px, 4.5vw, 48px); line-height: 1.1;
  letter-spacing: -0.035em; font-weight: 600;
}
.sec-head p { color: var(--text-2); margin-top: 20px; font-size: 18px; font-weight: 300; }

/* --- TRIAL TUTORIAL --- */
.tutorial { padding: 40px; border-radius: var(--r-lg); }
.tutorial-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
}
.tutorial-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; letter-spacing: -0.03em; margin-top: 8px; }
.tutorial-steps {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.t-step {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 22px; background: rgba(255,255,255,0.025);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  display: flex; gap: 18px; align-items: flex-start; text-align: left;
}
.t-step:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.t-step .num {
  flex-shrink: 0; width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; color: var(--text); font-weight: 600;
  letter-spacing: .04em;
}
.t-step h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.3; }
.t-step p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; font-weight: 300; margin: 0; }
.t-step > div:last-child { flex: 1; min-width: 0; }
.t-step strong { color: var(--text); font-weight: 500; }
.tutorial-foot {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-2);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.link-discord { color: var(--text); border-bottom: 1px solid var(--border-strong); }
@media (max-width: 900px) { .tutorial-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tutorial-steps { grid-template-columns: 1fr; } .tutorial { padding: 28px 20px; } }

/* --- FAQ ACCORDION (reactbits / motion-primitives style) --- */
.faq-list {
  max-width: 720px; margin: 0 auto;
  counter-reset: faq;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:hover { border-bottom-color: var(--border-strong); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 20px;
  padding: 26px 4px; background: none; border: 0; appearance: none; -webkit-appearance: none;
  cursor: pointer; font: inherit; color: var(--text); text-align: left;
}
.faq-idx {
  flex: none; width: 28px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
  letter-spacing: .08em; transition: color .3s var(--ease);
}
.faq-idx::before { counter-increment: faq; content: counter(faq, decimal-leading-zero); }
.faq-t {
  flex: 1; font-size: 16px; font-weight: 500; letter-spacing: -.01em;
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.faq-q:hover .faq-t { transform: translateX(5px); color: #fff; }
.faq-q:hover .faq-idx { color: var(--text); }
.faq-ico {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--border-strong); position: relative;
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .3s var(--ease);
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); background: var(--text-2);
  transition: background .3s var(--ease);
}
.faq-ico::before { width: 9px; height: 1.5px; }
.faq-ico::after { width: 1.5px; height: 9px; }
.faq-item.is-open .faq-ico { transform: rotate(45deg); border-color: var(--text); }
.faq-item.is-open .faq-ico::before, .faq-item.is-open .faq-ico::after { background: #fff; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.22,1,.36,1);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 48px 28px 52px;
  color: var(--text-2); font-size: 14.5px; font-weight: 300; line-height: 1.75;
}
.faq-a-inner p strong { color: var(--text); font-weight: 600; }
@media (max-width: 600px) {
  .faq-q { padding: 20px 2px; gap: 14px; }
  .faq-a-inner p { padding: 0 38px 24px 44px; }
}

/* --- GLASS CARD BASE --- */
.glass-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.05), 0 20px 40px -20px rgba(0,0,0,0.5);
  transition: all .3s var(--ease);
}
.glass-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
}

/* --- FEATURE GRID --- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat { padding: 32px; border-radius: var(--r-lg); }
.feat .ic {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05); display: grid; place-items: center;
  color: var(--text); margin-bottom: 24px; border: 1px solid var(--border);
}
.feat h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.feat p { color: var(--text-2); font-size: 14px; line-height: 1.6; font-weight: 300; }

/* --- STATS STRIP --- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 48px; border-radius: var(--r-lg);
}
.stat .n { font-size: 42px; font-weight: 600; letter-spacing: -0.04em; color: var(--text); }
.stat .c { font-size: 13px; color: var(--text-3); margin-top: 6px; font-family: var(--font-mono); text-transform: uppercase; }

/* --- TOUR / MODULES --- */
.tour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tour-card { border-radius: var(--r-lg); position: relative; overflow: hidden; }
.tour-content { padding: 32px; }
.tour-card h3 { font-size: 24px; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; font-weight: 600; }
.tour-card p { color: var(--text-2); font-size: 15px; font-weight: 300; }

/* Module preview media */
.tour-media {
  height: 240px; overflow: hidden; position: relative;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--border);
  display: grid; place-items: center;
}
.tour-media img, .tour-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-media .lazy-video { background: #000; }

/* Depth carousel - ReactBits-style stacked previews (transform/opacity only) */
.d-caro { height: 240px; overflow: visible; }
.d-stage { position: absolute; inset: 0; }
.d-slide {
  position: absolute; inset: 0;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  transition: transform .55s var(--ease), opacity .45s var(--ease), box-shadow .55s var(--ease);
  will-change: transform, opacity;
}
.d-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.d-slide.s-active { transform: translateX(0) scale(1); opacity: 1; z-index: 3; box-shadow: 0 14px 48px rgba(0,0,0,0.65), 0 0 0 1px var(--border-strong); }
.d-slide.s-left  { transform: translateX(-26%) scale(0.82); opacity: 0.32; z-index: 2; }
.d-slide.s-right { transform: translateX(26%) scale(0.82); opacity: 0.32; z-index: 2; }
.d-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: #fff; font-size: 15px; line-height: 1;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .2s var(--ease), transform .2s var(--ease);
  z-index: 5;
}
.d-arrow:hover { background: rgba(255,255,255,0.14); transform: translateY(-50%) scale(1.08); }
.d-prev { left: -14px; } .d-next { right: -14px; }
.d-dots { position: absolute; bottom: -26px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 5; }
.d-dot {
  width: 22px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: background .25s var(--ease), width .25s var(--ease);
}
.d-dot.s-active { background: #fff; width: 30px; }
@media (max-width: 560px) {
  .d-prev { left: -6px; } .d-next { right: -6px; }
  .d-slide.s-left { transform: translateX(-34%) scale(0.8); }
  .d-slide.s-right { transform: translateX(34%) scale(0.8); }
}

/* --- PRICING --- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.plan { padding: 32px; display: flex; flex-direction: column; border-radius: var(--r-lg); }
.plan.featured {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 40px rgba(255,255,255,0.05), inset 0 1px 0 0 rgba(255,255,255,0.1);
  animation: featured-glow 4s ease-in-out infinite;
}
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(255,255,255,0.05), inset 0 1px 0 0 rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 64px rgba(160,130,255,0.16), inset 0 1px 0 0 rgba(255,255,255,0.16); }
}
.badge-best { display: inline-block; font-family: var(--font-mono); font-size: 10px; color: #000; background: #FFF; padding: 2px 8px; border-radius: 4px; margin-bottom: 12px; width: fit-content; text-transform: uppercase; font-weight: 600; }
.plan .tier { font-size: 14px; color: var(--text-2); font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.plan .price { font-size: 36px; font-weight: 600; letter-spacing: -0.035em; margin-bottom: 4px; }
.plan .price small { font-size: 16px; color: var(--text-3); font-weight: 400; }
.plan .per { font-size: 13px; color: var(--text-3); margin-bottom: 28px; font-family: var(--font-mono); }
.plan ul { margin-bottom: 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.plan li { font-size: 14px; color: var(--text-2); display: flex; gap: 10px; align-items: center; font-weight: 300; }
.plan li svg { width: 14px; height: 14px; stroke: var(--text); flex-shrink: 0; }
.plan .btn { width: 100%; }
.plan-note { text-align: center; color: var(--text-3); font-size: 12px; margin-top: 32px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }

/* --- GETTING STARTED --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 32px; border-radius: var(--r-lg); }
.step-card .num { font-size: 14px; font-family: var(--font-mono); color: var(--text-3); margin-bottom: 16px; }
.step-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.step-card p { color: var(--text-2); font-size: 15px; font-weight: 300; }

/* --- CTA BAND --- */
.cta-band {
  margin-top: 100px; padding: 80px 48px; text-align: center;
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  border: 1px solid var(--border-strong);
}
.cta-band::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(32px, 4vw, 42px); letter-spacing: -0.03em; margin-bottom: 16px; font-weight: 600; position: relative; }
.cta-band p { color: var(--text-2); margin-bottom: 32px; font-size: 18px; font-weight: 300; position: relative; }

/* --- FORMS --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; color: var(--text-2); font-weight: 500; margin-bottom: 8px; }
.form-group input {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text); font: inherit; font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-group input:focus { outline: none; border-color: var(--text); background: rgba(255,255,255,0.06); }
.form-group input::placeholder { color: var(--text-3); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 6px; font-family: var(--font-mono); }
.form-hint a { color: var(--text-2); text-decoration: underline; }
.form-hint a:hover { color: var(--text); }

/* --- STATUS / INFO ROWS --- */
.flex { display: flex; }
.info-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.info-row span.k { color: var(--muted); }
.info-row strong { font-weight: 600; }
.info-row code { font-size: 11px; word-break: break-all; }

/* --- STATUS BADGES --- */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.05);
  color: var(--text-2);
}
.status.active { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: #FFFFFF; }
.status.pending { color: var(--text-2); }
.status.revoked { background: rgba(255,77,77,0.1); border-color: rgba(255,77,77,0.35); color: #FF4D4D; }
.status.big { font-size: 13px; padding: 4px 12px; }

/* --- KEY BOX --- */
.key-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 15px; letter-spacing: 1px; word-break: break-all;
  color: #fff; margin: 12px 0;
}

/* --- SPINNER --- */
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.15); border-top-color: #FFF;
  border-radius: 50%; animation: spin 1s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- MISC --- */
.hide { display: none; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.text-muted { color: var(--text-2); }
.text-dim { color: var(--text-3); }
.text-err { color: var(--err); }
.text-ok { color: #FFFFFF; }
.lead { font-size: 18px; font-weight: 300; color: var(--text-2); }

/* --- FOOTER --- */
footer { padding: 64px 0 32px; margin-top: 0; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand p { color: var(--text-3); font-size: 14px; max-width: 280px; margin-top: 16px; font-weight: 300; }
.foot-col h5 { font-size: 12px; color: var(--text-3); font-weight: 500; margin-bottom: 20px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; }
.foot-col a { display: block; color: var(--text-2); font-size: 14px; padding: 6px 0; transition: color .2s; font-weight: 300; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-3); }

/* --- ANIMATIONS --- */
/* Hidden states only apply when JS is confirmed active (html.js), so content
   is always visible if anim.js fails to load. */
html.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js [data-reveal="left"]  { transform: translateX(-36px); }
html.js [data-reveal="right"] { transform: translateX(36px); }
html.js [data-reveal="zoom"]  { transform: scale(.94); }
html.js [data-reveal="fade"]  { transform: none; }
html.js [data-reveal].in { opacity: 1; transform: none; }

/* Hero entrance (motion-primitives style mount-in) */
.rise { opacity: 0; animation: rise .9s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ReactBits SpotlightCard equivalent - soft glow following the cursor */
.spotlight { position: relative; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08), transparent 65%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.spotlight:hover::before { opacity: 1; }

/* Card hover lift */
.feat:hover, .tour-card:hover, .plan:hover, .step-card:hover { transform: translateY(-4px); }

/* ReactBits TiltedCard equivalent - 3D tilt (JS sets inline transform) */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* Smooth anchor landing under the sticky nav */
section[id], div[id] { scroll-margin-top: 84px; }

/* --- DEVELOPER INFINITE SLIDER (motion-primitives InfiniteSlider equivalent) --- */
.dev-strip { margin-top: 56px; position: relative; }
.dev-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px;
}
.dev-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-static { animation: none; flex-wrap: wrap; justify-content: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-group { display: flex; align-items: center; gap: 14px; padding-right: 14px; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px; white-space: nowrap;
  border: 1px solid var(--border-strong); background: rgba(255,255,255,0.03);
  font-family: var(--font-mono); font-size: 13px; color: var(--text-2);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.marquee-item::before {
  content: ""; width: 12px; height: 12px; flex-shrink: 0; opacity: .85;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.marquee-item:hover { color: var(--text); border-color: var(--text-2); background: rgba(255,255,255,0.07); transform: translateY(-1px); }

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal], .rise, .hero-r4l .hl { opacity: 1; transform: none; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .aurora i { animation: none; }
  .cursor-glow { display: none; }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .tour-grid, .price-grid, .stats, .steps-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tour-grid, .price-grid, .stats, .steps-grid, .feat-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 80px; }
  section.block { padding: 80px 0; }
  .nav-cta .btn-ghost { display: none; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}
