/* ═══════════════ CUSTOM FONTS ═══════════════ */
@font-face {
  font-family: 'Natural Mono';
  src: url('Natural Mono Alt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep: #050510;
  --void: #0a0a1a;
  --nebula-1: #1a0a2e;
  --nebula-2: #0d1b3e;
  --accent: #7b6ff0;
  --accent-glow: #a78bfa;
  --warm: #eaf7f1;
  --soft: #c4b5d4;
  --muted: #8888aa;
  --light: #e8e0f0;
  --gold: #d4a574;
  --rose: #d4748a;
  --teal: #5cb8b2;
  --serif: 'Nanum Myeongjo', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'Natural Mono', 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  background: var(--deep);
  color: var(--light);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: clip;
}

/* ═══════════════ CANVAS BACKGROUND ═══════════════ */
#star-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════ NAVIGATION ═══════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(5, 2, 16, 0.15) 0%, transparent 100%);
  border-bottom: none;
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 1rem 3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5, 2, 16, 0.5) 0%, rgba(26, 10, 46, 0.2) 80%, transparent 100%);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.2));
  transition: filter 0.3s ease;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 16px rgba(167, 139, 250, 0.45));
}

.footer-brand .logo-img {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent-glow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--light); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid rgba(123, 111, 240, 0.4) !important;
  border-radius: 100px;
  color: var(--accent-glow) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: rgba(123, 111, 240, 0.15) !important;
  border-color: var(--accent-glow) !important;
}

.nav-cta::after { display: none !important; }

/* Two-button download group in nav */
.nav-downloads {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}
.nav-cta-android {
  background: rgba(123, 111, 240, 0.06) !important;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed galaxy video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 0.75;
}

/* Darken left for text legibility, let right breathe */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(5,2,16,0.78) 0%, rgba(5,2,16,0.35) 55%, rgba(5,2,16,0.5) 100%),
    linear-gradient(to bottom, rgba(5,2,16,0.5) 0%, rgba(5,2,16,0.0) 25%, rgba(5,2,16,0.0) 75%, rgba(5,2,16,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Two-column split layout */
.hero-split {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.5rem, 5vw, 5rem) 3rem;
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: auto;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-large {
  width: clamp(200px, 24vw, 300px);
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 0 28px rgba(167,139,250,0.4));
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.hero-phone-wrap {
  width: clamp(180px, 22vw, 265px);
  border-radius: 38px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 30px 80px rgba(0,0,0,0.65),
    0 0 70px rgba(123,111,240,0.3);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-phone-wrap video {
  width: 100%;
  display: block;
}

/* Hero store buttons */
.hero-store-btns {
  display: flex;
  flex-direction: row;
  gap: 0.85rem;
  margin-top: 2.4rem;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
  flex-wrap: wrap;
}

.hero-scroll-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll-cta span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-cta svg {
  color: var(--muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
}

.btn-store svg {
  opacity: 0.6;
  transition: opacity 0.4s ease;
  flex-shrink: 0;
}

.btn-store:hover {
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(123, 111, 240, 0.08);
  color: var(--warm);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(123, 111, 240, 0.18), 0 0 0 1px rgba(167, 139, 250, 0.12);
}

.btn-store:hover svg { opacity: 1; }

/* Orb — subtle glow behind the text */
.hero-orb {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(167, 139, 250, 0.1),
    rgba(123, 111, 240, 0.05) 50%,
    transparent 75%
  );
  filter: blur(55px);
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  animation: orbPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -60%) scale(1.15); opacity: 0.9; }
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--warm);
  max-width: 560px;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 400;
}

.hero-h1-accent {
  color: var(--accent-glow);
}

.hero-sub {
  font-size: 1rem;
  color: var(--soft);
  max-width: 460px;
  margin-bottom: 0.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
  padding: 0.85rem 2.4rem;
  background: linear-gradient(135deg, var(--accent), #5b4fd0);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 30px rgba(123, 111, 240, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(123, 111, 240, 0.5);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  border: 1px solid rgba(123, 111, 240, 0.5);
  background: rgba(123, 111, 240, 0.12);
  color: var(--accent-glow);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-accent:hover {
  background: rgba(123, 111, 240, 0.22);
  border-color: var(--accent-glow);
  color: var(--warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(123, 111, 240, 0.25), 0 0 0 1px rgba(167, 139, 250, 0.15);
}

.btn-ghost {
  padding: 0.85rem 2.4rem;
  background: transparent;
  color: var(--soft);
  border: 1px solid rgba(196, 181, 212, 0.2);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  background: rgba(123, 111, 240, 0.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-glow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero {
  position: relative;
  z-index: 1;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.2rem, 3vw, 2rem) clamp(3rem, 6vw, 5rem);
}

/* Page hero with video background */
.page-hero--video {
  overflow: hidden;
}

.page-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  opacity: 0.6;
}

.page-hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,2,16,0.3) 0%, rgba(5,2,16,0.7) 70%),
    linear-gradient(to bottom, rgba(5,2,16,0.4) 0%, rgba(5,2,16,0.0) 30%, rgba(5,2,16,0.0) 70%, rgba(5,2,16,0.9) 100%);
  z-index: -1;
  pointer-events: none;
}

