/* ===========================================================
   VOLSLINE AI — STYLESHEET v2
   Signature motif: the broken "shard" strokes from the logo,
   used as a recurring structural device (dividers, bg field,
   markers) instead of generic blurred orbs.
   =========================================================== */

:root {
  --purple:       #6223DF;
  --purple-mid:   #7B3FFF;
  --purple-light: #A87AFF;
  --purple-muted: #58537F;
  --purple-glow:  rgba(98, 35, 223, 0.35);
  --amber:        #E8B04B;   /* single warm counter-accent, used sparingly */

  --black:        #08080D;
  --black-card:   #101018;
  --black-card2:  #15151F;
  --white:        #FFFFFF;
  --white-dim:    rgba(255,255,255,0.7);
  --white-faint:  rgba(255,255,255,0.08);
  --white-hair:   rgba(255,255,255,0.14);

  --font-display: 'Unbounded', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    0.25s;
  --dur:         0.5s;

  --nav-h: 72px;
  --nav-h-scrolled: 58px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; }
.ic { display: block; flex-shrink: 0; }

::selection { background: var(--purple); color: var(--white); }

/* Main site fade-in once loading screen dismisses */
#main-site {
  opacity: 0;
}
#main-site.is-ready {
  opacity: 1;
  transition: opacity 0.6s var(--ease-soft);
}

:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================
   SCROLL-REVEAL (generic)
   ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
  transition-delay: calc(var(--ri, 0) * 0.09s);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 0.09s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Parallax targets — transform applied via JS transform3d */
[data-parallax] {
  will-change: transform;
}

/* =====================
   LOADING SCREEN
   ===================== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loading-shards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.lshard {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--purple-mid), transparent);
  opacity: 0.35;
  animation: shardDrift 5s ease-in-out infinite;
}
.lshard.s1 { left: 18%; height: 60%; top: 10%; animation-delay: 0s; }
.lshard.s2 { left: 52%; height: 40%; top: 30%; animation-delay: 1.2s; }
.lshard.s3 { left: 80%; height: 50%; top: 15%; animation-delay: 2.4s; }

@keyframes shardDrift {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.2; }
  50%      { transform: translateY(-10px) scaleY(1.08); opacity: 0.5; }
}

#loading-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  z-index: 2;
}

#loading-fallback {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--purple);
  box-shadow: 0 0 32px var(--purple-glow);
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo { width: 100%; height: 100%; object-fit: cover; }

.loading-bar-track {
  width: 200px;
  height: 3px;
  background: var(--white-faint);
  border-radius: 99px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-mid));
  border-radius: 99px;
  animation: loadBar 2.5s var(--ease-soft) forwards;
}

.loading-text {
  font-size: 0.85rem;
  color: var(--white-dim);
  letter-spacing: 0.08em;
}

.dots::after { content: ''; animation: dots 1.5s steps(4, end) infinite; }

@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}
@keyframes loadBar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@keyframes loadingPulse {
  0%, 100% { box-shadow: 0 0 32px var(--purple-glow); }
  50%      { box-shadow: 0 0 56px rgba(98,35,223,0.6); }
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8,8,13,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--white-faint);
  transition: height var(--dur-fast) var(--ease-soft), background var(--dur-fast);
}

.nav.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(8,8,13,0.92);
}

.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform var(--dur-fast) var(--ease-soft);
}
.nav-logo:hover img { transform: rotate(-8deg) scale(1.05); }

.nav-logo em { font-style: normal; color: var(--purple-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li > a {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: color var(--dur-fast);
}
.nav-links > li > a:not(.nav-cta) span { position: relative; }
.nav-links > li > a:not(.nav-cta) span::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--purple-light);
  transition: right var(--dur) var(--ease);
}
.nav-links > li > a:not(.nav-cta):hover { color: var(--white); }
.nav-links > li > a:not(.nav-cta):hover span::after { right: 0; }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-sm);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast) !important;
}
.nav-cta:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(98,35,223,0.4);
}

.nav-hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease-soft);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   MOBILE NAV — full-screen overlay
   ===================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(8,8,13,0.98);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-inner {
  width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.mobile-nav li {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: calc(var(--i) * 0.06s);
}
.mobile-nav.open li { opacity: 1; transform: translateY(0); }

.mobile-nav a {
  display: block;
  padding: 16px 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.mobile-nav-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-muted);
  font-size: 0.8rem;
}
.mobile-nav-foot .ic { color: var(--purple-mid); }

body.nav-open { overflow: hidden; }

/* =====================
   SHARD MOTIF (signature bg element)
   ===================== */
.hero-shard-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hshard {
  position: absolute;
  color: var(--purple);
  opacity: 0.14;
  filter: blur(0.3px);
}
.hshard-1 { width: 160px; top: -6%; left: 4%;  transform: rotate(-6deg); animation: shardFloat 9s ease-in-out infinite; }
.hshard-2 { width: 100px; top: 55%; left: 88%; transform: rotate(10deg); opacity: 0.1; animation: shardFloat 12s ease-in-out infinite reverse; }
.hshard-3 { width: 220px; top: 70%; left: -4%; transform: rotate(4deg);  opacity: 0.08; animation: shardFloat 14s ease-in-out infinite; }
.hshard-4 { width: 180px; top: 5%;  left: 82%; transform: rotate(-10deg); opacity: 0.1; animation: shardFloat 10s ease-in-out infinite; }
.hshard-5 { width: 130px; top: 60%; left: 6%;  transform: rotate(8deg); opacity: 0.09; animation: shardFloat 11s ease-in-out infinite reverse; }

