@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Motion tokens — 3 tiers ────────────────────────────────
   Use these variables for any transition/animation duration.
   --motion-fast    : hover, focus, tooltips, micro-interactions
   --motion-medium  : reveals, card transitions, accordions, dropdowns
   --motion-slow    : hero choreography, large parallax, modal entrances
   --ease-spring    : iOS-style overshoot — use for reveals
   --ease-standard  : linear-ish — use for hovers
   ─────────────────────────────────────────────────────────── */
/* Motion + easing tokens consolidated into the main :root block below */

/* ── Smooth scroll ─────────────────────────────────────────
   Anchor links (#section) glide instead of jumping.
   Respect user accessibility preference. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for fixed nav so anchors don't hide under header */
}

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

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--accent, #00D4FF);
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Screen-reader only labels */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Colors */
  --bg-deep: #010308;
  --bg-deep-blue: #030A1A;
  --accent: #00D4FF;
  --accent-purple: #8A2BE2;
  --text-main: #FFFFFF;
  --text-muted: #8B9BB4;
  --text-dark: #6B7C93;

  /* Font stacks — system fonts render instantly while web fonts load (FOUT minimised) */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --gap-section: 80px;
  --gap-head-to-sub: var(--space-3);
  --gap-sub-to-cards: var(--space-5);
  --gap-cards: var(--space-3);

  /* Card system */
  --card-radius: 20px;
  --card-padding: var(--space-4);

  /* Motion + easing */
  --motion-fast:   180ms;
  --motion-medium: 380ms;
  --motion-slow:   620ms;
  --ease-standard: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Layer 1: Base Dark Gradient */
body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deep-blue) 100%);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

#cinematicWebgl {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.88;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 18%, rgba(0, 212, 255, 0.12), transparent 34%),
    radial-gradient(circle at 82% 48%, rgba(255,255,255,0.055), transparent 26%),
    linear-gradient(180deg, rgba(1,3,8,0.15), rgba(1,3,8,0.82) 72%);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-title {
  position: relative;
}

.cinematic-device-stage {
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.cinematic-device-stage::before {
  content: "";
  position: absolute;
  width: min(62vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 212, 255, 0.28), rgba(0, 212, 255, 0.08) 34%, transparent 66%);
  filter: blur(54px);
  z-index: 0;
  pointer-events: none;
  animation: deviceAura 8s ease-in-out infinite;
}

@keyframes deviceAura {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.05); opacity: 0.95; }
}

.cinematic-device {
  width: min(72vw, 520px);
  max-height: 720px;
  object-fit: contain;
  transform: scale(1.08) translateY(-8px) rotateY(-8deg) rotateX(4deg);
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 80px 120px rgba(0,0,0,0.82))
    drop-shadow(0 0 42px rgba(0, 212, 255, 0.28));
  will-change: transform;
}

.founder-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.42);
  padding: 18px 22px;
  border-radius: 12px;
  color: #FFF;
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.founder-input:focus {
  border-color: rgba(0,212,255,0.48);
  background: rgba(0, 18, 32, 0.48);
  box-shadow: 0 0 0 4px rgba(0,212,255,0.06);
}

/* Custom region select */
.custom-select-wrapper {
  position: relative;
  margin-bottom: 14px;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0;
  user-select: none;
}

.custom-select-trigger:focus-visible {
  border-color: rgba(0,212,255,0.48);
  box-shadow: 0 0 0 4px rgba(0,212,255,0.06);
  outline: none;
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,18,32,0.48);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.custom-select-wrapper.open #regionArrow {
  transform: rotate(180deg);
  opacity: 0.7;
}

.custom-select-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(5,14,24,0.97);
  border: 1px solid rgba(0,212,255,0.35);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  z-index: 100;
  backdrop-filter: blur(24px);
}

.custom-select-wrapper.open .custom-select-dropdown {
  max-height: 320px;
  opacity: 1;
  pointer-events: all;
}

.custom-select-option {
  padding: 14px 22px;
  font-size: 15px;
  color: rgba(212,221,235,0.75);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: rgba(0,212,255,0.07);
  color: #fff;
}

.custom-select-option.selected {
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}

.custom-select-option.selected::after {
  content: '✓';
  float: right;
  font-size: 13px;
  opacity: 0.7;
}


.referral-notice {
  margin: -2px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(0,212,255,0.16);
  border-radius: 12px;
  background: rgba(0,212,255,0.055);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.referral-notice strong {
  display: inline-flex;
  margin-left: 6px;
  color: var(--accent);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

.founder-success {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,212,255,0.14), transparent 45%),
    rgba(0,0,0,0.44);
  text-align: left;
  box-shadow: 0 24px 80px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-success.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.founder-success .success-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.founder-success strong {
  display: block;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}

.founder-success p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #ff6b7a;
}

.footer-link:hover {
  color: #fff !important;
}

.referral-share {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.referral-share span {
  display: block;
  margin-bottom: 10px;
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
}

.referral-share div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.referral-share input {
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(0,0,0,0.42);
  color: var(--text-muted);
  padding: 12px 13px;
  font-size: 12px;
}

.referral-share button {
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 10px;
  background: rgba(0,212,255,0.12);
  color: var(--accent);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.referral-share small {
  display: block;
  margin-top: 10px;
  color: rgba(139, 155, 180, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.demo-card,
.card,
.rt-card,
.hub-flow-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.demo-card:hover,
.card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(0,212,255,0.22) !important;
}

section .card,
section .demo-card,
section .rt-card,
section .hub-flow-card,
section .section-tag,
section .section-title,
section .section-subtitle {
  opacity: 1;
}

/* Layer 3: Tech Grid Overlay */
.bg-tech-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -2;
  pointer-events: none;
}

/* Layer 2 & 4: Radial Glows and Animated Waves */
.bg-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.anim-wave-1 {
  position: absolute;
  top: 10%; left: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  filter: blur(150px);
  animation: floatWave1 20s ease-in-out infinite;
}

.anim-wave-2 {
  position: absolute;
  top: 40%; right: -20%;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(138,43,226,0.03) 0%, transparent 60%);
  filter: blur(150px);
  animation: floatWave2 25s ease-in-out infinite reverse;
}

@keyframes floatWave1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.1); }
}
@keyframes floatWave2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-150px, -100px) scale(1.2); }
}

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

@media (max-width: 900px) {
  #zureon-hub .fade-up[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  #zureon-hub .fade-up[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── HUB SHOWCASE ─────────────────────────────────────────── */
.hub-showcase {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
}

.hub-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 110%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 65% 50%, rgba(0, 212, 255, 0.16) 0%, transparent 38%),
    radial-gradient(circle at 35% 60%, rgba(138, 43, 226, 0.10) 0%, transparent 46%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.hub-copy {
  text-align: left;
}

.hub-copy .section-subtitle {
  margin: 0;
  max-width: 680px;
}

.hub-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.hub-pill-row span {
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: rgba(0, 212, 255, 0.055);
  color: rgba(255,255,255,0.88);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
}

.hub-flow {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.hub-flow-card {
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border-radius: var(--card-radius);
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.hub-flow-card:hover {
  border-color: rgba(0,212,255,0.28);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,212,255,0.08);
}

.hub-flow-card.hub-flow-active {
  border-color: rgba(0,212,255,0.45);
  background: linear-gradient(135deg, rgba(0,212,255,0.09), rgba(255,255,255,0.03));
  box-shadow: 0 0 0 1px rgba(0,212,255,0.2), 0 8px 32px rgba(0,212,255,0.1);
}

.hub-flow-card strong {
  display: block;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.hub-flow-card.hub-flow-active strong {
  color: var(--accent);
}

.hub-flow-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.hub-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hub-demo-label {
  color: rgba(0, 242, 234, 0.9);
  border: 1px solid rgba(0, 242, 234, 0.22);
  background: rgba(0, 242, 234, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-demo-device-wrapper {
  position: relative;
  width: 360px;
  max-width: 100%;
  aspect-ratio: 393 / 852;
  transform: scale(0.76);
  transform-origin: center center;
  margin: -96px 0 -86px;
  filter: drop-shadow(0 60px 110px rgba(0,0,0,0.72)) drop-shadow(0 0 54px rgba(0,212,255,0.18));
}

.hub-demo-device-frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 10px solid #141414;
  border-radius: 40px;
  background: #000;
  box-shadow:
    0 0 0 2px #222,
    0 0 0 3px #0c0c0c,
    0 0 50px rgba(0, 136, 255, 0.15),
    inset 0 0 0 2px #000;
}

.hub-demo-device-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 30px;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
  pointer-events: none;
}

.hub-demo-punch-hole {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 5;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  border: 1px solid #111;
  border-radius: 50%;
  background-color: #000;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.1), 0 0 2px rgba(0,0,0,0.8);
}

.hub-demo-punch-hole::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0a0a0f;
}

.hub-demo-device-frame iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 0;
  border-radius: 30px;
  background: #000;
}

.hub-demo-device-frame iframe.loading {
  opacity: 0;
}

.hub-demo-loader {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: rgba(10,10,12,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.hub-demo-loader.active {
  opacity: 1;
  pointer-events: all;
}

.loader-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0,212,255,0.2);
  border-top-color: rgba(0,212,255,0.9);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.hub-demo-link {
  display: inline-flex;
  margin-top: 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.hub-demo-link:hover {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,212,255,0.18);
}

/* Unused legacy block — kept for reference */
.demo-experience {
  position: relative;
  padding: 90px 0 100px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto;
}

.demo-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  backdrop-filter: blur(20px);
}

.demo-card strong {
  display: block;
  margin: 22px 0 10px;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.demo-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hub-phone {
  width: min(100%, 390px);
  min-height: 640px;
  border-radius: 42px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015)),
    #05070D;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 0 70px rgba(0, 212, 255, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.hub-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.hub-phone-top,
.hub-bottom-tabs,
.hub-panel > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hub-phone-top {
  margin: 22px 0 20px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 14px;
}

.hub-phone-top i {
  width: 20px;
  height: 20px;
}

.hub-balance-card,
.hub-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  border-radius: 22px;
  padding: 20px;
  backdrop-filter: blur(20px);
}

.hub-balance-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(0,212,255,0.18), transparent 35%),
    rgba(255,255,255,0.05);
}

.hub-balance-card span {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hub-balance-card strong {
  display: block;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 34px;
  margin: 10px 0;
}

.hub-balance-card p,
.hub-panel p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.hub-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.hub-actions div {
  min-height: 82px;
  border-radius: 18px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.14);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
}

.hub-actions i {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hub-panel {
  margin-top: 12px;
}

.hub-panel strong {
  color: #FFF;
  font-size: 14px;
}

.hub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0,212,255,0.8);
  margin-right: 8px;
}

.hub-dot.purple {
  background: var(--accent-purple);
  box-shadow: 0 0 14px rgba(138,43,226,0.8);
}