.page-hero-orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(167, 139, 250, 0.25),
    rgba(123, 111, 240, 0.1) 40%,
    transparent 75%
  );
  filter: blur(40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  animation: orbPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.page-hero .hero-eyebrow {
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm);
  max-width: 900px;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--accent-glow);
  font-weight: 400;
}

/* Luminous heading treatment */
.text-glow-pulse {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255,255,255,0.6),
    0 0 25px rgba(167,139,250,0.4),
    0 0 50px rgba(167,139,250,0.2);
  animation: glowPulse 3s ease-in-out infinite;
  font-style: italic;
}
.text-glow-pulse[style*="accent-glow"] {
  text-shadow:
    0 0 10px rgba(167,139,250,0.6),
    0 0 25px rgba(167,139,250,0.4),
    0 0 50px rgba(167,139,250,0.2);
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(255,255,255,0.4),
      0 0 25px rgba(167,139,250,0.2),
      0 0 50px rgba(167,139,250,0.1);
  }
  50% {
    text-shadow:
      0 0 15px rgba(255,255,255,0.8),
      0 0 35px rgba(167,139,250,0.5),
      0 0 70px rgba(167,139,250,0.3);
  }
}

.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--accent-glow) 0%,
    var(--accent-glow) 30%,
    #ffffff 50%,
    var(--accent-glow) 70%,
    var(--accent-glow) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
}

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

.heading-glow {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 35%, var(--warm) 75%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.heading-glow em {
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  font-size: 1rem;
  color: var(--soft);
  max-width: 500px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

/* ═══════════════ SECTIONS COMMON ═══════════════ */
section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 3vw, 2rem);
}

section::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 16, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--warm);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent-glow);
}

/* Inverted: base text purple, em text mint white */
.section-title--inv {
  color: var(--accent-glow);
}
.section-title--inv em {
  color: var(--warm);
  font-style: italic;
}

/* ═══════════════ ABOUT / VISION ═══════════════ */
.vision {
  background: linear-gradient(180deg, transparent, rgba(26, 10, 46, 0.3), transparent);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.vision-text p {
  color: var(--soft);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.vision-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galaxy-vis {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at center,
    rgba(123, 111, 240, 0.2),
    rgba(92, 184, 178, 0.1) 40%,
    rgba(212, 116, 138, 0.05) 60%,
    transparent 75%
  );
  animation: galaxySpin 30s linear infinite;
}

@keyframes galaxySpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.galaxy-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.galaxy-ring:nth-child(1) {
  width: 100%; height: 100%;
  border-color: rgba(123, 111, 240, 0.15);
}
.galaxy-ring:nth-child(2) {
  width: 72%; height: 72%;
  border-color: rgba(92, 184, 178, 0.12);
}
.galaxy-ring:nth-child(3) {
  width: 44%; height: 44%;
  border-color: rgba(212, 165, 116, 0.15);
}

.galaxy-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(123, 111, 240, 0.3);
}

.galaxy-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 8px var(--accent-glow);
}

.galaxy-dot:nth-child(5) { top: 0; left: 50%; }
.galaxy-dot:nth-child(6) { top: 50%; right: 0; }
.galaxy-dot:nth-child(7) { bottom: 15%; left: 12%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.galaxy-dot:nth-child(8) { top: 20%; right: 10%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }

/* ═══════════════ MIRROR SECTION ═══════════════ */
.mirror-section {
  background: linear-gradient(180deg, transparent, rgba(13, 27, 62, 0.2), transparent);
}

.mirror-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mirror-header p {
  color: var(--soft);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.mirror-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mirror-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 111, 240, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mirror-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mirror-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(123, 111, 240, 0.2);
  transform: translateY(-4px);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.card-icon.safety { background: rgba(123, 111, 240, 0.12); }
.card-icon.perf { background: rgba(92, 184, 178, 0.12); }
.card-icon.open { background: rgba(212, 165, 116, 0.12); }

.mirror-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.8rem;
}

.mirror-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.stat-highlight {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-glow), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-top: 1rem;
}

/* ═══════════════ EXPERIENCE SECTION ═══════════════ */
.experience {
  background: linear-gradient(180deg, transparent, rgba(26, 10, 46, 0.15), transparent);
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.exp-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.exp-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: default;
}

.exp-step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.step-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: rgba(123, 111, 240, 0.25);
  line-height: 1;
  min-width: 40px;
}

.step-content h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--warm);
  margin-bottom: 0.4rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.exp-quote {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.015);
  border-left: 2px solid var(--accent);
  border-radius: 0 20px 20px 0;
  position: sticky;
  top: 8rem;
}

.exp-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--warm);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.exp-quote cite {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

/* ═══════════════ JOURNEY PINNED ═══════════════ */
.journey-pin {
  position: relative;
  z-index: 1;
  height: 500vh;
}

.journey-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.journey-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.journey-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.journey-panel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 1100px;
  padding: 2rem clamp(1.5rem, 3vw, 3rem);
  width: 100%;
}

.journey-panel-text {
  flex: 1;
  max-width: 440px;
}

.journey-panel-text .step-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(123, 111, 240, 0.35);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.journey-panel-text h4 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 1.2rem;
}

.journey-panel-text p {
  color: var(--soft);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.85;
}

.journey-dots {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 10;
}

.journey-dot {
  font-size: 0.7rem;
  color: rgba(167, 139, 250, 0.25);
  transition: color 0.4s ease, transform 0.4s ease;
  cursor: default;
}