@keyframes shardFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, -6deg)); }
  50%      { transform: translateY(-22px) rotate(calc(var(--r, -6deg) + 2deg)); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 45%, black 0%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(98,35,223,0.15);
  border: 1px solid rgba(98,35,223,0.4);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  width: fit-content;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--purple-mid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple-mid);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero-title .line-1 {
  display: block;
  font-size: clamp(2.6rem, 10vw, 5.6rem);
  color: var(--white);
}
.hero-title .line-2 {
  display: block;
  font-size: clamp(3.8rem, 15vw, 8.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #7B3FFF 0%, #A87AFF 50%, #6223DF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.12rem);
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 520px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--purple-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider { width: 1px; height: 32px; background: var(--white-hair); }

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: var(--white);
  padding: 15px 26px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  width: fit-content;
  overflow: hidden;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  box-shadow: 0 8px 32px rgba(98,35,223,0.35);
}
.hero-btn .ic { transition: transform var(--dur-fast) var(--ease); }
.hero-btn:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(98,35,223,0.5);
}
.hero-btn:hover .ic { transform: translateX(4px); }
.hero-btn:active { transform: translateY(0); }

.hero-logo-float {
  position: absolute;
  right: 6%;
  top: 52%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}

.hero-logo-img {
  width: 176px;
  height: 176px;
  border-radius: 32px;
  object-fit: cover;
  position: relative;
  z-index: 3;
  animation: heroLogoFloat 6s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(98,35,223,0.5);
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(98,35,223,0.3);
  animation: ringExpand 4s ease-in-out infinite;
}
.ring-1 { width: 216px; height: 216px; animation-delay: 0s; }
.ring-2 { width: 256px; height: 256px; animation-delay: 0.8s; opacity: 0.6; }
.ring-3 { width: 300px; height: 300px; animation-delay: 1.6s; opacity: 0.3; }

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(1.5deg); }
}
@keyframes ringExpand {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.15; transform: scale(1.06); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--white-hair);
  border-radius: 20px;
  z-index: 2;
}
.hero-scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =====================
   SECTIONS (generic)
   ===================== */
.section { padding: 100px 24px; position: relative; }
.section-dark { background: var(--black-card); }
.container { max-width: 1240px; margin: 0 auto; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #7B3FFF, #A87AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================
   ABOUT CARDS
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.about-card {
  background: var(--black-card2);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.about-card:hover {
  border-color: rgba(98,35,223,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.about-card-icon,
.cap-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--purple-light);
  background: rgba(98,35,223,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.about-card:hover .about-card-icon,
.cap-card:hover .cap-icon { transform: scale(1.08) rotate(-4deg); background: rgba(98,35,223,0.2); }

.about-card h3, .cap-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.about-card p, .cap-card p {
  font-size: 0.93rem;
  color: var(--white-dim);
  line-height: 1.75;
}

/* =====================
   TIMELINE
   ===================== */
.timeline {
  position: relative;
  padding-left: 44px;
}

/* Track (static, faint) */
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 4px; bottom: 4px;
  width: 2px;
  background: var(--white-faint);
  border-radius: 2px;
}

/* Progress fill — height driven by JS scroll progress */
.timeline-progress {
  position: absolute;
  left: 15px;
  top: 4px;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--purple-light), var(--purple));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--purple-glow);
  transition: height 0.15s linear;
}