.hub-explore-panel {
  border-color: rgba(138,43,226,0.18);
}

.hub-bottom-tabs {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hub-bottom-tabs span:first-child {
  color: var(--accent);
}

@media (max-width: 960px) {
  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left > div:last-child {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cinematic-device-stage {
    min-height: 440px;
  }

  .hero-phone {
    height: min(52vh, 460px);
  }

  .hub-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hub-demo-device-wrapper {
    width: min(100%, 360px);
    transform: none;
    margin: 0;
  }

  .hub-copy {
    text-align: center;
  }

  .hub-copy .section-subtitle {
    margin: 0 auto;
  }

  .hub-pill-row {
    justify-content: center;
  }

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

@media (max-width: 520px) {
  .hub-showcase {
    padding: 88px 0;
  }

  .hub-phone {
    min-height: auto;
    border-radius: 32px;
    padding: 18px;
  }

  .hub-real-device {
    width: min(100%, 330px);
  }

  .hub-demo-device-wrapper {
    width: min(100%, 300px);
  }

  .hub-balance-card strong {
    font-size: 28px;
  }
}

/* CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* TYPOGRAPHY SYSTEM */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-center { text-align: center; }

.section-head {
  margin-bottom: var(--gap-sub-to-cards); 
}

.section-title {
  font-size: 40px;
  margin-bottom: var(--gap-head-to-sub);
  background: linear-gradient(180deg, #FFFFFF 0%, #A0B0C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.section-tag {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* HEADER */
.header {
  position: fixed;
  top: 0; width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(1, 3, 8, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, #FFFFFF 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}
.header-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* inherit gradient text effect from .header-logo */
  color: inherit;
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.header-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  /* reset gradient text clipping so the image renders normally */
  -webkit-text-fill-color: initial;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.35));
}
@media (max-width: 720px) {
  .header-logo-mark { width: 32px; height: 32px; }
}

.header-nav { display: flex; gap: 40px; }
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: 0.4s ease;
}
.header-nav a:hover { color: #FFF; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2), inset 0 0 8px rgba(255,255,255,0.4);
}
.btn-primary:hover {
  background: #FFF;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 10px 40px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: #FFF;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-ghost:hover {
  color: #FFF;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px) scale(1.02);
}

/* SECTIONS ALIGNMENT SYSTEM */
section {
  padding: var(--gap-section) 0;
  position: relative;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding-top: 112px; 
  padding-bottom: 56px;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 38%);
  align-items: center;
  gap: 4%;
}

.hero-left {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 5;
}

.hero-left .btn,
.header-right .btn {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

/* Mobile menu toggle — hidden on desktop */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}


.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 100px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

@keyframes titleShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title {
  font-size: clamp(76px, 10vw, 132px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 0.9;
  background: linear-gradient(90deg, #FFFFFF 0%, #A6F6FF 15%, #00D4FF 30%, #FFFFFF 50%, #A6F6FF 65%, #00D4FF 80%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 6s linear infinite;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.3; 
  margin-bottom: 16px; 
  color: #FFF;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.price-panel {
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  padding: 16px 24px;
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 32px; 
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: inset 0 2px 20px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.3), 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.price-panel:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 2px 30px rgba(255,255,255,0.2), 0 50px 100px rgba(0,0,0,0.9), 0 0 55px rgba(0, 212, 255, 0.4);
}
.price-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}

.hero-price {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* 360 Glow encircling the device completely */
.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(138, 43, 226, 0.1) 40%, transparent 60%);
  filter: blur(120px);
  z-index: 10;
  pointer-events: none;
  border-radius: 50%;
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-phone {
  height: min(62vh, 540px);
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 30;
  animation: levitate 12s ease-in-out infinite;
}

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

/* WEB3 SCI-FI PANEL PROCEDURAL BACKGROUND */
.web3-sci-fi-panel {
  position: relative;
  padding: 120px 0 100px;
  background-color: transparent;
}

/* ZUREON LEARN PANEL */
.learn-panel {
  position: relative;
  padding: 100px 0 80px; 
  background-color: transparent;
}

/* Glass wrapper for readable text on bright background zones */
.learn-glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  border-radius: 24px !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ================================
   100% UNIFIED CARD SYSTEM (STRICT)
   ================================ */

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 15px 40px rgba(0, 0, 0, 0.4);
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.card-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #FFFFFF;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.card-text {
  font-size: 15px;
  color: rgba(139, 155, 180, 0.85);
  font-weight: 400;
}

/* Clean Icon Box */
.icon-box {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.03);
}

.icon-box svg {
  width: 56px !important;
  height: 56px !important;
  stroke-width: 1.5;
  color: #F8F9FA;
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.15));
}

.card:hover .icon-box {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.4);
  transform: translateY(-8px) scale(1.1);
}
.card:hover .icon-box svg {
  color: var(--accent);
  stroke-width: 2;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
  transform: scale(1.15);
}

/* UI mock component inside Cards */
.ui-mockup {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  margin-bottom: 32px;
}
.ui-mockup-inner {
  width: 80%; height: 60%;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
  border-left: 2px solid rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.2);
  box-shadow: -20px 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  backdrop-filter: blur(12px);
  transform: rotateX(15deg) rotateZ(-10deg) rotateY(15deg);
  transform-style: preserve-3d;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .ui-mockup-inner {
  transform: rotateX(5deg) rotateZ(-5deg) rotateY(10deg) scale(1.05);
  box-shadow: -30px 30px 60px rgba(0,0,0,0.7), inset 0 0 30px rgba(0, 212, 255, 0.15);
  border-left-color: var(--accent);
}

/* ================================
   GRIDS SYSTEM
   ================================ */
.grid-mix {
  display: grid;
  gap: var(--gap-cards);
}
.grid-features { grid-template-columns: repeat(4, 1fr); }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.row-span-2 { grid-row: span 2; }

/* Founder Glass Panel */
.founder-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--card-radius); 
  padding: var(--card-padding) 64px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.03), 0 20px 40px rgba(0,0,0,0.5);
  max-width: 900px;
  margin: 0 auto;
}

.typo-block {
  display: flex;
  justify-content: center;
  gap: 120px;
  align-items: center;
}
.typo-item { text-align: center; }
.typo-value {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}
.typo-label {
  font-size: 16px;
  color: var(--text-muted);
}

/* Standalone Visual Box - Case */
.showcase-box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto var(--gap-cards) auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 70px rgba(0, 212, 255, 0.3); /* Integrated heavily with strong glow */
  border: 1px solid rgba(255,255,255,0.1);
  transform: perspective(1000px) rotateX(2deg);
  transition: 0.6s;
}
.showcase-box:before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.showcase-box:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 50px 120px rgba(0,0,0,0.9), 0 0 100px rgba(0, 212, 255, 0.5);
}
.showcase-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Roadmap Horizontal PERFECT ALIGNMENT */
.roadmap-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
/* Edge fade — .roadmap-grid scrolls horizontally with its scrollbar hidden
   (see ::-webkit-scrollbar rule below); without this, desktop mouse users
   have no visual cue that later roadmap cards exist off-screen. */
.roadmap-wrapper {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
}

/* Line that goes exactly through center */
.roadmap-line {
  position: absolute;
  top: 52px; left: 0; right: 0;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2); 
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, var(--accent) 30%, var(--accent-purple) 70%, rgba(0, 212, 255, 0.2) 100%);
  background-size: 200% 100%;
  animation: moveGradientLine 6s linear infinite;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 212, 255, 0.2);
  z-index: 1;
  border-radius: 8px;
}

@keyframes moveGradientLine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.roadmap-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  padding: 40px 20px 80px 20px;
}
.roadmap-grid::-webkit-scrollbar { display: none; }

.horizontal-rt-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* The Dot stays directly on the line */
.dot-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px; /* Gap to text underneath */
}

.dot-center {
  width: 20px; height: 20px;
  background: var(--bg-deep-blue); /* Solid dark, prevents line from showing through */
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Soft premium shadow */
}
.horizontal-rt-item.active .dot-center {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}
.horizontal-rt-item.current .dot-center {
  width: 26px; height: 26px;
  background: #FFF;
  border: 4px solid var(--accent);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6), 0 0 10px #FFF;
  transform: scale(1.05); /* organic breathe bump */
}

.rt-card {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--card-radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 15px 40px rgba(0, 0, 0, 0.4);
  padding: 20px 12px;
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.rt-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.15);
  transform: translateY(-8px) scale(1.03);
  z-index: 10;
}
.horizontal-rt-item.current .rt-card {
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.15), 0 0 40px rgba(0, 212, 255, 0.2);
  transform: scale(1.02);
}

.rt-name {
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 6px;
}
.rt-date {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 8px;
}
.rt-desc {
  font-size: 14px;
  color: var(--text-muted);
}


/* ================================================================
   ZUREON — Scroll Reveal System
   Class-based, no inline style overrides, no chaos.
   .z-reveal  = hidden initial state
   .z-visible = animated final state (added by JS on intersection)
   ================================================================ */

/* Initial hidden state — simple, clean */
.z-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity  0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  /* transition-delay set inline by JS per sibling index */
}

/* Final revealed state */
.z-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .z-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* .card and .card:hover consolidated into the motion-token block below (was duplicated at 1842/1848 — see "Cards: lift on hover") */

/* Roadmap items hover */
.roadmap-item {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.roadmap-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.07);
}

/* Hub device hover */
.hub-device {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hub-device:hover {
  transform: translateY(-4px);
}

/* Icon box lift on card hover */
.icon-box {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .icon-box {
  transform: translateY(-3px);
}

/* Hide lang toggle */
#langToggle, #langSwitch {
  display: none !important;
}

/* ================================================================
   ZUREON — Scroll Reveal
   .fade-up  = initial hidden state (set on all animatable elements)
   .visible  = revealed (added by IntersectionObserver on scroll)
   Hero elements get .visible immediately via HTML class.
   ================================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity   var(--motion-medium) var(--ease-spring),
    transform var(--motion-medium) var(--ease-spring);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings automatically via nth-child */
.fade-up:nth-child(2) { transition-delay: 50ms; }
.fade-up:nth-child(3) { transition-delay: 100ms; }
.fade-up:nth-child(4) { transition-delay: 150ms; }
.fade-up:nth-child(5) { transition-delay: 200ms; }

/* Cards: lift on hover */
.card {
  transition:
    transform    var(--motion-medium) var(--ease-spring),
    box-shadow   var(--motion-medium) var(--ease-standard),
    border-color var(--motion-medium) var(--ease-standard),
    opacity      var(--motion-slow)   var(--ease-spring);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 212, 255, 0.08),
    0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Roadmap items hover */
.rt-card {
  transition:
    transform  var(--motion-medium) var(--ease-spring),
    box-shadow var(--motion-medium) var(--ease-standard);
}
.rt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.07);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ── Spec cards — premium hardware section ── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.spec-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
}
.spec-card:hover {
  border-color: rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.03);
}
.spec-card .icon-box {
  flex-shrink: 0;
  margin: 0 !important;
}
.spec-body { flex: 1; }
.spec-title {
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
  margin: 0 0 5px;
  line-height: 1.3;
}
.spec-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.spec-disclaimer {
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.7;
  margin-top: 8px;
}