.journey-dot.active {
  color: rgba(167, 139, 250, 0.9);
  transform: scale(1.4);
}

.journey-panel-phone {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .journey-pin { height: 500vh; }
  .journey-dots { display: none; }
  .journey-panel-inner { flex-direction: column; gap: 2rem; padding: 2rem 1.5rem; text-align: center; }
  .journey-panel-phone .phone-mockup { width: 180px !important; }
  .journey-panel-text h4 { font-size: 1.8rem !important; margin-bottom: 0.8rem !important; }
  .journey-panel-text p { font-size: 0.9rem !important; line-height: 1.7 !important; }
}

@media (max-width: 480px) {
  .journey-panel-text .step-num { font-size: 2rem !important; }
  .journey-panel-text h4 { font-size: 1.6rem !important; }
  .journey-panel-text p { font-size: 0.85rem !important; }
}

/* ═══════════════ METRICS BAR ═══════════════ */
.metrics-bar {
  border-top: 1px solid rgba(123, 111, 240, 0.08);
  border-bottom: 1px solid rgba(123, 111, 240, 0.08);
  background: rgba(10, 10, 26, 0.6);
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.metrics-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-item .metric-value {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--warm);
  margin-bottom: 0.3rem;
}

.metric-item .metric-value span {
  color: var(--accent-glow);
}

.metric-item .metric-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════ PHILOSOPHY ═══════════════ */
.philosophy {
  text-align: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.2rem, 3vw, 2rem);
  background: radial-gradient(ellipse at center, rgba(26, 10, 46, 0.25), transparent 70%);
}

.philosophy .section-title {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.philosophy p {
  color: var(--soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.85;
}

/* ═══════════════ HOME OVERVIEW CARDS ═══════════════ */
.overview {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.overview-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.overview-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 111, 240, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: block;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overview-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(123, 111, 240, 0.2);
  transform: translateY(-4px);
}

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

.overview-card-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.8rem;
}

.overview-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.8rem;
}

.overview-card h3 em {
  font-style: italic;
  color: var(--accent-glow);
}

.overview-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.overview-card-arrow {
  font-size: 0.8rem;
  color: var(--accent-glow);
  letter-spacing: 0.1em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.overview-card:hover .overview-card-arrow {
  transform: translateX(5px);
}

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section {
  text-align: center;
  padding: 6rem 2rem 8rem;
  position: relative;
  z-index: 1;
}

.cta-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  max-width: 960px;
  margin: 0 auto;
}

.cta-galaxy-visual {
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .cta-split {
    flex-direction: column;
    gap: 2rem;
  }
  .cta-galaxy-visual:first-child {
    display: none;
  }
  .cta-galaxy-visual:last-child {
    order: 1;
  }
}

/* ═══════════════ FOOTER ═══════════════ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(123, 111, 240, 0.06);
  padding: 4rem 2rem 2.5rem;
  background: rgba(5, 5, 16, 0.8);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent-glow); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
}

.footer-privacy {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-privacy:hover {
  color: var(--accent-glow);
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-terms {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-terms:hover {
  color: var(--accent-glow);
}

.footer-contact {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: var(--accent-glow);
}

/* ═══════════════ CONTACT FORM ═══════════════ */
.contact-form-section {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 8rem;
}

.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.contact-form-glass {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 3.5rem 3rem;
  background: rgba(8, 6, 24, 0.65);
  backdrop-filter: blur(52px) saturate(180%);
  -webkit-backdrop-filter: blur(52px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.contact-form-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(167, 139, 250, 0.45) 50%,
    rgba(255, 255, 255, 0.2) 70%,
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
}

.contact-form-nebula {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 90%, rgba(123, 111, 240, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 20%, rgba(167, 139, 250, 0.06) 0%, transparent 45%);
  animation: nebulaDrift 11s ease-in-out infinite;
}

.contact-form-glass form {
  position: relative;
  z-index: 2;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.contact-form-field label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-glow);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--warm);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(136, 136, 170, 0.5);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(123, 111, 240, 0.04);
  box-shadow: 0 0 0 3px rgba(123, 111, 240, 0.08), 0 0 30px rgba(123, 111, 240, 0.06);
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 140px;
}

/* Custom dropdown */
.custom-select {
  position: relative;
  width: 100%;
  z-index: 10;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--warm);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
}

.custom-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.custom-select.open .custom-select-trigger {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(123, 111, 240, 0.04);
  box-shadow: 0 0 0 3px rgba(123, 111, 240, 0.08), 0 0 30px rgba(123, 111, 240, 0.06);
}

.custom-select-value[data-placeholder="true"] {
  color: rgba(136, 136, 170, 0.5);
}

.custom-select-arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--accent-glow);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.15);
  background: rgba(8, 6, 24, 0.92);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(123, 111, 240, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
}