.timeline-item {
  position: relative;
  margin-bottom: 56px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -44px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--black-card);
  border: 2px solid var(--white-hair);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
  z-index: 2;
}
.timeline-item.visible .timeline-marker {
  border-color: var(--purple);
  color: var(--purple-light);
  box-shadow: 0 0 0 4px rgba(98,35,223,0.12), 0 0 20px rgba(98,35,223,0.35);
  animation: markerPop 0.55s var(--ease);
}
@keyframes markerPop {
  0%   { transform: scale(0.5); }
  55%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.timeline-content {
  background: var(--black-card2);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: border-color var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.timeline-item:hover .timeline-content {
  border-color: rgba(98,35,223,0.35);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.tl-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.tl-date::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--purple-light);
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.timeline-content p {
  font-size: 0.93rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 13px;
}
.timeline-content p:last-of-type { margin-bottom: 0; }
.timeline-content p + .tl-tag { margin-top: 14px; }
.timeline-content p em { font-style: italic; color: var(--white); }

.tl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.tl-tag-fail    { background: rgba(239,68,68,0.15); color: #F87171; border: 1px solid rgba(239,68,68,0.3); }
.tl-tag-success { background: rgba(34,197,94,0.15); color: #4ADE80; border: 1px solid rgba(34,197,94,0.3); }
.tl-tag-live    { background: rgba(98,35,223,0.2);  color: var(--purple-light); border: 1px solid rgba(98,35,223,0.4); }

/* =====================
   CAPABILITIES
   ===================== */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.cap-card {
  background: var(--black-card2);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.cap-card:hover {
  border-color: rgba(98,35,223,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.cap-card-highlight {
  border-color: rgba(98,35,223,0.4);
  background: linear-gradient(135deg, rgba(98,35,223,0.14), rgba(10,10,15,0.8));
}
.cap-card-highlight .cap-icon { background: rgba(98,35,223,0.24); }

/* =====================
   DISCLAIMER
   ===================== */
.section-disclaimer { padding: 56px 24px; }

.disclaimer-box {
  background: rgba(88,83,127,0.1);
  border: 1px solid rgba(88,83,127,0.35);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--amber);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}
.disclaimer-text p { font-size: 0.87rem; color: var(--white-dim); line-height: 1.75; }
.disclaimer-text strong { color: var(--white); font-weight: 600; }

/* =====================
   LAUNCH / COMING SOON
   ===================== */
.section-launch {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
}
.launch-shard-field { z-index: 0; }

.launch-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  gap: 18px;
}

.launch-badge {
  display: inline-block;
  background: rgba(98,35,223,0.2);
  border: 1px solid rgba(123,63,255,0.5);
  color: var(--purple-light);
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.launch-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.launch-sub { font-size: 0.93rem; color: var(--white-dim); }
.launch-date {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}
.launch-note { font-size: 0.87rem; color: rgba(255,255,255,0.5); max-width: 460px; }

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--black-card2);
  border: 1px solid rgba(98,35,223,0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 68px;
  transition: box-shadow 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.cd-block:hover {
  border-color: rgba(98,35,223,0.55);
  box-shadow: 0 0 24px rgba(98,35,223,0.2);
}
.cd-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.cd-num.tick { animation: numTick 0.4s var(--ease); }
@keyframes numTick {
  0%   { transform: translateY(-6px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}
.cd-label {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-muted);
  font-weight: 600;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-muted);
  margin-top: 14px;
}

.notify-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin-top: 6px;
}
.notify-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-card2);
  border: 1px solid var(--white-hair);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  transition: border-color var(--dur-fast);
}
.notify-input-wrap:focus-within { border-color: var(--purple); }
.notify-input-wrap .ic { color: var(--purple-muted); }

.notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.32); }

.notify-form button {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.notify-form button:hover { background: var(--purple-mid); transform: translateY(-1px); }
.notify-form button:disabled { opacity: 0.7; cursor: default; transform: none; }

.notify-note {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-top: -4px;
}
.notify-note.show { display: flex; animation: fadeUp 0.4s var(--ease) forwards; }
.notify-note.ok   { color: #4ADE80; }
.notify-note.err  { color: #F87171; }
.notify-note .ic  { flex-shrink: 0; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--black-card);
  border-top: 1px solid var(--white-faint);
  padding: 40px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--font-display); font-size: 0.93rem; font-weight: 700; }
.footer-brand span { font-size: 0.74rem; color: var(--purple-mid); }
.footer-info p { font-size: 0.79rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-info strong { color: rgba(255,255,255,0.75); }
.footer-right { text-align: right; }
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   RESPONSIVE — mobile first breakpoints
   ============================================================ */

/* Tablet and below: collapse nav, stack hero */
@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-logo-float {
    position: relative;
    right: auto; top: auto; transform: none;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    margin-top: 20px;
  }
  .hero-logo-img { width: 120px; height: 120px; border-radius: 26px; }
  .ring-1 { width: 148px; height: 148px; }
  .ring-2 { width: 184px; height: 184px; }
  .ring-3 { width: 220px; height: 220px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Phones */
@media (max-width: 600px) {
  :root { --nav-h: 62px; }

  .hero { padding-bottom: 60px; }
  .hero-content { gap: 20px; }
  .hero-scroll-cue { display: none; }

  .section { padding: 64px 20px; }
  .section-title { margin-bottom: 40px; }

  .about-grid, .caps-grid { gap: 14px; }
  .about-card, .cap-card { padding: 24px; }

  .timeline { padding-left: 34px; }
  .timeline::before { left: 11px; }
  .timeline-marker { left: -34px; width: 26px; height: 26px; }
  .timeline-marker .ic { width: 14px; height: 14px; }
  .timeline-content { padding: 20px; }
  .timeline-item { margin-bottom: 40px; }

  .disclaimer-box { flex-direction: column; padding: 22px; gap: 16px; }

  .countdown { gap: 6px; }
  .cd-block { padding: 10px 8px; min-width: 0; flex: 1; }
  .cd-num { font-size: 1.35rem; }
  .cd-sep { font-size: 1.35rem; margin-top: 10px; }

  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }

  .mobile-nav a { font-size: 1.5rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .hero-title .line-1 { font-size: 2.4rem; }
  .hero-title .line-2 { font-size: 3.6rem; }
  .hero-stats { gap: 16px; }
}

/* =====================
   REDUCED MOTION
   ===================== */
@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;
  }
}