/* Specs responsive */
@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .spec-card { padding: 18px 16px; gap: 12px; }
  .spec-icon { width: 36px; height: 36px; font-size: 18px; }
  .spec-title { font-size: 14px; }
  .spec-text { font-size: 12.5px; }
}


/* ════════════════════════════════════════════════════════════════
   ZUREON — Release CSS additions (How It Works, Comparison,
   Hub-flow icon layout, icon-box scale)
   ════════════════════════════════════════════════════════════════ */

/* ── Icon-box scale-down globally ── */
.icon-box {
  width: 64px !important;
  height: 64px !important;
  border-radius: 16px !important;
}
.icon-box svg { width: 32px !important; height: 32px !important; }

/* ── How It Works — responsive step cards ── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.hiw-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  transition: border-color 0.3s;
}
.hiw-step:hover { border-color: rgba(0,212,255,0.2); }
.hiw-step--active { border-color: rgba(0,212,255,0.35); background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02)); }
.hiw-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-deep-blue);
  border: 2px solid rgba(0,212,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: #FFF; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.hiw-num--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 16px rgba(0,212,255,0.4);
}
.hiw-title {
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
}
.hiw-text {
  color: rgba(139,155,180,0.85);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* ── Comparison section ── */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.comp-col {
  border-radius: 20px;
  padding: 32px 28px;
}
.comp-col--them {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}
.comp-col--us {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,212,255,0.02));
  border: 1px solid rgba(0,212,255,0.2);
}
.comp-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  color: rgba(139,155,180,0.9);
}
.comp-title--us { color: #FFF; }
.comp-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.comp-item {
  display: flex; gap: 12px; align-items: center;
  font-size: 14.5px; line-height: 1.5;
}
.comp-item i { width: 18px; height: 18px; flex-shrink: 0; }
.comp-item--no { color: rgba(139,155,180,0.8); }
.comp-item--no i { color: rgba(255,94,94,0.8); }
.comp-item--yes { color: #FFF; font-weight: 500; }
.comp-item--yes i { color: var(--accent); }

/* ── Hub-flow icon layout ── */
.hub-flow-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 14px !important;
}
.hub-flow-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.hub-flow-icon i { width: 20px; height: 20px; }
.hub-flow-body { flex: 1; }
.hub-flow-card strong { display: block; margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — HIW + Comparison + Hub-flow
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .comp-col { padding: 28px 22px; }
  .comp-title { font-size: 16px; margin-bottom: 16px; }
  .comp-item { font-size: 14px; gap: 10px; }
}

@media (max-width: 768px) {
  .icon-box { width: 48px !important; height: 48px !important; border-radius: 12px !important; }
  .icon-box svg { width: 26px !important; height: 26px !important; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hiw-step { padding: 20px 18px; gap: 12px; }
  .hiw-num { width: 36px; height: 36px; font-size: 14px; }
  .hiw-title { font-size: 14px; margin-bottom: 4px; }
  .hiw-text { font-size: 12.5px; }
  .comp-grid { grid-template-columns: 1fr; gap: 12px; }
  .comp-col { padding: 24px 20px; border-radius: 16px; }
  .comp-title { font-size: 15px; margin-bottom: 14px; }
  .comp-item { font-size: 13.5px; gap: 10px; }
  .hub-flow-card { flex-direction: row !important; }
  .hub-flow-icon { width: 36px; height: 36px; border-radius: 9px; }
  .hub-flow-icon i { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
  .icon-box { width: 44px !important; height: 44px !important; border-radius: 11px !important; }
  .icon-box svg { width: 24px !important; height: 24px !important; }
  .hiw-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hiw-step { padding: 18px 16px; gap: 10px; }
  .hiw-num { width: 32px; height: 32px; font-size: 13px; }
  .hiw-title { font-size: 13.5px; }
  .hiw-text { font-size: 12px; }
  .comp-col { padding: 20px 18px; border-radius: 14px; }
  .comp-title { font-size: 14px; }
  .comp-item { font-size: 13px; }
  .hub-flow-card { padding: 14px 16px !important; }
  .hub-flow-icon { width: 32px; height: 32px; border-radius: 8px; }
}


/* ── Footer links — clean layout ── */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer-link {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.footer-link:hover { color: #FFF; }

/* ── Mobile menu: divider + dashboard button ── */
.mm-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}
.mm-dashboard {
  font-size: 14px !important;
  letter-spacing: 0.12em !important;
  color: rgba(0,212,255,0.85) !important;
  border: 1px solid rgba(0,212,255,0.2) !important;
  padding: 12px 32px !important;
  border-radius: 10px !important;
}
.mm-dashboard:hover {
  background: rgba(0,212,255,0.08) !important;
  color: #00D4FF !important;
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .footer-link {
    font-size: 13.5px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   ZUREON v15 — Visual Evolution
   All additions below. Original styles above are untouched.
   Sections follow page order: Hero → Access.
════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────── */
.hero-logotype {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff 0%, #A6F6FF 50%, #00D4FF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
}
.hero-statement {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-accent {
  background: linear-gradient(90deg, #fff 0%, #A6F6FF 40%, #00D4FF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Badge: remove pill, add dot */
.hero-badge {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 28px !important;
}
.hero-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
  animation: v15-blink 2.4s ease-in-out infinite;
}
@keyframes v15-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
/* Remove hero-title (ZUREON wordmark) styles — replaced by .hero-logotype */
.hero-title { display: none; }
/* Remove hero-subtitle — replaced by .hero-statement */
.hero-subtitle { display: none; }
/* Remove price-panel */
.price-panel { display: none !important; }
/* Positioning note (replaces price-panel content) */
.hero-positioning {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}
/* Hero body text — more breathing room */
.hero-body { margin-bottom: 44px !important; }
/* Hero grid — more vertical padding */
.hero-grid { padding: 120px 0 !important; }

/* ── FOUNDER EDITION ──────────────────────────────────── */
.founder-panel {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}
.typo-value {
  font-size: clamp(48px, 6vw, 88px) !important;
  letter-spacing: -0.03em !important;
}
.typo-item {
  border-right: 1px solid rgba(255,255,255,0.06) !important;
  padding: 0 48px !important;
}
.typo-item:last-child { border-right: none !important; }

/* ── WHAT IS ZUREON ───────────────────────────────────── */
.v15-stage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.v15-stage-principles { display: flex; flex-direction: column; }
.v15-stage-principle {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v15-stage-principle:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.v15-stage-principle h4 {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 600; color: #fff;
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.v15-stage-principle p {
  font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.v15-stage-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.v15-stage-glow {
  position: absolute;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(0,212,255,0.14) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.v15-stage-img {
  width: 100%; max-width: 360px; height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9)) drop-shadow(0 0 30px rgba(0,212,255,0.12));
  opacity: 0.88;
}
@media (max-width: 860px) {
  .v15-stage-layout { grid-template-columns: 1fr; }
  .v15-stage-visual { display: none; }
}
.v15-founder-sub {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

/* ── EXPERIENCE ───────────────────────────────────────── */
.v15-exp-manifesto { max-width: 900px; margin: 0 auto; }
.v15-exp-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v15-exp-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.v15-exp-num {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent); opacity: 0.5;
  min-width: 28px; flex-shrink: 0;
}
.v15-exp-statement {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600; color: #fff;
  line-height: 1.2; letter-spacing: -0.02em; margin: 0;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
.hiw-step {
  background: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.hiw-step:hover { background: none !important; border-color: transparent !important; }
.hiw-step--active {
  background: none !important;
  border-color: transparent !important;
}
.hiw-num {
  font-size: clamp(40px, 5vw, 64px) !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,0.06) !important;
  line-height: 1 !important;
  margin-bottom: 16px !important;
  text-shadow: none !important;
}
.hiw-num--active { color: rgba(0,212,255,0.25) !important; }
.hiw-title { font-size: 16px !important; font-weight: 600 !important; }
.hiw-text { font-size: 14px !important; color: var(--text-muted) !important; }

/* ── COMPARISON ───────────────────────────────────────── */
.comp-col {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.comp-col--them { border-right: 1px solid rgba(255,255,255,0.06) !important; }
.comp-col--us { border-left: 1px solid rgba(0,212,255,0.12) !important; }
#comparison .section-subtitle {
  font-size: clamp(20px, 2.5vw, 32px) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  opacity: 1 !important;
}

/* ── LEARN ────────────────────────────────────────────── */
.v15-learn-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px); font-weight: 600;
  color: #fff; margin-bottom: 16px; letter-spacing: -0.02em;
}
.v15-learn-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 32px;
}
.v15-learn-items { display: flex; flex-direction: column; }
.v15-learn-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v15-learn-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.v15-learn-item h4 {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px;
}
.v15-learn-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
#zureon-learn { padding: 120px 0; }

/* ── WEB3 CONTROL ─────────────────────────────────────── */
.v15-web3-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v15-web3-device {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.v15-web3-glow {
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(0,212,255,0.16) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.v15-web3-img {
  width: 80%; max-width: 340px; height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 48px 80px rgba(0,0,0,0.85)) drop-shadow(0 0 30px rgba(0,212,255,0.15));
}
.v15-web3-features { display: flex; flex-direction: column; }
.v15-web3-feat {
  display: flex; align-items: flex-start;
  gap: 20px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v15-web3-feat:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.v15-web3-icon {
  width: 20px; height: 20px;
  color: var(--accent); flex-shrink: 0; margin-top: 2px; opacity: 0.8;
}
.v15-web3-body h4 {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 600; color: #fff;
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.v15-web3-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .v15-web3-layout { grid-template-columns: 1fr; }
  .v15-web3-device { display: none; }
}

/* ── ZUREON HUB (the climax) ──────────────────────────── */
#zureon-hub { padding: 140px 0; }
.hub-flow-card {
  background: none !important;
  border: none !important;
  border-left: 2px solid transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 14px 0 14px 20px !important;
  transition: border-color 0.2s ease !important;
}
.hub-flow-card:hover {
  background: none !important;
  border-color: transparent !important;
  border-left-color: rgba(0,212,255,0.4) !important;
  box-shadow: none !important;
  transform: none !important;
}
.hub-flow-card.hub-flow-active {
  background: none !important;
  border-left-color: var(--accent) !important;
  box-shadow: none !important;
}

/* ── DEMO EXPERIENCE ──────────────────────────────────── */
.v15-demo-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.v15-demo-fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; color: #fff;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.v15-demo-fact p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }
@media (max-width: 700px) { .v15-demo-facts { grid-template-columns: 1fr; gap: 24px; } }

/* ── AI SECTION ───────────────────────────────────────── */
.v15-ai-quote {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  border: none;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 0 0 28px 0;
  font-style: normal;
  background: none;
}
.v15-ai-prose {
  font-family: var(--font-body);
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; margin: 0;
}

/* ── ECOSYSTEM / HARDWARE ─────────────────────────────── */
.v15-spec-table { max-width: 860px; }
.v15-spec-row {
  display: grid;
  grid-template-columns: 140px 180px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v15-spec-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.v15-spec-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); opacity: 0.55;
}
.v15-spec-value {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; color: #fff;
}
.v15-spec-note { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 700px) {
  .v15-spec-row { grid-template-columns: 1fr; gap: 4px; }
  .v15-spec-note { display: none; }
}

/* ── ROADMAP ──────────────────────────────────────────── */
.rt-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 16px 0 0 0 !important;
}
.rt-card:hover {
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
}
.horizontal-rt-item.current .rt-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.rt-name {
  font-family: var(--font-heading) !important;
  font-size: 14px !important; font-weight: 600 !important;
  color: #fff !important; margin-bottom: 4px !important;
}
.rt-date {
  font-size: 11px !important; letter-spacing: 0.1em !important;
  text-transform: uppercase !important; margin-bottom: 8px !important;
}
.horizontal-rt-item.current .rt-date { color: var(--accent) !important; }
.rt-desc { font-size: 13px !important; color: var(--text-muted) !important; line-height: 1.6 !important; }

/* ── CONTACT / ACCESS ─────────────────────────────────── */
#contact { padding: 140px 0; }
.v15-form-wrap { background: none; border: none; box-shadow: none; border-radius: 0; }

/* ── FOUNDER EDITION v15 FINAL ────────────────────────── */
.v15-founder-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.v15-founder-item {
  padding: 16px 56px;
  text-align: center;
}
.v15-founder-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.v15-founder-value {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.v15-founder-muted { color: rgba(255,255,255,0.35); }
.v15-founder-accent {
  background: linear-gradient(90deg, #fff 0%, #A6F6FF 40%, #00D4FF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v15-founder-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Override any lingering v14 founder styles */
.founder-panel { display: none !important; }
.typo-block { display: none !important; }
@media (max-width: 640px) {
  .v15-founder-divider { display: none; }
  .v15-founder-item { padding: 16px 24px; }
}

/* ── EXPERIENCE HEADER FIX ────────────────────────────── */
.v15-exp-header {
  margin-bottom: 48px;
}
/* Ensure exp_t i18n key is preserved on section-tag */

/* ── AI SECTION RESTRUCTURE ───────────────────────────── */
.v15-ai-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.v15-ai-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0,212,255,0.07) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.v15-ai-container { position: relative; z-index: 1; }
.v15-ai-quote-block {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 40px;
}
.v15-ai-quote-block .section-tag {
  display: block;
  margin-bottom: 32px;
}
/* Override the blockquote to be large, centered, full-width */
.v15-ai-quote-block .v15-ai-quote {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
  border: none;
  border-left: none;
  padding: 0;
  margin: 0;
  font-style: normal;
  background: none;
  text-align: center;
}
.v15-ai-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v15-ai-device {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.v15-ai-img {
  width: 80%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9)) drop-shadow(0 0 30px rgba(0,212,255,0.15));
}
.v15-ai-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v15-ai-copy .section-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 860px) {
  .v15-ai-body { grid-template-columns: 1fr; }
  .v15-ai-device { display: none; }
  .v15-ai-quote-block { padding: 0; }
}

/* ── HUB CLIMAX LAYOUT ────────────────────────────────── */
/* Override the two-column side-by-side layout.
   Copy becomes a centered header block above the device.
   Device becomes the dominant visual element below. */
#zureon-hub {
  padding: 160px 0 120px !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Stack vertically instead of side-by-side */
.hub-layout {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}

/* Copy block: centered, narrow, acts as a section header */
.hub-copy {
  text-align: center !important;
  max-width: 680px !important;
  width: 100% !important;
  margin-bottom: 56px !important;
}

#zureon-hub .section-title {
  font-size: clamp(28px, 3.5vw, 48px) !important;
  margin-bottom: 12px !important;
}

.hub-copy .section-subtitle {
  max-width: 100% !important;
  text-align: center !important;
  margin-bottom: 0 !important;
}

/* Pill row: centered */
.hub-pill-row {
  justify-content: center !important;
  margin: 24px 0 !important;
}

/* Flow cards: horizontal tabs, not vertical stack */
.hub-flow {
  display: flex !important;
  flex-direction: row !important;
  gap: 4px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-top: 8px !important;
}

/* Flow card as minimal horizontal tab */
.hub-flow-card {
  flex: 0 0 auto !important;
  border-left: none !important;
  border-bottom: 2px solid transparent !important;
  padding: 12px 20px !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.hub-flow-card:hover {
  border-left-color: transparent !important;
  border-bottom-color: rgba(0,212,255,0.4) !important;
}
.hub-flow-card.hub-flow-active {
  border-left-color: transparent !important;
  border-bottom-color: var(--accent) !important;
}

/* Device: centered, full container width, device enlarged */
.hub-device {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Scale up the phone frame from 0.76 → 0.96 */
.hub-demo-device-wrapper {
  width: min(100%, 400px) !important;
  max-width: 400px !important;
  transform: scale(0.96) !important;
  transform-origin: center top !important;
  margin: -16px 0 -16px !important;
}

/* Demo label: visible above device */
.hub-demo-label {
  margin-bottom: 20px !important;
  text-align: center !important;
}

/* Demo link: below device */
.hub-demo-link {
  margin-top: 32px !important;
}


/* ═══════════════════════════════════════════════════════════════
   ZUREON v15 REDESIGN — New Section Visual Grammar
   ═══════════════════════════════════════════════════════════════ */

/* ── FOUNDER ACCESS REDESIGN ─────────────────────────────── */

.v15-fa-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 0 40px;
}

.v15-fa-kicker {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 18px;
}

.v15-fa-count-block {
  flex: 0 0 auto;
  text-align: left;
}

.v15-fa-count-block span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(80px, 10vw, 128px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #fff;
  margin-bottom: 10px;
}

.v15-fa-count-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}

.v15-fa-bar {
  width: min(260px, 100%);
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.v15-fa-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0,212,255,0.45) 100%);
  border-radius: 2px;
}

.v15-fa-bar-label {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
}

.v15-fa-sep {
  width: 1px;
  background: rgba(255,255,255,0.06);
  align-self: stretch;
  flex-shrink: 0;
}

.v15-fa-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  min-width: 0;
}

.v15-fa-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.v15-fa-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.v15-fa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
  margin-top: 5px;
}

.v15-fa-dot--active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,212,255,0.55);
}

.v15-fa-row-text strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  display: block;
  line-height: 1.35;
}