.custom-select-options::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(167, 139, 250, 0.35) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-option {
  padding: 0.9rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--soft);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.custom-select-option::before {
  content: '✦';
  position: absolute;
  left: 1.4rem;
  font-size: 0.45rem;
  color: var(--accent-glow);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-option:hover {
  background: rgba(123, 111, 240, 0.08);
  color: var(--warm);
  padding-left: 2.6rem;
}

.custom-select-option:hover::before {
  opacity: 1;
  transform: scale(1);
}

.custom-select-option.selected {
  color: var(--accent-glow);
}

.custom-select-option.selected::before {
  opacity: 0.6;
  transform: scale(1);
}

.custom-select-option.selected:hover::before {
  opacity: 1;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  border: 1px solid rgba(123, 111, 240, 0.35);
  background: rgba(123, 111, 240, 0.08);
  color: var(--accent-glow);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-form-submit:hover {
  background: rgba(123, 111, 240, 0.16);
  border-color: var(--accent-glow);
  color: var(--warm);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(123, 111, 240, 0.2), 0 0 0 1px rgba(167, 139, 250, 0.15);
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.contact-form-success.visible {
  display: block;
  animation: fadeUp 0.6s ease forwards;
}

.contact-form-success-star {
  font-size: 1.8rem;
  color: var(--accent-glow);
  margin-bottom: 1.2rem;
  animation: starTwinkle 3s ease-in-out infinite;
}

.contact-form-success h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.6rem;
}

.contact-form-success p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .contact-form-glass {
    padding: 2.5rem 1.8rem;
    border-radius: 24px;
  }
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ═══════════════ COMPANY TAG ═══════════════ */
.company-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm);
  border: 1px solid rgba(196, 234, 214, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 3rem;
}

/* ═══════════════ WHAT IS ARCARAE (new) ═══════════════ */
.what-is-section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 8rem;
}

/* Staggered realm trio */
.realm-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

.realm-trio-card {
  background: rgba(123, 111, 240, 0.04);
  border: 1px solid rgba(123, 111, 240, 0.1);
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.realm-trio-card:hover {
  border-color: rgba(123, 111, 240, 0.3);
  background: rgba(123, 111, 240, 0.07);
}

/* Stagger: Void floats up, Bridge drops down */
.realm-trio-up   { transform: translateY(-2rem); }
.realm-trio-down { transform: translateY(2rem);  }

.realm-trio-label {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.9rem;
}

.realm-trio-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.realm-trio-card p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Feature callout bar */
/* ── Shared feature text styles ── */
.zigzag-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.zigzag-text h3,
h3.zigzag-text {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent-glow);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.zigzag-text h3 em,
h3.zigzag-text em {
  color: #ffffff;
  font-style: italic;
  text-shadow: 0 0 12px rgba(255,255,255,0.4), 0 0 30px rgba(167,139,250,0.2);
}

.zigzag-text p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.85;
}

.zigzag-phone {
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(123,111,240,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}

.zigzag-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
  pointer-events: none;
}

.zigzag-phone video {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.zigzag-paper {
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(212,116,138,0.08);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}

.zigzag-paper:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(212,116,138,0.15);
}

.zigzag-paper img {
  width: 100%;
  display: block;
}

/* ── VIDEO CARD GRID — 2x2 immersive cards ── */
.feat-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feat-vcard {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 50px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
}

.feat-vcard:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(167,139,250,0.2);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 50px rgba(123,111,240,0.12);
}

.feat-vcard video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.feat-vcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,2,16,0.9) 0%,
    rgba(5,2,16,0.4) 40%,
    rgba(5,2,16,0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.feat-vcard-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feat-vcard-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.feat-vcard-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent-glow);
  line-height: 1.4;
}

.feat-vcard-title em {
  color: #ffffff;
  font-style: italic;
  text-shadow: 0 0 12px rgba(255,255,255,0.4), 0 0 30px rgba(167,139,250,0.2);
}

@media (max-width: 600px) {
  .feat-grid-4 {
    grid-template-columns: 1fr;
  }
  .feat-vcard {
    aspect-ratio: 16 / 9;
  }
}

/* ── TRIPTYCH — text | video | text ── */
.feat-triptych {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 4rem 2rem;
}

.feat-triptych-panel {
  text-align: left;
}

.feat-triptych-panel:last-child {
  text-align: right;
}

.feat-triptych-media {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .feat-triptych {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .feat-triptych-panel,
  .feat-triptych-panel:last-child {
    text-align: center;
  }
  .feat-triptych-media {
    order: -1;
  }
  .zigzag-phone { width: 200px !important; }
}

/* ── 1. CINEMATIC — full-width video background ── */
.feat-cinematic {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  border-radius: 0;
}

.feat-cinematic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.5;
}