.v15-fa-cta {
  padding-top: 28px;
}

@media (max-width: 820px) {
  .v15-fa-container {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .v15-fa-sep {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .v15-fa-count-block { text-align: center; }
  .v15-fa-bar { margin: 0 auto 10px; }
  .v15-fa-bar-label { text-align: center; }
}


/* ── COMPARISON: WHY WE EXIST ────────────────────────────── */

.v15-why-block {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 0;
  align-items: start;
}

.v15-why-before,
.v15-why-after {
  padding: 48px 32px 48px 0;
}

.v15-why-after {
  padding: 48px 0 48px 32px;
}

.v15-why-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
  margin-bottom: 22px;
}

.v15-why-label--active {
  color: var(--accent);
}

.v15-why-before p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: rgba(139,155,180,0.7);
  margin: 0;
}

.v15-why-after p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.v15-why-sep {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v15-why-sep::after {
  content: "";
  width: 1px;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.08) 70%, transparent);
  display: block;
}

.v15-why-closing {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 2.8vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
  opacity: 1 !important;
  margin: 64px auto 0 !important;
  max-width: 700px !important;
}

@media (max-width: 768px) {
  .v15-why-block {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .v15-why-before {
    padding: 32px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .v15-why-after {
    padding: 24px 0 32px;
  }
  .v15-why-sep { display: none; }
  .v15-why-closing { margin-top: 40px !important; }
}


/* ── AI MOMENTS: Real product examples ──────────────────── */

.v15-ai-quote-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 24px auto 0;
  max-width: 600px;
  text-align: center;
}

.v15-ai-moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 72px auto 0;
}

.v15-ai-moment {
  background: rgba(8, 12, 22, 0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v15-ai-moment--warn {
  border-color: rgba(251, 146, 60, 0.15);
  background: rgba(12, 8, 4, 0.7);
}

.v15-aim-context {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.v15-aim-screen {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.v15-aim-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.v15-aim-label {
  font-size: 11.5px;
  color: var(--text-dark);
  font-weight: 500;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.v15-aim-value {
  font-size: 11.5px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  text-align: right;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.v15-aim-green { color: #4ade80 !important; }
.v15-aim-warn  { color: #fb923c !important; }
.v15-aim-mono  { font-family: monospace !important; font-size: 10.5px !important; color: var(--text-muted) !important; }

.v15-aim-bubble {
  background: rgba(0, 212, 255, 0.045);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v15-aim-bubble--warn {
  background: rgba(251, 146, 60, 0.04);
  border-color: rgba(251, 146, 60, 0.12);
}

.v15-aim-ai-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.v15-aim-bubble--warn .v15-aim-ai-label {
  color: #fb923c;
}

.v15-aim-bubble p {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
  font-style: normal;
}

.v15-aim-actions {
  display: flex;
  gap: 8px;
}

.v15-aim-btn {
  flex: 1;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: default;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65);
  pointer-events: none;
}

.v15-aim-btn--ghost {
  background: rgba(251,146,60,0.07);
  border-color: rgba(251,146,60,0.18);
  color: #fb923c;
}

@media (max-width: 960px) {
  .v15-ai-moments {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 14px;
  }
}


/* ── ROADMAP: NOW marker ─────────────────────────────────── */

.v15-rm-now {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 4px;
  background: rgba(0,212,255,0.06);
}


/* ── WHAT IS ZUREON: tighter, more teaser-like ───────────── */

#current-stage .section-head {
  margin-bottom: 72px;
}

#current-stage .section-title {
  font-size: clamp(30px, 3.8vw, 54px) !important;
}


/* ── HERO: Slightly tighten the body copy ────────────────── */

.hero-body {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: rgba(139,155,180,0.78) !important;
}


/* ── EXPERIENCE: stronger number contrast ────────────────── */

.v15-exp-row:last-child .v15-exp-statement {
  background: linear-gradient(90deg, #fff 0%, #A6F6FF 40%, #00D4FF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v15-exp-num {
  opacity: 0.35 !important;
}


/* ── LEARN: device-first layout ─────────────────────────── */

.v15-learn-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.v15-learn-device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.v15-learn-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.38) 0%, rgba(138,43,226,0.1) 50%, transparent 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.v15-learn-img {
  width: 120%;
  max-width: 480px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.85)) drop-shadow(0 0 40px rgba(0,212,255,0.22));
}

.v15-learn-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v15-learn-copy .section-tag {
  margin-bottom: 20px;
}

.v15-learn-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(26px, 3vw, 44px) !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 40px !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}

@media (max-width: 900px) {
  .v15-learn-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 560px;
  }
  .v15-learn-device { order: 1; }
  .v15-learn-copy   { order: 2; }
  .v15-learn-img    { width: 80%; max-width: 300px; }
}


/* ═══════════════════════════════════════════════════════════════
   ZUREON v15 — THREE PEAK MOMENTS SYSTEM
   Visual memorability through contrast, scale, and identity.

   Peak 1: Hero     — already distinct, glow amplified
   Peak 2: HUB      — pure black chamber, maximum glow
   Peak 3: AI       — monumental quote, stage lighting

   Supporting sections: quiet, editorial, no competition
   ═══════════════════════════════════════════════════════════════ */


/* ── PEAK 1: HERO — device render amplification ─────────── */

.cinematic-device {
  filter:
    drop-shadow(0 80px 120px rgba(0,0,0,0.94))
    drop-shadow(0 0 70px rgba(0, 212, 255, 0.42))
    drop-shadow(0 0 140px rgba(0, 212, 255, 0.18)) !important;
}

/* Pseudo-element rings removed — the new hero.png is a full 3D composition
   that already includes the device + orbital rings + particles + bloom.
   No CSS overlay needed. Keep ::before disabled to prevent any cyan glow
   from older rules bleeding through. */
.cinematic-device-stage::before,
.cinematic-device-stage::after {
  display: none !important;
}

/* Hero statement — ensure it dominates the left column */
.hero-statement {
  font-size: clamp(52px, 7vw, 100px) !important;
  line-height: 0.98 !important;
  margin-bottom: 28px !important;
}


/* ── PEAK 2: HUB — pure black chamber ───────────────────── */

#zureon-hub {
  background: #000 !important;
  padding-top: 180px !important;
  padding-bottom: 160px !important;
  border-top: 1px solid rgba(0, 212, 255, 0.10);
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

/* Intensify the glow: larger, brighter, more focused */
.hub-glow {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(0, 212, 255, 0.34) 0%, rgba(0, 212, 255, 0.10) 28%, transparent 52%),
    radial-gradient(ellipse at 28% 68%, rgba(138, 43, 226, 0.18) 0%, transparent 46%) !important;
  filter: blur(90px) !important;
  opacity: 1 !important;
  width: 130% !important;
  height: 120% !important;
}

/* Section tag: strip pill, use bare typographic identity */
#zureon-hub .section-tag {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 10px !important;
  letter-spacing: 0.28em !important;
  color: var(--accent) !important;
  opacity: 0.75 !important;
  margin-bottom: 28px !important;
}

/* HUB title: heavier weight, larger presence */
#zureon-hub .section-title {
  font-size: clamp(34px, 4.5vw, 60px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
  margin-bottom: 20px !important;
}

/* HUB subtitle: slightly more restrained to let title breathe */
#zureon-hub .section-subtitle {
  color: rgba(139, 155, 180, 0.65) !important;
  font-size: 16px !important;
}

/* Hub demo device: no margin compression — let it breathe */
#zureon-hub .hub-demo-device-wrapper {
  filter: drop-shadow(0 80px 140px rgba(0,0,0,0.96)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.22)) !important;
}

/* Flow card tabs: no border changes — keep the accent-bottom indicator */
.hub-flow-card strong {
  color: rgba(255,255,255,0.78) !important;
}
.hub-flow-card.hub-flow-active strong {
  color: var(--accent) !important;
}


/* ── PEAK 3: AI — monumental scale, stage lighting ──────── */

.v15-ai-section {
  background: #000 !important;
  padding: 160px 0 140px !important;
  border-top: 1px solid rgba(0, 212, 255, 0.08) !important;
}

.v15-ai-glow {
  background:
    radial-gradient(ellipse at 15% 38%, rgba(0, 212, 255, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse at 85% 62%, rgba(138, 43, 226, 0.09) 0%, transparent 48%) !important;
  filter: blur(80px) !important;
}

/* Section tag: same bare typographic treatment as HUB */
#ai .section-tag {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 10px !important;
  letter-spacing: 0.28em !important;
  color: var(--accent) !important;
  opacity: 0.65 !important;
  margin-bottom: 40px !important;
}

/* The quote: poster scale. The visitor should need to scroll through it. */
.v15-ai-quote-block .v15-ai-quote {
  font-size: clamp(52px, 8.5vw, 114px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.045em !important;
  margin: 0 !important;
  color: #fff !important;
}

/* Vertical breathing room after the quote — let it land */
.v15-ai-quote-block {
  padding-bottom: 96px !important;
}

/* Quote subtitle: quiet, recessive */
.v15-ai-quote-sub {
  font-size: 15px !important;
  color: rgba(255,255,255,0.36) !important;
  max-width: 520px !important;
  margin-top: 32px !important;
}

/* AI moment cards in pure black: slightly elevated treatment */
.v15-ai-moments {
  gap: 24px !important;
  margin-top: 0 !important;
}

.v15-ai-moment {
  background: rgba(14, 18, 28, 0.9) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

.v15-ai-moment--warn {
  border-color: rgba(251, 146, 60, 0.14) !important;
}


/* ── SUPPORTING SECTIONS: quiet palette, no competition ─── */

/* Experience: manifesto scale — statements feel like declarations */
.v15-exp-statement {
  font-size: clamp(24px, 3.6vw, 50px) !important;
  line-height: 1.18 !important;
}

.v15-exp-row {
  padding: 44px 0 !important;
}

/* Founder: the number is the moment — let it breathe */
#founder-edition {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Subtle visual chapter markers between major sections */
#current-stage,
#experience,
#how-it-works,
#comparison {
  border-top: 1px solid rgba(255,255,255,0.04);
}

#zureon-learn,
#web3,
#features,
#roadmap {
  border-top: 1px solid rgba(255,255,255,0.04);
}


/* ── SECTION TAG DIFFERENTIATION ────────────────────────── */
/* Peaks use bare text (HUB, AI already set above).
   Supporting sections keep the pill but at lower opacity. */

#founder-edition .section-tag,
#current-stage .section-tag,
#experience .section-tag,
#zureon-learn .section-tag,
#comparison .section-tag,
#demo-experience .section-tag,
#features .section-tag,
#roadmap .section-tag {
  opacity: 0.85;
}


/* ── WEB3 CONTROL: hardware confidence, more breathing room */
#web3 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.v15-web3-img {
  filter:
    drop-shadow(0 48px 80px rgba(0,0,0,0.92))
    drop-shadow(0 0 40px rgba(0,212,255,0.18)) !important;
}


/* ── RESPONSIVE: peaks on mobile ────────────────────────── */

@media (max-width: 768px) {
  #zureon-hub {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .v15-ai-section {
    padding: 100px 0 80px !important;
  }

  .v15-ai-quote-block .v15-ai-quote {
    font-size: clamp(40px, 11vw, 72px) !important;
  }

  .v15-ai-quote-block {
    padding-bottom: 56px !important;
  }

  .hero-statement {
    font-size: clamp(42px, 10vw, 72px) !important;
  }

  .v15-exp-statement {
    font-size: clamp(20px, 5.5vw, 32px) !important;
  }

  .v15-exp-row {
    padding: 32px 0 !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   ZUREON v15 — PRODUCT CHARACTER SYSTEM
   Device as protagonist. Founder as membership identity.
   ═══════════════════════════════════════════════════════════════ */


/* ── FOUNDER IDENTITY — product announcement, not funnel ─── */

#founder-edition {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.v15-fi-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}

/* Device: bleeds slightly left for product announcement staging */
.v15-fi-device {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -32px;
  padding: 40px 0;
}

.v15-fi-device-glow {
  position: absolute;
  width: 55%;
  height: 55%;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.14) 0%, transparent 70%);
  filter: blur(64px);
  z-index: 0;
  pointer-events: none;
}

.v15-fi-device-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,0.92))
    drop-shadow(0 0 40px rgba(0,212,255,0.12));
}

/* Identity copy: typographic membership signal */
.v15-fi-body {
  padding: 40px 0 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.v15-fi-kicker {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 16px;
}

.v15-fi-heading {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.v15-fi-edition {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}

.v15-fi-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.v15-fi-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.v15-fi-perk {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  color: rgba(255,255,255,0.56);
  line-height: 1.45;
}

.v15-fi-perk:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.v15-fi-pn {
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.38;
  flex-shrink: 0;
  min-width: 18px;
}

@media (max-width: 880px) {
  .v15-fi-wrap {
    grid-template-columns: 1fr;
  }
  .v15-fi-device {
    margin-left: 0;
    justify-content: center;
    padding: 0 0 32px;
  }
  .v15-fi-device-img {
    max-width: min(80vw, 360px);
    width: 80%;
  }
  .v15-fi-body {
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .v15-fi-perks { text-align: left; }
}


/* ── HERO DEVICE: product character scale ────────────────── */

/* Device — original block size, but device render scaled up via transform.
   Transform doesn't affect layout, so the surrounding hero block stays as it was.
   Visual scale 1.40 = ~+30% larger visible device. */
.cinematic-device {
  width: min(80vw, 580px) !important;
  transform: scale(1.40) translateY(-8px) rotateY(-8deg) rotateX(4deg) !important;
}

.hero-phone {
  height: min(68vh, 600px) !important;
}

@media (max-width: 900px) {
  .cinematic-device {
    transform: scale(1.0) translateY(-8px) rotateY(-8deg) rotateX(4deg) !important;
  }
}


/* ── WEB3 CONTROL: hardware territory ────────────────────── */

/* Slightly differentiate background to signal hardware section */
#web3 {
  background: rgba(2, 3, 8, 0.6);
}

/* Show device on medium screens before it disappears on mobile */
@media (max-width: 900px) {
  .v15-web3-device {
    display: flex !important;
    justify-content: center;
    margin-bottom: 40px;
  }
  .v15-web3-layout {
    grid-template-columns: 1fr !important;
  }
  .v15-web3-img {
    max-width: 260px !important;
    width: 60% !important;
  }
}


/* ── ECOSYSTEM / SPEC TABLE: technical identity ──────────── */

/* The spec table section should feel like a product data sheet */
#features {
  background: rgba(1, 2, 6, 0.7);
}

.v15-spec-label {
  opacity: 0.65 !important;
}


/* ── WHAT IS ZUREON: first-glimpse product teaser ─────────── */

/* Device image in "What is ZUREON" — make it more visible on tablet */
@media (min-width: 860px) {
  .v15-stage-img {
    max-width: 420px !important;
    opacity: 1 !important;
  }
}


/* ── AI SECTION: remove old two-column layout ────────────── */
/* v15-ai-body was removed from HTML in redesign pass — suppress in case cached */
.v15-ai-body { display: none !important; }


/* ═══════════════════════════════════════════════════════════════
   FOUNDER IDENTITY — post-product, no CTA, prestigious and quiet
   Deliberately quieter than HUB and AI peaks.
   Restraint = exclusivity signal.
   ═══════════════════════════════════════════════════════════════ */

#founder-edition {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Centered editorial layout — not full-width, not theatrical */
.v15-founder-identity {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
}

/* Bare tracking text — same treatment as peak section tags but dimmer */
.v15-founder-id-kicker {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.45;
  margin-bottom: 20px;
}

/* Title: measured, not monumental. Smaller than any peak heading. */
.v15-founder-id-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Thin rule: the only graphic element in the section */
.v15-founder-id-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 18px;
}