.feat-cinematic-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,2,16,0.3) 0%, rgba(5,2,16,0.8) 80%),
    linear-gradient(to bottom, rgba(5,2,16,0.6) 0%, transparent 30%, transparent 70%, rgba(5,2,16,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.feat-cinematic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 4rem 2rem;
}

.feat-cinematic-content h3 {
  font-size: 2rem;
}

.feat-cinematic-content p {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ── 2. SIDE-BY-SIDE — phone prominent, text right ── */
.feat-sidebyside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.feat-sidebyside-media {
  display: flex;
  justify-content: center;
}

.feat-sidebyside-text h3 {
  font-size: 1.8rem;
}

/* ── TRIO — three cards across ── */
.feat-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 6rem auto 2rem;
  padding: 0 2rem;
}

/* Legacy duo kept for other pages */
.feat-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.feat-duo-card {
  padding: 2.5rem;
  border-radius: 28px;
  background: rgba(8,6,24,0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 50px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.5s ease;
}

.feat-duo-card h3 {
  font-size: 1.4rem;
}

.feat-duo-card p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.feat-duo-card--ritual:hover {
  transform: translateY(-5px);
  border-color: rgba(167,139,250,0.2);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 50px rgba(123,111,240,0.1);
}

.feat-duo-card--research:hover {
  transform: translateY(-5px);
  border-color: rgba(212,116,138,0.2);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 50px rgba(212,116,138,0.1);
}

.feat-duo-card--privacy:hover {
  transform: translateY(-5px);
  border-color: rgba(230,190,120,0.2);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 50px rgba(230,190,120,0.1);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .feat-cinematic { min-height: 340px; }
  .feat-cinematic-content h3 { font-size: 1.5rem; }

  .feat-sidebyside {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .feat-sidebyside-media { order: -1; }
  .zigzag-phone { width: 180px; }

  .feat-trio {
    grid-template-columns: 1fr;
  }
  .feat-duo {
    grid-template-columns: 1fr;
  }
}

/* ── Legacy what-is features (kept for other pages) ── */
.what-is-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(123, 111, 240, 0.1);
  border-radius: 24px;
  background: rgba(123, 111, 240, 0.025);
}

.what-is-feature-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.6rem;
}

.what-is-feature h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.what-is-feature p {
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ═══════════════ REALM SCROLL-JACK ═══════════════ */
.realm-pin {
  position: relative;
  z-index: 1;
  height: 400vh;
}

.realm-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.realm-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.realm-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.realm-panel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1000px;
  padding: 2rem 3rem;
  width: 100%;
}

.realm-panel-text {
  flex: 1;
  max-width: 440px;
}

.realm-panel-text .realm-name {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.9rem;
}

.realm-panel-text h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 1rem;
}

.realm-panel-text p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .realm-panel-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .realm-panel-phone .phone-mockup { width: 140px !important; }
}

/* Responsive */
@media (max-width: 800px) {
  .realm-trio { grid-template-columns: 1fr; }
  .realm-trio-up, .realm-trio-down { transform: none; }
  .what-is-features { grid-template-columns: 1fr; }
}

/* ═══════════════ WHAT IS / PROSE BLOCKS (legacy) ═══════════════ */
.what-is {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.what-is-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 300;
  color: var(--warm);
  max-width: 740px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.what-is p {
  color: var(--soft);
  max-width: 600px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  line-height: 1.85;
}

.what-is .tagline {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-top: 2rem;
}

/* ═══════════════ REALM CARDS ═══════════════ */
.realm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}


.realm-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 111, 240, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
}

.realm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.realm-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(123, 111, 240, 0.2);
  transform: translateY(-4px);
}

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

.realm-name {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.6rem;
}

.realm-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.realm-card .realm-action {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--accent-glow);
  margin-bottom: 1.2rem;
}

.realm-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ═══════════════ FEATURE GRID ═══════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 8px var(--accent-glow);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm);
  margin-bottom: 0.3rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════ TESTIMONIALS BENTO ═══════════════ */
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 5rem;
  background: linear-gradient(180deg, transparent, rgba(13,27,62,0.15), transparent);
  overflow: hidden;
}

/* ── Marquee layout ── */
.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track--row1 {
  animation: marqueeScroll 60s linear infinite;
}
.marquee-track--row2 {
  animation: marqueeScroll 55s linear infinite reverse;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Orbit cards ── */
.orbit-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 2.2rem 2.4rem;
  min-width: min(340px, 85vw);
  max-width: 420px;
  flex-shrink: 0;
  background: rgba(8, 6, 24, 0.75);
  backdrop-filter: blur(52px) saturate(180%);
  -webkit-backdrop-filter: blur(52px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 55px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  cursor: default;
}

/* Frosted top-edge */
.orbit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  z-index: 5;
  pointer-events: none;
}

.orbit-card--purple::before {
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5) 50%, transparent);
}
.orbit-card--teal::before {
  background: linear-gradient(90deg, transparent, rgba(92,184,178,0.5) 50%, transparent);
}
.orbit-card--rose::before {
  background: linear-gradient(90deg, transparent, rgba(212,116,138,0.5) 50%, transparent);
}
.orbit-card--gold::before {
  background: linear-gradient(90deg, transparent, rgba(230,190,120,0.5) 50%, transparent);
}
.orbit-card--blue::before {
  background: linear-gradient(90deg, transparent, rgba(100,160,255,0.5) 50%, transparent);
}

/* Comet streak */
.orbit-comet {
  position: absolute;
  top: 0;
  left: -220%;
  width: 60%;
  height: 100%;
  background: linear-gradient(108deg, transparent 20%, rgba(255,255,255,0.05) 50%, transparent 80%);
  animation: cometSweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}
.orbit-card--teal .orbit-comet  { animation-delay: -2s; }
.orbit-card--rose .orbit-comet  { animation-delay: -4s; }
.orbit-card--gold .orbit-comet  { animation-delay: -1s; }
.orbit-card--blue .orbit-comet  { animation-delay: -5s; }

@keyframes cometSweep {
  0%        { left: -220%; opacity: 0; }
  8%        { opacity: 1; }
  40%, 100% { left: 220%; opacity: 0; }
}

/* Orbital ring */
.orbit-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.08);
  top: -60px;
  right: -40px;
  z-index: 1;
  pointer-events: none;
  animation: orbitSpin 20s linear infinite;
}
.orbit-ring::after {
  content: '·';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  line-height: 1;
  animation: orbitSpin 20s linear infinite reverse;
}