/* Edition line: quiet but WCAG AA readable (4.5:1+ on #010308) */
.v15-founder-id-edition {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}

/* Membership terms: narrow, left-aligned text inside a centered container */
.v15-founder-id-terms {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.v15-founder-id-term {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.45;
}

.v15-founder-id-term:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.v15-founder-id-n {
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.32;
  flex-shrink: 0;
  min-width: 18px;
}

/* Suppress old crowdfunding-style founder classes — not used in HTML anymore */
.v15-fa-container,
.v15-fa-count-block,
.v15-fa-number,
.v15-fa-bar,
.v15-fa-details { display: none !important; }


/* ── DEMO EXPERIENCE: quiet bridge between two peaks ─────── */
/* Reduced vertical weight so it doesn't interrupt the HUB→AI flow */
#demo-experience {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

/* ── V15 RECOVERY: VISUAL HIERARCHY CORRECTIONS ──────────────────
   Three targeted changes from the approved migration map:
   1. AI fee-warning card: visually primary over flanking cards
   2. Experience: final statement isolated as the emotional payoff
   3. Roadmap: past fades, NOW dominates, future invites
   ─────────────────────────────────────────────────────────────── */

/* 1 · AI SECTION — Fee-warning card as the visual climax
   Center column wider. Warn card amplified border + ambient glow.
   Flanking cards remain subordinate.                              */
.v15-ai-moments {
  grid-template-columns: 1fr 1.22fr 1fr !important;
}
.v15-ai-moment--featured {
  border-color: rgba(251, 146, 60, 0.32) !important;
  box-shadow:
    0 0 0 1px rgba(251, 146, 60, 0.10),
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(251, 146, 60, 0.06) !important;
}
/* Flanking cards: visually recede relative to the featured card */
.v15-ai-moment:not(.v15-ai-moment--featured) {
  opacity: 0.82;
}
@media (max-width: 900px) {
  .v15-ai-moments {
    grid-template-columns: 1fr !important;
  }
  .v15-ai-moment:not(.v15-ai-moment--featured) {
    opacity: 1;
  }
}

/* 2 · EXPERIENCE — Final statement is the typographic payoff
   Row 05 has more breathing room and slightly elevated prominence. */
.v15-exp-row--final {
  margin-top: 16px;
  padding-top: 40px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.v15-exp-row--final .v15-exp-statement {
  color: #fff !important;
  opacity: 1 !important;
}

/* 3 · ROADMAP — Visual momentum: past recedes, NOW commands
   Past nodes (completed, not current): muted.
   Future nodes (upcoming): present but secondary.
   NOW card: full weight, accent border, elevated dot.            */
.horizontal-rt-item.active:not(.current) .rt-card {
  opacity: 0.48;
}
.horizontal-rt-item.active:not(.current) .dot-center {
  opacity: 0.55;
}
.horizontal-rt-item:not(.active) .rt-card {
  opacity: 0.68;
}
.horizontal-rt-item.current .rt-card {
  opacity: 1 !important;
  border-color: rgba(0, 212, 255, 0.22) !important;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(0,212,255,0.02) 100%) !important;
}
.horizontal-rt-item.current .dot-center {
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.15), 0 0 12px rgba(0,212,255,0.4) !important;
}


/* ═══════════════════════════════════════════════════════════════
   ZUREON v15 — Desktop Layout Cleanup
   Targeted fixes for spacing, alignment, and proportions.
   Each block is numbered and explains what was wrong.
   ═══════════════════════════════════════════════════════════════ */

/* 1. HEADER HEIGHT: 100px is too tall for a nav bar.
   72px is standard for premium landing pages.
   Lets users reach content sooner on every scroll. */
.header { height: 72px !important; }

/* 2. HERO TOP CLEARANCE: adjust to match new header height.
   Old: 112px (= 100px header + 12px gap).
   New: 84px  (=  72px header + 12px gap). */
.hero { padding-top: 84px !important; }

/* 3. HERO-GRID INNER PADDING: 120px top+bottom was breaking min-height: 100vh.
   On a 900px tall viewport the hero grew to ~950px, pushing fold down.
   flex + align-items: center on .hero already handles vertical centering. */
.hero-grid { padding: 0 !important; }

/* 4. SECTION-SUBTITLE OPACITY: opacity: 0.8 stacked on top of --text-muted (#8B9BB4)
   dropped contrast below WCAG AA on dark background. Remove the multiplier. */
.section-subtitle { opacity: 1; }

/* 5. SPEC TABLE CENTERING: .v15-spec-table had max-width: 860px but no margin: 0 auto.
   text-align: center on the parent only affects inline content, not block centering.
   Result: table was left-aligned. Also explicitly set text-align: left for data rows. */
.v15-spec-table { margin: 0 auto; text-align: left; }

/* 6. FOUNDER SUB ALIGNMENT: .v15-founder-sub was left-aligned but the identity block
   above it is centered (max-width: 560px; margin: 0 auto). Looked detached. */
.v15-founder-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 440px;
}

/* 7. EXPERIENCE HEADER ALIGNMENT: .v15-exp-header (section-tag) had no max-width/margin,
   so it spanned the full 1200px container while the manifesto below was max-width: 900px
   centered. The tag appeared 150px to the left of the manifesto's left edge. */
.v15-exp-header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* 8. HIW NUMBER CIRCLE CONFLICT: base .hiw-num had width: 40px; height: 40px; border-radius: 50%.
   v15 override set font-size: clamp(40px, 5vw, 64px) — a 64px number in a 40px circle.
   Strip the circle box so the large ghost number can breathe. */
.hiw-num {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  border: none !important;
  background: none !important;
  display: block !important;
  padding: 0 !important;
}

/* 9. HUB-FLOW: restore vertical card list with descriptions, reduce section size.
   Previous fix hid descriptions and left the section feeling empty.
   Now: compact left-border rows + descriptions visible. Section padding halved. */

/* Reduce section padding: 180px/160px was too tall, consuming nearly 2 viewport heights */
#zureon-hub {
  padding-top: 100px !important;
  padding-bottom: 80px !important;
}

/* Restore flow to vertical list */
.hub-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
  gap: 0 !important;
  margin-top: 16px !important;
  max-width: 480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Restore card to left-border row */
.hub-flow-card {
  flex: unset !important;
  border-left: 2px solid rgba(255,255,255,0.08) !important;
  border-bottom: none !important;
  padding: 14px 0 14px 20px !important;
  display: block !important;
  text-align: left !important;
}

/* Restore description text */
.hub-flow-card p {
  display: block !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

/* Label back to normal weight */
.hub-flow-card strong {
  margin-bottom: 4px !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
}

/* Hide flow-icons in this compact list layout (redundant next to label) */
.hub-flow-card .hub-flow-icon { display: none !important; }


/* ── EXPERIENCE SECTION: reduce statement scale and row height ────────────── */
/* clamp(24px, 3.6vw, 50px) at 1440px = 50px per line — too monumental.
   Each of 5 rows had 44px padding = 440px of padding alone for 5 statements.
   Scale down to readable paragraph size for a supporting section. */

.v15-exp-statement {
  font-size: clamp(17px, 1.9vw, 26px) !important;
  line-height: 1.35 !important;
}

.v15-exp-row {
  padding: 20px 0 !important;
}

/* Keep the final payoff row slightly elevated */
.v15-exp-row--final {
  padding-top: 28px !important;
  margin-top: 8px !important;
}


/* ── HIW CIRCLES: restore circles with properly-sized numbers ─────────────── */
/* Previous fix stripped the circles entirely.
   User feedback: circles are better — number just shouldn't overflow.
   Fix: restore 48×48 circle, set number to 18px (fits inside). */

.hiw-num {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.03) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.35) !important;
  line-height: 1 !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
}

.hiw-num--active {
  border-color: rgba(0,212,255,0.45) !important;
  background: rgba(0,212,255,0.07) !important;
  color: var(--accent) !important;
  box-shadow: 0 0 16px rgba(0,212,255,0.2) !important;
}


/* ═══════════════════════════════════════════════════════════════
   HUB SECTION — 2-column: phone LEFT, copy+cards RIGHT
   Phone keeps 360px wrapper + scale(0.76) so iframe renders
   at full resolution and is NOT squished.
   ═══════════════════════════════════════════════════════════════ */

/* 1. Layout: 2 columns. Left = 360px for phone, right = remaining */
#zureon-hub .hub-layout {
  display: grid !important;
  grid-template-columns: 360px 1fr !important;
  flex-direction: unset !important;
  gap: 56px !important;
  align-items: center !important;
}

/* 2. Device column: LEFT */
#zureon-hub .hub-device {
  order: 1 !important;
  width: 100% !important;
  align-items: center !important;
}

/* 3. Phone wrapper: original 360px + scale(0.76) = 273px visual, 593px tall.
   Negative margins pull surrounding layout to match visual height. */
#zureon-hub .hub-demo-device-wrapper,
.hub-demo-device-wrapper {
  width: 360px !important;
  max-width: 360px !important;
  transform: scale(0.76) !important;
  transform-origin: center center !important;
  margin: -96px auto -86px !important;
}

/* 4. Copy column: RIGHT, left-aligned text */
#zureon-hub .hub-copy {
  order: 2 !important;
  text-align: left !important;
  max-width: none !important;
  margin-bottom: 0 !important;
}

/* 5. Section tag: more breathing room below */
#zureon-hub .section-tag {
  margin-bottom: 16px !important;
}

/* 6. Section title: readable, space below */
#zureon-hub .section-title {
  font-size: clamp(24px, 3vw, 38px) !important;
  margin-bottom: 16px !important;
}

/* 7. Subtitle: left-aligned, space below */
#zureon-hub .hub-copy .section-subtitle {
  text-align: left !important;
  margin: 0 0 24px 0 !important;
  max-width: 520px !important;
}

/* 8. Pills: left-aligned, space above and below */
#zureon-hub .hub-pill-row {
  justify-content: flex-start !important;
  margin: 0 0 24px 0 !important;
}

/* 9. Flow cards: vertical list, gap between cards */
#zureon-hub .hub-flow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
  gap: 0 !important;
  margin-top: 0 !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 9. Section padding */
#zureon-hub {
  padding-top: 80px !important;
  padding-bottom: 64px !important;
}

/* 10. Demo label above phone */
#zureon-hub .hub-demo-label {
  text-align: center !important;
  margin-bottom: 10px !important;
}

/* 11. Demo link below phone */
#zureon-hub .hub-demo-link {
  margin-top: 12px !important;
  font-size: 11px !important;
}

/* 12. Copy column: left internal padding so text breathes away from phone */
#zureon-hub .hub-copy {
  padding-left: 16px !important;
}

/* 13. Hub-flow cards: thin premium full border + proper padding */
#zureon-hub .hub-flow-card {
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-left: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 10px !important;
  padding: 18px 20px !important;
  margin-bottom: 10px !important;
  display: block !important;
  transition: border-color 0.2s ease !important;
}

#zureon-hub .hub-flow-card:hover {
  border-color: rgba(0,212,255,0.25) !important;
}

#zureon-hub .hub-flow-card.hub-flow-active {
  border-color: rgba(0,212,255,0.4) !important;
  background: rgba(0,212,255,0.04) !important;
}

/* Mobile: stack phone below copy */
@media (max-width: 960px) {
  #zureon-hub .hub-layout {
    grid-template-columns: 1fr !important;
  }
  #zureon-hub .hub-device { order: 2 !important; align-items: center !important; }
  #zureon-hub .hub-copy  { order: 1 !important; text-align: center !important; padding-left: 0 !important; }
  #zureon-hub .hub-copy .section-subtitle { margin: 0 auto !important; text-align: center !important; }
  #zureon-hub .hub-pill-row { justify-content: center !important; }
  #zureon-hub .hub-flow { max-width: 440px !important; margin: 8px auto 0 !important; }
}


/* ── AI SECTION: reduce 114px headline and 160px padding ─────────────────── */
/* clamp(52px, 8.5vw, 114px) at 1440px = 114px — poster-scale, not a subhead.
   New max: 44px — present but not overwhelming. */
.v15-ai-quote-block .v15-ai-quote {
  font-size: clamp(28px, 3.2vw, 44px) !important;
  line-height: 1.15 !important;
}

/* Section padding: 160px/140px → 80px/64px */
.v15-ai-section {
  padding: 80px 0 64px !important;
}

/* Quote block breathing room: 96px → 40px */
.v15-ai-quote-block {
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
}

/* AI moment cards: remove the top gap */
.v15-ai-moments { margin-top: 0 !important; }


/* ── CONTACT SECTION ──────────────────────────────────────────────────────── */

/* Section: tight vertical padding only */
#contact { padding: 48px 0 !important; }

/* Card: original 600px width, thin border, compact vertical padding */
#contact .v15-form-wrap {
  max-width: 600px !important;
  margin: 0 auto !important;
  padding: 32px 40px !important;
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 14px !important;
}

/* Title: compact */
#contact .v15-form-wrap h2 {
  font-size: 24px !important;
  margin-bottom: 6px !important;
}

/* Description: one line height reduction */
#contact .v15-form-wrap > p {
  font-size: 13px !important;
  margin-bottom: 12px !important;
  line-height: 1.5 !important;
}

/* Fomo lines: smaller, tight margins */
#contact .v15-form-wrap > div[style*="font-size: 14px"] {
  font-size: 12px !important;
  margin-bottom: 2px !important;
}
#contact .v15-form-wrap > div[style*="font-size: 13px"] {
  font-size: 12px !important;
  margin-bottom: 14px !important;
}

/* Inputs: reduce height, keep readable */
#contact .founder-input {
  padding: 11px 18px !important;
  margin-bottom: 8px !important;
  font-size: 14px !important;
}

#contact select.founder-input { padding: 11px 18px !important; }
#contact .custom-select-wrapper { margin-bottom: 8px !important; }

/* Form bottom margin */
#contact #earlyAccessForm { margin-bottom: 12px !important; }

/* Button */
#contact .btn-primary {
  padding: 14px !important;
  font-size: 15px !important;
}


/* ── LEARN / WEB3 DIFFERENTIATION: flip Web3 device to right column ──────── */
/* Both sections had device-left / text-right layout — looked identical.
   Web3 section now has text-left / device-right for visual contrast. */

#web3 .v15-web3-device { order: 2; }
#web3 .v15-web3-copy   { order: 1; }


/* ═══════════════════════════════════════════════════════════════
   ZUREON v15 — ONE CANVAS
   Remove all section boundary markers: hard backgrounds,
   border-top/bottom seams, isolated containers.
   Visual contrast comes from glows, typography, spacing only.
   ═══════════════════════════════════════════════════════════════ */

/* 1. HUB: remove pure black box — let global dark canvas flow through */
#zureon-hub {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* Keep hub glow alive — it differentiates without a hard edge */
#zureon-hub .hub-glow {
  opacity: 0.9 !important;
}

/* 2. AI SECTION: remove pure black box */
.v15-ai-section {
  background: transparent !important;
  border-top: none !important;
}

/* 3. WEB3 section: remove isolated background tone */
#web3 { background: transparent !important; }

/* 4. FEATURES: remove isolated background tone */
#features { background: transparent !important; }

/* 5. Remove ALL section border-top / border-bottom chapter markers.
   These are the most visible "seams" on the page. */
#current-stage,
#experience,
#how-it-works,
#comparison,
#zureon-learn,
#web3,
#features,
#roadmap,
#founder-edition,
#demo-experience,
#contact,
#ai {
  border-top: none !important;
  border-bottom: none !important;
}

/* 6. Roadmap inline section-separator inside hub area */
.roadmap-wrapper { border-top: none !important; }

/* 7. Subtle ambient glow between sections instead of hard borders.
   One wide radial from center that makes the page feel lit, not boxed. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 212, 255, 0.055) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.035) 0%, transparent 45%);
}


/* ═══════════════════════════════════════════════════════════════
   ROADMAP — Premium glass card surfaces
   Layout, spacing, timeline, typography: untouched.
   Only surface quality is added. Apple / Nothing / Linear register.
   ═══════════════════════════════════════════════════════════════ */

/* BASE CARD — every milestone gets a glass surface */
.rt-card {
  background: rgba(255,255,255,0.028) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 12px !important;
  padding: 18px 16px 16px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 24px rgba(0,0,0,0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
  transform: none !important;
}

/* Hover: hairline brightens, no movement */
.rt-card:hover {
  background: rgba(255,255,255,0.038) !important;
  border-color: rgba(255,255,255,0.11) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 24px rgba(0,0,0,0.22) !important;
  transform: none !important;
}

/* PAST cards — completed, slightly receded */
.horizontal-rt-item.active:not(.current) .rt-card {
  opacity: 0.52 !important;
  background: rgba(255,255,255,0.018) !important;
  border-color: rgba(255,255,255,0.055) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

/* FUTURE cards — ahead, slightly dimmer than base */
.horizontal-rt-item:not(.active) .rt-card {
  opacity: 0.72 !important;
}

/* CURRENT card — present moment, barely-there cyan tint */
.horizontal-rt-item.current .rt-card {
  opacity: 1 !important;
  background: rgba(0,212,255,0.038) !important;
  border: 1px solid rgba(0,212,255,0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(0,212,255,0.10),
    0 4px 24px rgba(0,0,0,0.22),
    0 0 0 1px rgba(0,212,255,0.06) !important;
  transform: none !important;
}

/* TIMELINE LINE — animated gradient, top adjusted to align with dot centers.
   Dot centers sit at 56px (40px grid padding + 16px half dot-wrapper).
   top: 54px + height: 4px → center at 56px = perfect alignment. */
.roadmap-line {
  top: 54px !important;
  height: 4px !important;
  background: linear-gradient(90deg, rgba(0,212,255,0.15) 0%, var(--accent) 30%, var(--accent-purple) 70%, rgba(0,212,255,0.15) 100%) !important;
  background-size: 200% 100% !important;
  animation: moveGradientLine 6s linear infinite !important;
  border: none !important;
  box-shadow: 0 0 10px rgba(0,212,255,0.18) !important;
  opacity: 1 !important;
  border-radius: 4px !important;
}

/* DOTS — all intentional, differentiated by fill not by transparency */

/* Past: solid filled — completed, neutral */
.horizontal-rt-item.active:not(.current) .dot-center {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255,255,255,0.55) !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Current: larger, white, clean cyan ring — the anchor point */
.horizontal-rt-item.current .dot-center {
  width: 18px !important;
  height: 18px !important;
  background: #ffffff !important;
  border: 2px solid rgba(0,212,255,0.6) !important;
  box-shadow:
    0 0 0 4px rgba(0,212,255,0.10),
    0 0 12px rgba(0,212,255,0.30) !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Future: outlined ring, dark fill — ahead, clearly defined */
.horizontal-rt-item:not(.active) .dot-center {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1.5px solid rgba(255,255,255,0.22) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}


/* ── ECOSYSTEM SECTION: OWNERSHIP row — single differentiator highlight ──── */
/* Restrained cyan accent. Elegant, not loud. Everything else unchanged. */

.v15-spec-row--ownership {
  border-top-color: rgba(0,212,255,0.12) !important;
  border-bottom-color: rgba(0,212,255,0.12) !important;
}

.v15-spec-row--ownership .v15-spec-label {
  color: var(--accent) !important;
  opacity: 0.75 !important;
}

.v15-spec-row--ownership .v15-spec-value {
  color: #ffffff !important;
}

.v15-spec-row--ownership .v15-spec-note {
  color: rgba(139,155,180,0.95) !important;
}


/* ── ECOSYSTEM SECTION: vertical compression (~30%) ─────────────────────────
   Row padding 20px → 12px saves 96px across 6 rows.
   Section padding 80px → 52px saves 56px.
   Head margin 48px → 24px saves 24px.
   Title scale 40px → 32px tightens the heading block.
   Total saved ≈ 180px ≈ 28% — section reads as supporting evidence, not chapter.
   Nothing else changed. ──────────────────────────────────────────────────── */

#features { padding-top: 52px !important; padding-bottom: 52px !important; }

#features .section-head { margin-bottom: 24px !important; }

#features .section-title { font-size: clamp(20px, 2.4vw, 32px) !important; }

#features .section-subtitle {
  font-size: 14px !important;
  margin-top: 8px !important;
}

#features .v15-spec-row { padding: 12px 0 !important; }

#features .spec-disclaimer {
  margin-top: 16px !important;
  font-size: 11px !important;
}


/* ═══════════════════════════════════════════════════════════════
   MICRO-IMPROVEMENTS PASS
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. HOW IT WORKS: process feel ─────────────────────────── */

/* Connector lines bridging the gaps between steps */
.hiw-step {
  position: relative;
}
.hiw-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px; /* step padding-top 24px + circle radius 30px */
  right: -16px;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
  z-index: 0;
}

/* Circles: 48px → 64px, numbers bolder */
.hiw-num {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(255,255,255,0.03) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Active step: cyan-tinted circle, brighter title */
.hiw-num--active {
  border-color: rgba(0,212,255,0.55) !important;
  background: rgba(0,212,255,0.09) !important;
  color: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(0,212,255,0.07), 0 0 18px rgba(0,212,255,0.18) !important;
  font-weight: 800 !important;
}

.hiw-step--active .hiw-title {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.hiw-step--active .hiw-text {
  color: rgba(139,155,180,0.9) !important;
}


/* ── 2. LEARN: slightly larger device render ─────────────────── */
.v15-learn-img {
  max-width: 560px !important;
  /* Scale device render +35%, not the block. transform doesn't affect layout.
     Reset on tablet/mobile (≤900px) — there the block is narrow and the
     scaled device visually overflows into the next section. */
  transform: scale(1.35) !important;
  transform-origin: center center !important;
}
@media (max-width: 900px) {
  .v15-learn-img {
    transform: scale(1.0) !important;
  }
}


/* ── 3. WEB3 CONTROL: slightly larger device render ─────────── */
.v15-web3-img {
  max-width: 460px !important;
  /* Scale just the device render +35%, not the block.
     transform doesn't affect layout — block size stays unchanged.
     Reset below 1180px — at 1.35x a 460px cap can paint up to ~620px wide,
     which bleeds past its grid column into the page's horizontal scroll
     area on real laptop widths (confirmed at 1024px: was overflowing the
     page by 24px). 900px alone only covered phones/tablets, not laptops. */
  transform: scale(1.35) !important;
  transform-origin: center center !important;
}
@media (max-width: 1180px) {
  .v15-web3-img {
    transform: scale(1.0) !important;
  }
}


/* ── 4. ECOSYSTEM: rows even more compact ────────────────────── */
#features .v15-spec-row { padding: 9px 0 !important; }


/* ── 5. DEMO EXPERIENCE: differentiate from "What is ZUREON" ── */
/* Both sections use .demo-card — make Demo Experience cards
   leaner and lighter so they read as supporting context, not
   primary content cards (same visual weight as #current-stage). */
#demo-experience .demo-card {
  min-height: auto !important;
  padding: 20px !important;
  background: rgba(255,255,255,0.025) !important;
  border-color: rgba(255,255,255,0.055) !important;
}
#demo-experience .demo-card strong {
  font-size: 15px !important;
  margin: 14px 0 8px !important;
}
#demo-experience .icon-box {
  width: 44px !important;
  height: 44px !important;
}
#demo-experience .icon-box svg {
  width: 22px !important;
  height: 22px !important;
}