.orbit-card--purple .orbit-ring { border-color: rgba(167,139,250,0.1); }
.orbit-card--purple .orbit-ring::after { color: rgba(167,139,250,0.6); }
.orbit-card--teal .orbit-ring   { border-color: rgba(92,184,178,0.1); top: auto; bottom: -50px; right: auto; left: -30px; animation-duration: 25s; }
.orbit-card--teal .orbit-ring::after   { color: rgba(92,184,178,0.6); }
.orbit-card--rose .orbit-ring   { border-color: rgba(212,116,138,0.1); width: 140px; height: 140px; top: -40px; right: -20px; animation-duration: 18s; }
.orbit-card--rose .orbit-ring::after   { color: rgba(212,116,138,0.6); }
.orbit-card--gold .orbit-ring   { border-color: rgba(230,190,120,0.1); top: auto; bottom: -70px; animation-duration: 22s; }
.orbit-card--gold .orbit-ring::after   { color: rgba(230,190,120,0.6); }
.orbit-card--blue .orbit-ring   { border-color: rgba(100,160,255,0.1); width: 200px; height: 200px; top: -80px; right: -60px; animation-duration: 28s; }
.orbit-card--blue .orbit-ring::after   { color: rgba(100,160,255,0.6); }

@keyframes orbitSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Nebula cloud */
.orbit-nebula {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  animation: nebulaDrift 11s ease-in-out infinite;
}
.orbit-card--purple .orbit-nebula {
  background:
    radial-gradient(ellipse at 75% 85%, rgba(123,111,240,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 20%, rgba(167,139,250,0.1) 0%, transparent 45%);
}
.orbit-card--teal .orbit-nebula {
  background:
    radial-gradient(ellipse at 80% 80%, rgba(92,184,178,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 15%, rgba(92,184,178,0.08) 0%, transparent 40%);
  animation-delay: -3s;
}
.orbit-card--rose .orbit-nebula {
  background:
    radial-gradient(ellipse at 80% 75%, rgba(212,116,138,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 20%, rgba(212,165,116,0.08) 0%, transparent 40%);
  animation-delay: -6s;
}
.orbit-card--gold .orbit-nebula {
  background:
    radial-gradient(ellipse at 70% 85%, rgba(230,190,120,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 15%, rgba(230,190,120,0.08) 0%, transparent 40%);
  animation-delay: -2s;
}
.orbit-card--blue .orbit-nebula {
  background:
    radial-gradient(ellipse at 75% 80%, rgba(100,160,255,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 20%, rgba(100,160,255,0.08) 0%, transparent 40%);
  animation-delay: -8s;
}

@keyframes nebulaDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  33%       { transform: translate(12px, -10px) scale(1.06); opacity: 1; }
  66%       { transform: translate(-8px, 8px) scale(0.96); opacity: 0.9; }
}

/* Stars */
.orbit-star {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #f5c518;
  position: relative;
  z-index: 3;
  margin-bottom: 0.8rem;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* Quote text */
.orbit-card blockquote {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(210, 200, 225, 0.9);
  line-height: 1.85;
  position: relative;
  z-index: 3;
}

/* Hover states */
.orbit-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.orbit-card--purple:hover {
  border-color: rgba(167,139,250,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(123,111,240,0.2);
}
.orbit-card--teal:hover {
  border-color: rgba(92,184,178,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(92,184,178,0.2);
}
.orbit-card--rose:hover {
  border-color: rgba(212,116,138,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(212,116,138,0.2);
}
.orbit-card--gold:hover {
  border-color: rgba(230,190,120,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(230,190,120,0.2);
}
.orbit-card--blue:hover {
  border-color: rgba(100,160,255,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(100,160,255,0.2);
}

/* Edge fade masks */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.marquee-wrap {
  position: relative;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5,2,16,1) 0%, transparent 100%);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5,2,16,1) 0%, transparent 100%);
}

@media (max-width: 700px) {
  .orbit-card {
    min-width: 300px;
    max-width: 320px;
    padding: 1.8rem 1.6rem;
  }
  .marquee-wrap::before,
  .marquee-wrap::after {
    width: 40px;
  }
}

/* ═══════════════ SUPPORT PAGE ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 2.2rem 2rem;
  border-radius: 22px;
  background: rgba(8, 6, 24, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167,139,250,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 50px rgba(123,111,240,0.12), inset 0 1px 0 rgba(255,255,255,0.14);
}

.contact-card-icon {
  font-size: 1.3rem;
  color: var(--accent-glow);
  opacity: 0.7;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-card-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 0.5rem;
}

.contact-card-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--warm);
  margin-bottom: 0.35rem;
}

.contact-card-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.privacy-block {
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(123,111,240,0.08);
}

.privacy-block-icon {
  font-size: 0.6rem;
  color: var(--accent-glow);
  margin-bottom: 0.9rem;
}

.privacy-block h4 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.6rem;
}

.privacy-block p {
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
  .privacy-blocks { grid-template-columns: 1fr; }
}

/* ═══════════════ RESULT LIST ═══════════════ */
.result-list {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--soft);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.result-list li:last-child { border-bottom: none; }

.result-list li::before {
  content: '✦';
  color: var(--accent-glow);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ═══════════════ PAPER LIST ═══════════════ */
.paper-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.paper-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 111, 240, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 1rem;
}

.paper-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(123, 111, 240, 0.2);
}

.paper-item-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--warm);
}

.paper-item-venue {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--accent-glow);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════ BELIEFS GRID ═══════════════ */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  text-align: left;
}

.belief-item {
  background: rgba(8, 6, 24, 0.5);
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.belief-item:hover {
  border-color: rgba(167, 139, 250, 0.25);
  background: rgba(8, 6, 24, 0.7);
}

.belief-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-glow);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.belief-item h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--warm);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.belief-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════ FOUNDER ═══════════════ */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.founder-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: radial-gradient(circle at 35% 35%,
    rgba(123, 111, 240, 0.2),
    rgba(196, 234, 214, 0.08) 50%,
    transparent 75%
  );
  border: 1px solid rgba(196, 234, 214, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(196, 234, 214, 0.2);
}

.founder-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 0.3rem;
}

.founder-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 2rem;
}

.founder-bio p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* ═══════════════ TWO COL TEXT ═══════════════ */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.two-col-section h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 1.2rem;
}

.two-col-section p {
  color: var(--soft);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ═══════════════ COMPANY STATS ═══════════════ */
.company-stats {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(123, 111, 240, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.company-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--soft);
  font-size: 0.95rem;
  padding: 1rem 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.company-stat:last-child { border-bottom: none; }

.company-stat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 6px var(--accent-glow);
  flex-shrink: 0;
}

/* ═══════════════ STORE BUTTONS ═══════════════ */
.store-buttons {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--warm);
  color: var(--deep);
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(196, 234, 214, 0.15);
}

.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 234, 214, 0.25);
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--soft);
  border: 1px solid rgba(196, 181, 212, 0.25);
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-playstore:hover {
  transform: translateY(-2px);
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  background: rgba(123, 111, 240, 0.05);
}

/* ═══════════════ CUSTOM CURSOR ═══════════════ */
@media (pointer: fine) and (min-width: 769px) {
  body, * { cursor: none !important; }

  #cursor-star {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
  }

  #cursor-star svg {
    position: absolute;
    transform: translate(-50%, -50%);
    color: var(--warm);
    filter:
      drop-shadow(0 0 5px var(--warm))
      drop-shadow(0 0 14px rgba(234, 247, 241, 0.55));
    transition:
      transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.25s ease;
  }

  #cursor-star.hover svg {
    transform: translate(-50%, -50%) scale(1.6);
    filter:
      drop-shadow(0 0 8px var(--warm))
      drop-shadow(0 0 22px rgba(234, 247, 241, 0.85))
      drop-shadow(0 0 36px rgba(234, 247, 241, 0.3));
  }

  #cursor-star.click svg {
    transform: translate(-50%, -50%) scale(0.7);
    filter:
      drop-shadow(0 0 10px var(--accent-glow))
      drop-shadow(0 0 24px rgba(167, 139, 250, 0.8));
  }
}

/* ═══════════════ FOUNDER LETTER ═══════════════ */
.founder-letter {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 8rem;
}

.founder-letter-inner {
  max-width: 680px;
  margin: 0 auto;
}

.founder-letter-eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-letter-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.3), transparent);
}

.founder-letter-body {
  position: relative;
}

.founder-letter-body::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--accent-glow);
  opacity: 0.1;
  position: absolute;
  top: -2.5rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

.founder-letter-body p {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--soft);
  line-height: 2;
  margin-bottom: 1.8rem;
}

.founder-letter-body p:first-child {
  color: var(--warm);
  font-size: 1.15rem;
}

.founder-letter-sig {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(167, 139, 250, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.founder-letter-sig-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm);
}

.founder-letter-sig-title {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════ FAQ ═══════════════ */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(123, 111, 240, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(123, 111, 240, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  background: rgba(123, 111, 240, 0.03);
}

.faq-question {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm);
  padding: 1.8rem 2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--accent-glow);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 1.5rem;
  line-height: 1;
}

.faq-item[open] .faq-question {
  color: var(--accent-glow);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
}

.faq-answer p {
  color: var(--soft);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-tldr {
  font-family: var(--mono) !important;
  font-size: 0.73rem !important;
  letter-spacing: 0.04em;
  color: var(--accent-glow) !important;
  background: rgba(123, 111, 240, 0.06);
  border-left: 2px solid var(--accent);
  padding: 1rem 1.3rem !important;
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.5rem !important;
  line-height: 1.75 !important;
}

/* ═══════════════ APP PREVIEW VIDEOS ═══════════════ */
.app-preview-section {
  position: relative;
  z-index: 1;
  padding: 0 2rem 6rem;
  text-align: center;
}

.phone-pair {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.phone-mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.phone-mockup {
  width: 240px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(167, 139, 250, 0.25);
  box-shadow:
    0 0 50px rgba(123, 111, 240, 0.18),
    0 0 100px rgba(123, 111, 240, 0.08);
  overflow: hidden;
}

.phone-mockup--crop {
  aspect-ratio: 9 / 18;
}

.phone-mockup--crop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup video {
  width: 100%;
  display: block;
}

.phone-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════ IMMERSIVE ANIMATIONS ═══════════════ */

/* Cursor trail dots */
@media (pointer: fine) {
  .cursor-trail-dot {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-glow);
    transform: translate(-50%, -50%);
    filter: blur(1px);
    transition: opacity 0.1s linear;
  }

  /* Click spark particles */
  .click-spark {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--warm);
    transform: translate(-50%, -50%);
    animation: sparkFly 0.6s ease-out forwards;
  }
}