/* ── 6. ROADMAP: cards slightly wider ────────────────────────── */
.roadmap-wrapper { max-width: 1100px !important; }


/* ── ROADMAP: fix card title wrapping ────────────────────────── */
/* With 6 cards and 24px gaps in 1100px wrapper = ~155px per card.
   "Identity & System Design" wraps. Fix: full container width
   + smaller gap + tighter padding + smaller title font. */

.roadmap-wrapper { max-width: 1200px !important; }

.roadmap-grid { gap: 8px !important; }

.rt-card {
  padding: 14px 12px !important;
}

.rt-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

/* ═══════════════════════════════════════════════════════
   v15 hybrid additions (v14 conversion signals,
   restyled to v15 visual grammar)
   ─ Hero claim strip
   ─ Comparison summary
   ─ AI takeaways
   ═══════════════════════════════════════════════════════ */

/* ── HERO CLAIM ─────────────────────────────────────── */
.v15-hero-claim {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 480px;
  padding: 14px 0 14px 18px;
  margin-bottom: 36px;
  border-left: 1px solid rgba(0, 212, 255, 0.28);
}
.v15-hero-claim__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.v15-hero-claim__sub {
  font-size: 13px;
  color: rgba(139, 155, 180, 0.85);
  line-height: 1.55;
}
.v15-hero-claim__accent {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  /* Claim block: drop left-border accent on mobile so the
     centered hero stack reads as a single vertical axis.
     Use a thin top divider instead, content centered. */
  .v15-hero-claim {
    border-left: none;
    border-top: 1px solid rgba(0, 212, 255, 0.22);
    padding: 18px 0 0;
    margin: 0 auto 28px;
    max-width: 460px;
    align-items: center;
    text-align: center;
  }
  .v15-hero-claim__title { font-size: 15px; }
  .v15-hero-claim__sub { font-size: 12.5px; }
  .v15-hero-claim__accent { font-size: 11.5px; }

  /* Button row: ensure stacked buttons are horizontally centered
     within their column (max-width 280 was causing left-bias). */
  .hero-left > div:last-child {
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-left .btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ── COMPARISON SUMMARY ─────────────────────────────── */
/* Paired transformation rows: from → to.
   Echoes the spec-table grammar of the Ecosystem section. */
.v15-comp-summary {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 0 8px;
}
.v15-comp-sum-headers,
.v15-comp-sum-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: center;
  column-gap: 0;
}
.v15-comp-sum-headers {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.v15-comp-sum-head {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139, 155, 180, 0.45);
  text-align: right;
}
.v15-comp-sum-head--us {
  color: var(--accent);
  text-align: left;
  opacity: 0.9;
}
.v15-comp-sum-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.4s ease;
}
.v15-comp-sum-row:last-child { border-bottom: none; }
.v15-comp-sum-row:hover { background: rgba(255, 255, 255, 0.01); }
.v15-comp-sum-from {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(139, 155, 180, 0.55);
  text-align: right;
  padding-right: 4px;
}
.v15-comp-sum-arrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 212, 255, 0.4);
  text-align: center;
  line-height: 1;
  user-select: none;
}
.v15-comp-sum-to {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #fff;
  text-align: left;
  padding-left: 4px;
}
@media (max-width: 640px) {
  .v15-comp-summary {
    max-width: 100%;
    margin-top: 44px;
    padding: 0;
  }
  .v15-comp-sum-headers {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 14px;
    column-gap: 16px;
  }
  .v15-comp-sum-head {
    font-size: 10px;
    text-align: left;
  }
  .v15-comp-sum-head--us { text-align: left; }
  .v15-comp-sum-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 16px 0;
  }
  .v15-comp-sum-from {
    text-align: left;
    font-size: 13px;
    padding-right: 0;
    opacity: 0.7;
  }
  .v15-comp-sum-arrow { display: none; }
  .v15-comp-sum-to {
    text-align: left;
    font-size: 14.5px;
    padding-left: 14px;
    border-left: 2px solid rgba(0, 212, 255, 0.45);
  }
}

/* ── SUCCESS STATE: Telegram invite CTA ─────────────── */
/* Primary post-submit action — bridge from email to warm community. */
.founder-success-tg {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin: 24px 0 8px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.02));
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-align: left;
}
.founder-success-tg:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.14), rgba(0, 212, 255, 0.04));
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}
.founder-success-tg-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-success-tg-icon i,
.founder-success-tg-icon svg {
  width: 18px;
  height: 18px;
}
.founder-success-tg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.founder-success-tg-body strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.founder-success-tg-body span {
  color: rgba(139, 155, 180, 0.85);
  font-size: 12.5px;
  line-height: 1.45;
}
.founder-success-tg-arrow {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.founder-success-tg:hover .founder-success-tg-arrow {
  opacity: 1;
  transform: translateX(2px);
}
.founder-success-tg-arrow i,
.founder-success-tg-arrow svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 480px) {
  .founder-success-tg {
    padding: 14px 16px;
    gap: 12px;
  }
  .founder-success-tg-icon { width: 36px; height: 36px; }
  .founder-success-tg-body strong { font-size: 13.5px; }
  .founder-success-tg-body span { font-size: 12px; }
}

/* ── HUB-FLOW mobile inset ──────────────────────────── */
/* Root: line 4288 sets `#zureon-hub .hub-copy { padding-left: 0 }`
   with id-level specificity, killing the 20px inset that mobile.css
   line 802 tries to set. Cards therefore touch viewport edges.
   Fix: restore symmetric horizontal padding on the hub-copy block
   at id-level specificity so cards breathe on mobile. */
@media (max-width: 960px) {
  #zureon-hub .hub-copy {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 480px) {
  #zureon-hub .hub-copy {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ── AI TAKEAWAYS ───────────────────────────────────── */
/* Subtle caption strip under the mock cards.
   Single horizontal row that wraps; not a feature list. */
.v15-ai-takeaways {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}
.v15-ai-takeaways li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(139, 155, 180, 0.65);
}
.v15-ai-tk-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.55);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .v15-ai-takeaways {
    margin-top: 22px;
    gap: 6px 14px;
    max-width: 560px;
  }
  .v15-ai-takeaways li {
    font-size: 11.5px;
  }
}

/* ═══════════════════════════════════════════════════════
   Roadmap — Two-track structure (Software + Hardware)
   Software track = primary, full opacity.
   Hardware track = parallel, visually subordinate (muted,
   no animated line, no NOW badge) to signal "separately
   funded, outside the TON ecosystem roadmap above".
   Maintains contrast ≥4.5:1 on muted state (a11y).
   ═══════════════════════════════════════════════════════ */
.roadmap-track-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  margin: 8px auto 28px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.04);
}
.roadmap-track-label-hw {
  color: rgba(255, 255, 255, 0.55);          /* contrast ~6:1 on #010308 — passes WCAG AA */
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  margin-top: 56px;                           /* separates parallel track from software track */
  position: relative;
}
.roadmap-track-label-hw::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -28px;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.12) 100%);
  transform: translateX(-50%);
}
.roadmap-wrapper-hw {
  max-width: 640px;                           /* narrower — only 2 items, no full-width sweep */
  opacity: 0.78;                              /* subordinate to software track */
  transition: opacity 0.3s ease;
}
.roadmap-wrapper-hw:hover {
  opacity: 1;                                 /* hover restores full read */
}
.roadmap-line-hw {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%) !important;
  animation: none !important;                 /* no animation — hardware track is calm */
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.rt-item-hw .dot-center {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: none !important;
}
.rt-item-hw .rt-card {
  border-color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.0) 100%);
}
.rt-item-hw .rt-date {
  color: rgba(255, 255, 255, 0.5);            /* not accent cyan — hardware uses neutral palette */
}
.rt-item-hw .rt-name {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 720px) {
  .roadmap-track-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 5px 11px;
    margin: 4px auto 18px;
  }
  .roadmap-track-label-hw {
    margin-top: 40px;
  }
  .roadmap-track-label-hw::before {
    top: -22px;
    height: 14px;
  }
  .roadmap-wrapper-hw {
    max-width: 100%;
  }
}