@keyframes sparkFly {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* Phone mockup hover — enable 3D tilt */
.phone-mockup-wrap {
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Stat numbers animate in */
.stat-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ═══════════════ MOBILE NAV MENU ═══════════════ */
.nav-links-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 5, 16, 0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  padding: 5rem 2.5rem 2.5rem;
  gap: 0;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  border-left: 1px solid rgba(123, 111, 240, 0.1);
  list-style: none;
  margin: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-links-mobile.open {
  right: 0;
}

.nav-links-mobile li {
  width: 100%;
}

.nav-links-mobile li a {
  display: block;
  font-family: var(--mono);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(123, 111, 240, 0.06);
  color: var(--light);
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(167, 139, 250, 0.2);
}

.nav-links-mobile li a:active {
  color: var(--accent-glow);
}

.nav-links-mobile .nav-downloads {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-bottom: none;
}

.nav-links-mobile .nav-cta {
  font-size: 0.85rem;
  display: block;
  text-align: center;
}
.nav-links-mobile .hide-mobile-text { display: none; }

@media (max-width: 768px) {
  .btn-store-dl { display: none !important; }
}

/* ═══════════════ HAMBURGER MENU ═══════════════ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .vision-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vision-visual { height: auto; }
  .galaxy-vis { width: 220px; height: 220px; }
  .mirror-cards { grid-template-columns: 1fr; }
  .exp-layout { grid-template-columns: 1fr; }
  .exp-quote { border-left: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .two-col-section { grid-template-columns: 1fr; gap: 3rem; }
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .founder-avatar { max-width: 200px; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none !important; }
  .nav-links-mobile { display: flex; }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  .hero { min-height: auto; flex-direction: column; }
  .hero-split { flex-direction: column; padding: 6.5rem 1rem 0.3rem !important; gap: 1.2rem; min-height: auto; align-items: center; text-align: center; }
  .hero-scroll-cta { position: relative; bottom: auto; left: auto; transform: none; margin-top: 1.2rem; }
  .hero-right { order: -1; width: 100%; display: flex; justify-content: center; margin-top: -0.5rem; }
  .hero-left { align-items: center; }
  .hero-left .hero-eyebrow, .hero-left h1, .hero-left .hero-sub { text-align: center; }
  .hero-left h1 { max-width: 100%; }
  .hero-phone-wrap { width: 150px; border-radius: 20px; }
  .hero-logo-large { display: none; }
  .hero-eyebrow { margin-bottom: 0.8rem; margin-top: 1rem; font-size: 0.6rem; white-space: nowrap; }
  .hero h1 { font-size: 1.65rem; margin-bottom: 0.8rem; }
  .hero-sub { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.5rem; }
  .hero-store-btns { justify-content: center; flex-wrap: nowrap; flex-direction: row; gap: 0.5rem; margin-top: 0.5rem; }
  .hero-store-btns .btn-store { padding: 0.65rem 1.4rem; font-size: 0.85rem; white-space: nowrap; }
  .hero .btn-store-dl { display: none; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 6vw, 2.8rem); }
  .page-hero p { font-size: 0.95rem; padding: 0 0.5rem; }
  .section-title { font-size: 1.8rem !important; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; }
  .btn-primary, .btn-ghost { text-align: center; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.15rem; text-align: center; }
  .footer-bottom span:last-child { order: 3; }
  .footer-bottom span:first-child { order: 2; }
  .footer-bottom .footer-links { order: 1; margin-bottom: 1.5rem; }
  .paper-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .phone-pair { gap: 2rem; }
  .phone-mockup { width: 180px; border-radius: 22px; }
  .founder-letter-body p { font-size: 0.95rem; }
  .privacy-blocks { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .realm-pin { height: 400vh; }
  .research-privacy-grid { grid-template-columns: 1fr !important; }
  .testimonials-section .section-title { padding: 0 1rem; }

  /* Reduce section padding on mobile */
  .experience, .vision, section[style*="padding: 4rem"] {
    padding-top: 3rem !important;
    padding-bottom: 4rem !important;
  }
  .cta-section { padding: 4rem 1.5rem 5rem; }
}

@media (max-width: 480px) {
  nav { padding: 0.8rem 1rem; }
  .logo-img { height: 42px; }
  .hero h1 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 7rem 1.2rem 3rem; }
  .section-title { font-size: 1.5rem !important; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .exp-step { flex-direction: column; gap: 0.5rem; }
  .step-num { font-size: 1.2rem; }
  .orbit-card { padding: 1.5rem 1.2rem; }
  .founder-letter-inner { padding: 2rem 1.5rem; }
  .btn-accent { font-size: 0.6rem; padding: 0.6rem 1.4rem; }
  .btn-primary { font-size: 0.8rem; padding: 0.7rem 1.6rem; }
  .btn-store { font-size: 0.8rem; padding: 0.6rem 1.2rem; }
  .two-col-section { gap: 2rem; }
  .two-col-section h3 { font-size: 1.2rem !important; }
  .two-col-section p { font-size: 0.88rem; }
  .result-list { font-size: 0.85rem; }
  .result-list li { padding: 0.45rem 0; }
  .paper-item-title { font-size: 0.9rem; }
  .paper-item-venue { font-size: 0.58rem; letter-spacing: 0.15em; word-break: break-word; }
  .faq-question { font-size: 0.95rem; }
}
