/* =============================================================
   VEXOR — styles.css · v20260624
   1. Tokens
   2. Reset & base
   3. Utilities
   4. Avatars
   5. Hero
   6. Metrics
   7. Services
   8. FAQ
   9. Footer
   10. Components (pills, tags, accordions)
   11. Animations
   12. Responsive
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --cream:      #f0f0ec;
  --space:      #040408;
  --planet-edge: 40%; /* updated by JS based on actual viewport */
  --black:      #111111;
  --white:      #ffffff;
  --g1:         #555555;
  --g2:         #888888;
  --g3:         #bbbbbb;
  --g4:         #e0e0e0;
  --g5:         #f8f8f6;
  --sep:        #e5e5e5;

  --sans:       'Inter', system-ui, -apple-system, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:cubic-bezier(0.34, 1.56, 0.64, 1);

  --pad-x:      80px;
  --pad-x-sm:   24px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  -webkit-appearance: none;
}
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
input, textarea { font: inherit; border: 0; outline: 0; background: transparent; }
ul, ol { list-style: none; }

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

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1rem;
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

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

.sep {
  border: 0;
  height: 1px;
  background: var(--sep);
  width: 100%;
}

/* =============================================================
   4. Avatars — pure CSS gradient circles
   ============================================================= */
.av {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Contact pill avatar */
.av--contact {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #6c63e8 0%, #9c7ae8 100%);
}
/* Co-founder badges (year section) */
.av--co1 {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #c47a4e 0%, #8b5e3c 100%);
  border: 2px solid var(--white);
}
.av--co2 {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #7c3f8c 0%, #4a2e6e 100%);
  border: 2px solid var(--white);
  margin-left: -8px;
}
/* Founder avatar (metrics manifesto + footer) */
.av--founder {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #c47a4e 0%, #8b5e3c 100%);
}
.av--founder-lg {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #c47a4e 0%, #8b5e3c 100%);
}
/* FAQ sidebar avatar */
.av--faq {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #4a9eda 0%, #2a7ec0 100%);
}
/* Service item mini avatar */
.av--service {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #e8872a 0%, #c85f10 100%);
}
/* Team avatar stack */
.av--t1 { width: 40px; height: 40px; background: linear-gradient(135deg, #e74c3c, #c0392b); }
.av--t2 { width: 40px; height: 40px; background: linear-gradient(135deg, #3498db, #2980b9); }
.av--t3 { width: 40px; height: 40px; background: linear-gradient(135deg, #2ecc71, #27ae60); }
.av--t4 { width: 40px; height: 40px; background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.av--t5 { width: 40px; height: 40px; background: linear-gradient(135deg, #f39c12, #e67e22); }
.av--count {
  width: 40px; height: 40px;
  background: #ddd;
  color: var(--g1);
  font-size: 11px;
  font-weight: 700;
}

/* Stack overlap */
.av-stack {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.av-stack .av {
  margin-left: -10px;
  border: 2px solid var(--white);
  transition: transform .2s var(--ease-out);
}
.av-stack .av:first-child { margin-left: 0; }
.av-stack .av:hover { transform: translateY(-4px); z-index: 1; }

/* =============================================================
   5. HERO
   ============================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #050308;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #050308);
  z-index: 18;
  pointer-events: none;
}

/* ---- Right dark space panel ---- */
.hero__space {
  position: absolute;
  inset: 0;
  background-color: var(--space);
  background-image: radial-gradient(115% 95% at 62% 50%, rgba(90,50,22,0.55) 0%, rgba(40,22,55,0.35) 38%, transparent 60%);
  z-index: 1;
  overflow: hidden;
}

/* ---- Hero video background ---- */
.hero__video-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* ---- Nebula parallax layer (moved by mouse via JS) ---- */
.hero__nebula {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  background-image:
    radial-gradient(ellipse 50% 45% at 62% 42%, rgba(150, 75, 220, 0.40) 0%, transparent 58%),
    radial-gradient(ellipse 48% 40% at 26% 70%, rgba(45, 105, 225, 0.34) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 82% 76%, rgba(255, 140, 60, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 45% 20%, rgba(120, 60, 200, 0.26) 0%, transparent 50%);
  will-change: transform;
  pointer-events: none;
  transition: transform 0.05s linear;
  z-index: 2;
}

/* Stars layer */
.hero__space::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at  7%  9%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1px 1px at 14%  4%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 22% 18%, rgba(255,255,255,.75) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 31%  7%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 43% 14%, rgba(255,255,255,.90) .5px, transparent 1px),
    radial-gradient(1px 1px at 57%  3%, rgba(255,255,255,.65) .5px, transparent 1px),
    radial-gradient(1px 1px at 68% 21%, rgba(255,255,255,.80) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 76%  9%, rgba(255,255,255,.70) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 88% 16%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 94%  6%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1px 1px at  4% 38%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1px 1px at 13% 52%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 25% 44%, rgba(255,255,255,.80) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 38% 61%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1px 1px at 52% 47%, rgba(255,255,255,.75) .5px, transparent 1px),
    radial-gradient(1px 1px at 63% 58%, rgba(255,255,255,.50) .5px, transparent 1px),
    radial-gradient(1px 1px at 74% 42%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 82% 55%, rgba(255,255,255,.65) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 91% 48%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1px 1px at  8% 75%, rgba(255,255,255,.80) .5px, transparent 1px),
    radial-gradient(1px 1px at 19% 83%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 34% 78%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 47% 88%, rgba(255,255,255,.85) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 61% 72%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1px 1px at 73% 85%, rgba(255,255,255,.75) .5px, transparent 1px),
    radial-gradient(1px 1px at 85% 77%, rgba(255,255,255,.50) .5px, transparent 1px),
    radial-gradient(1px 1px at 96% 91%, rgba(255,255,255,.90) .5px, transparent 1px),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,.45) .5px, transparent 1px),
    radial-gradient(1px 1px at 17% 28%, rgba(255,255,255,.65) .5px, transparent 1px),
    radial-gradient(2px 2px at 40% 65%, rgba(255,255,255,.40) 1px,  transparent 2px);
  pointer-events: none;
  z-index: 0;
}

/* Subtle dark vignette toward the right edge */
.hero__space::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(2,2,6,0.5) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ---- Twinkling stars layer ---- */
.hero__twinkle {
  position: absolute;
  inset: -6%;
  will-change: transform;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 22%, rgba(255,255,255,.95) .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 66% 14%, rgba(255,255,255,.9)  .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 40% 50%, rgba(255,255,255,.85) .8px, transparent 1.6px),
    radial-gradient(2px 2px   at 82% 40%, rgba(255,255,255,.95) 1px,  transparent 2px),
    radial-gradient(1.5px 1.5px at 30% 78%, rgba(255,255,255,.9)  .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 72% 82%, rgba(255,255,255,.85) .8px, transparent 1.6px),
    radial-gradient(2px 2px   at 54% 64%, rgba(255,255,255,.9)  1px,  transparent 2px),
    radial-gradient(1.5px 1.5px at 90% 68%, rgba(255,255,255,.9)  .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 12% 60%, rgba(255,255,255,.85) .8px, transparent 1.6px);
  pointer-events: none;
  z-index: 1;
  animation: twinkle 3.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50%      { opacity: 1; }
}

/* ---- Shooting stars ---- */
.hero__shooting {
  position: absolute;
  top: 16%;
  left: 62%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
  border-radius: 2px;
  transform: translate(0,0) rotate(20deg);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.55));
  animation: shoot 8s ease-in infinite;
}
.hero__shooting--2 {
  top: 40%;
  left: 74%;
  width: 105px;
  animation-duration: 11s;
  animation-delay: 4.5s;
}
@keyframes shoot {
  0%   { opacity: 0; transform: translate(0,0) rotate(20deg); }
  2%   { opacity: 1; }
  11%  { opacity: 0; transform: translate(-280px, 102px) rotate(20deg); }
  100% { opacity: 0; transform: translate(-280px, 102px) rotate(20deg); }
}

/* ---- Planet (light moon — the V of VEXOR turns black over it) ---- */
.hero__planet {
  position: absolute;
  width: 78vh;
  height: 78vh;
  left: 15%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0%, #f4efe5 36%, #ddd6c8 68%, #bcb4a3 100%);
  box-shadow:
    inset -58px -48px 100px rgba(120,110,92,0.55),
    inset 20px 16px 55px rgba(255,255,255,0.75),
    0 30px 90px rgba(60,55,45,0.16),
    0 0 140px 30px rgba(225,215,255,0.18),
    0 0 60px 8px rgba(255,250,235,0.22);
  z-index: 3;
}

/* Subtle terminator shading on planet edge */
.hero__planet::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* ---- Small decorative sphere / dot ---- */
.hero__asteroid {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #1d1d26, #07070e);
  box-shadow: 0 0 24px rgba(0,0,0,0.65), inset -6px -5px 16px rgba(0,0,0,0.85);
  left: calc(15% + 37.5vh - 28px);   /* centered ON the boundary arc */
  top: 38%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.hero__asteroid-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #08080f;
  left: calc(15% + 37.5vh + 14px);
  top: calc(38% + 6px);
  z-index: 4;
}

/* ---- Sparkle icon (top-left) ---- */
.hero__sparkle-tl {
  position: absolute;
  top: 22px;
  left: 22px;
  color: rgba(255,255,255,0.85);
  z-index: 10;
  line-height: 1;
}

/* ---- Services menu (bottom-left, over planet — transparent, white text) ---- */
.hero__services {
  position: absolute;
  bottom: 52px;
  left: 20px;
  z-index: 10;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.16);
  padding: 14px 0 0;
  width: 240px;
  background: transparent;
}
.hero__services-list { display: flex; flex-direction: column; gap: 0; }

.hero__service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  cursor: pointer;
  transition: opacity .2s;
  gap: 12px;
}
.hero__service-item:hover { opacity: .65; }

.hero__service-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color .25s;
}
.hero__service-dash {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.28);
  flex-shrink: 0;
  transition: color .25s, font-weight .25s;
}
.hero__service-item.is-active .hero__service-dash {
  color: rgba(0,0,0,0.85);
  font-weight: 800;
}
.hero__service-item.is-active .hero__service-label {
  font-weight: 700;
  color: var(--black);
}

/* ---- Right-side content layer ---- */
.hero__right {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.hero__contact-pill,
.hero__more-dots { pointer-events: auto; }

/* Top bar */
.hero__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px 0 40px;
  flex-shrink: 0;
}
.hero__contact-cluster {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
/* Pill wrapper holds the pulse ring */
.hero__pill-wrap {
  position: relative;
  display: inline-block;
}

@keyframes pill-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(160,120,255,0.55); }
  60%  { box-shadow: 0 0 0 12px rgba(160,120,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(160,120,255,0); }
}

@keyframes av-online {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.hero__contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  border-radius: 9999px;
  padding: 7px 16px 7px 7px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: pill-pulse 2.4s ease-out infinite;
}
.hero__contact-pill:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 24px rgba(160,120,255,0.35);
  animation: none;
}

/* Online dot inside avatar */
.av--contact {
  position: relative;
}
.av__online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 1.5px solid #04030a;
  animation: av-online 2s ease-in-out infinite;
}

.hero__pill-text { color: var(--white); }
.hero__pill-arrow {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: transform .2s;
}
.hero__contact-pill:hover .hero__pill-arrow {
  transform: translateX(3px);
  color: #fff;
}

/* Availability indicator */
.hero__reach-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  padding-left: 4px;
}
@keyframes reach-dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero__reach-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: reach-dot-pulse 2s ease-in-out infinite;
}
.hero__more-dots {
  font-size: 18px;
  color: rgba(255,255,255,.45);
  letter-spacing: 2px;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
  align-self: flex-start;
}
.hero__more-dots:hover { color: rgba(255,255,255,.8); }

/* "Espacio de Soluciones Creativas" floating heading */
.hero__creative-tag {
  position: absolute;
  right: 6%;
  top: 18%;
  left: auto;
  max-width: 340px;
  pointer-events: none;
  text-align: right;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.hero__tag-line {
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1.25;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}

.hero__tag-line--accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #c4a8ff 0%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes tag-cta-shine {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.hero__tag-cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  transition: background .25s, border-color .25s, gap .2s;
  text-shadow: none;
}
.hero__tag-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  gap: 10px;
}

/* VEXOR masthead — white text + mix-blend-mode difference.
   Over the light planet/cream it renders BLACK, over dark space it renders WHITE,
   following the planet's curved edge automatically. */
/* VEXOR masthead — centered, the eclipsed planet is the "O" */
.hero__masthead {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  will-change: transform;
}
.hero__subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-top: 14px;
  pointer-events: none;
}

.hero__sub-line {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1.25;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}

.hero__sub-line--accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #c4a8ff 0%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub-highlight {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #c4a8ff 0%, #ffffff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__vexor {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: clamp(4.5rem, 19vw, 19rem);
  letter-spacing: -0.06em;
  line-height: 0.7;
  text-wrap: nowrap;
}
.hero__vx-part {
  background: linear-gradient(174deg, #ffffff 0%, #ffe9c7 42%, #ffb877 78%, #ff9152 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Tight bright glow + wide soft halo — crisper glyphs than one hazy layer */
  filter: drop-shadow(0 0 10px rgba(255,220,170,0.38)) drop-shadow(0 0 44px rgba(255,165,85,0.32));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hero__vx-part:last-child {
  padding-right: 0.07em; /* stop R's glyph being clipped by hero overflow:hidden */
}
.hero__eclipse {
  position: relative;
  display: inline-block;
  width: 0.84em;
  height: 0.84em;
  margin: 0 -0.03em;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: visible;
}

/* Relativistic jet wisps */
.hero__eclipse::before {
  content: '';
  position: absolute;
  width: 220%;
  height: 55%;
  left: -60%;
  top: 22%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(180,160,255,.06) 12%,
    rgba(210,190,255,.18) 30%,
    rgba(240,230,255,.28) 48%,
    rgba(240,230,255,.28) 52%,
    rgba(210,190,255,.18) 70%,
    rgba(180,160,255,.06) 88%,
    transparent 100%
  );
  transform: rotate(-22deg);
  filter: blur(5px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Accretion disk ring — flat ellipse, behind the disk */
.hero__eclipse::after {
  content: '';
  position: absolute;
  left: -38%;
  right: -38%;
  top: 12%;
  bottom: 12%;
  border-radius: 50%;
  border: 0.015em solid transparent;
  box-shadow:
    0 0 0.12em 0.04em rgba(255,200,120,.75),
    0 0 0.24em 0.07em rgba(255,160,60,.45),
    0 0 0.40em 0.10em rgba(200,100,20,.22);
  transform: scaleY(0.28);
  pointer-events: none;
  z-index: 1;
}

/* Photon ring — uneven conic glow simulating Einstein ring */
.hero__corona {
  position: absolute;
  inset: -0.05em;
  border-radius: 50%;
  filter: blur(0.025em);
  background: conic-gradient(
    from 185deg,
    rgba(255,200,100,0)      0deg,
    rgba(255,230,170,.18)   18deg,
    rgba(255,248,210,.90)   48deg,
    rgba(255,255,255,1)     68deg,
    rgba(255,245,215,.92)   90deg,
    rgba(255,210,130,.45)  118deg,
    rgba(180,120,40,.08)   155deg,
    rgba(60,40,10,.04)     195deg,
    rgba(90,60,15,.08)     235deg,
    rgba(200,155,60,.50)   265deg,
    rgba(250,215,140,.80)  285deg,
    rgba(255,230,165,.55)  305deg,
    rgba(255,200,100,.15)  328deg,
    rgba(255,200,100,0)    350deg
  );
  animation: ec-corona 20s linear infinite;
  z-index: 2;
}

/* True black void — event horizon */
.hero__disk {
  position: absolute;
  inset: 0.04em;
  border-radius: 50%;
  background: #000;
  box-shadow: inset 0 0 0.12em 0.04em #000;
  z-index: 3;
}

/* Photon sphere outer glow — slow breathing pulse */
.hero__rim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    0 0 0.14em 0.02em rgba(255,195,100,.60),
    0 0 0.28em 0.05em rgba(255,150,40,.38),
    0 0 0.50em 0.07em rgba(200,90,10,.20),
    0 0 0.80em 0.10em rgba(130,40,0,.12);
  z-index: 4;
  animation: ec-rim-pulse 5.5s ease-in-out infinite;
}
@keyframes ec-corona { to { transform: rotate(360deg); } }
@keyframes ec-rim-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}
.hero__divider {
  width: min(520px, 70%);
  height: 1px;
  margin: clamp(18px, 2.5vw, 40px) auto 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
}

/* =============================================================
   6. METRICS
   ============================================================= */
.metrics {
  background: var(--white);
  padding: 56px var(--pad-x) 0;
}

.metrics__sparkles {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--black);
}

/* Top row: 75+ | 98% */
.metrics__row { padding: 40px 0; }

.metrics__row--top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
}
.metrics__block {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 38px 36px;
  border: 1px solid var(--sep);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fbfbf8);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.metrics__block:first-child { padding-left: 36px; }
.metrics__block::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(40px);
  pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease-out);
}
.metrics__block:nth-child(1)::after { background: radial-gradient(circle at 42% 42%, rgba(185,122,255,.6), transparent 70%); }
.metrics__block:nth-child(3)::after { background: radial-gradient(circle at 42% 42%, rgba(106,173,255,.6), transparent 70%); }
.metrics__block:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px -24px rgba(0,0,0,0.22);
  border-color: #dcd6ca;
}
.metrics__block:hover::after { opacity: 0.85; transform: scale(1.15); }
.metrics__divider { display: none; }

.metrics__num {
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
  flex-shrink: 0;
}
.metrics__num--year { font-size: clamp(2.8rem, 5vw, 5.5rem); }

.metrics__desc { display: flex; flex-direction: column; gap: 4px; }
.metrics__label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.metrics__label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #8B5CF6;
  flex-shrink: 0;
}
.metrics__sublabel {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.6;
  max-width: 320px;
}

/* Year row */
.metrics__row--year {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 42px 44px;
  border: 1px solid var(--sep);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fbfbf8);
  margin: 16px 0 8px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.metrics__row--year::after {
  content: '';
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, rgba(90,255,238,.6), transparent 70%);
  opacity: .55;
  filter: blur(40px);
  pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease-out);
}
.metrics__row--year:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px -24px rgba(0,0,0,0.22);
  border-color: #dcd6ca;
}
.metrics__row--year:hover::after { opacity: .8; transform: translateY(-50%) scale(1.12); }
.metrics__year-text {
  font-size: 15px;
  color: var(--g1);
  line-height: 1.6;
  max-width: 520px;
}
.metrics__year-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.metrics__cofounders {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

/* Team + Manifesto row */
.metrics__row--bottom {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 48px 0 56px;
}

.metrics__team { flex-shrink: 0; min-width: 340px; }
.metrics__team-title {
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
}
.metrics__team-line {
  width: 44px;
  height: 3px;
  background: var(--black);
  margin-top: 22px;
}

.metrics__manifesto { flex: 1; }
.metrics__brand-label {
  font-size: 12px;
  color: var(--g2);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.metrics__founder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.metrics__founder-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.metrics__founder-role { font-size: 13px; color: var(--g2); }

.metrics__manifesto-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--g1);
  max-width: 640px;
}
.metrics__manifesto-body strong { color: var(--black); font-weight: 700; }
.metrics__manifesto-body em { font-style: normal; color: var(--black); font-weight: 500; }

/* Logo strip */
.metrics__logos {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.metrics__logos::-webkit-scrollbar { display: none; }

.metrics__logo-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
}
.metrics__logo-item:hover { color: var(--g1); }
.metrics__logo-item--wide { letter-spacing: 0.12em; }

.metrics__logo-arrow {
  color: var(--g3);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .25s var(--ease-out), color .2s;
}
.metrics__logo-arrow:hover { transform: translateX(4px); color: var(--g1); }

/* =============================================================
   7. SERVICES
   ============================================================= */
.services {
  background: var(--g5);
  padding: 100px var(--pad-x);
}

.services__heading {
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 64px;
  color: var(--black);
}

/* Accordion list */
.services__list { border-top: 1px solid var(--g4); }

.acc-item { border-bottom: 1px solid var(--g4); }

.acc-item__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
  transition: opacity .2s;
}
.acc-item__header:hover { opacity: .75; }

.acc-item__num {
  font-size: 12px;
  font-weight: 500;
  color: var(--g2);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 28px;
}
.acc-item__title {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  flex: 1;
}
.acc-item__teaser {
  font-size: 13px;
  color: var(--g2);
  line-height: 1.5;
  flex: 1;
  max-width: 280px;
  display: none;
}
.acc-item:not(.acc-item--open) .acc-item__teaser { display: block; }

.acc-item__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.acc-item--open .acc-item__meta { display: none; }

.acc-item__proj {
  font-size: 12px;
  color: var(--g2);
  white-space: nowrap;
}
.acc-item__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--g4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
  transition: background .2s, border-color .2s, transform .2s var(--ease-out);
}
.acc-item__toggle:hover,
.acc-item__header:hover .acc-item__toggle {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Accordion body */
.acc-item__body {
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.4,0,0.2,1), opacity .35s ease;
}
.acc-item__body.is-closed { max-height: 0; opacity: 0; }
.acc-item--open .acc-item__body { max-height: 600px; opacity: 1; }
/* Default open state */
.acc-item--open > .acc-item__body:not(.is-closed) { max-height: 600px; opacity: 1; }

.acc-item__content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 8px 0 40px;
}
.acc-item__visual {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mountain-graphic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0ece4;
  padding: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.mountain-graphic svg { width: 100%; height: 100%; }

.acc-item__text-block { flex: 1; min-width: 0; }
.acc-item__desc {
  font-size: 14px;
  color: var(--g1);
  line-height: 1.6;
  margin-bottom: 14px;
}
.acc-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--g4);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--g1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.acc-item__labels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.acc-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--g1);
  background: var(--white);
  border: 1px solid var(--g4);
  border-radius: 4px;
  padding: 3px 8px;
  text-align: center;
  letter-spacing: 0.02em;
}
.acc-label--more { color: var(--g3); border-style: dashed; }

/* Services CTA */
.services__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  width: min(1060px, 92vw);
  margin: 0 auto;
}
.services__cta-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
}
.services__cta-eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}
.services__cta-text {
  font-size: 14px;
  color: var(--g1);
  line-height: 1.7;
  max-width: 480px;
}

/* =============================================================
   8. FAQ
   ============================================================= */
.faq {
  background: var(--white);
  padding: 100px var(--pad-x) 84px;
}

.faq__heading {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 0;
  color: var(--black);
}

/* Balanced 2-column layout: intro left (sticky), questions right */
.faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 0;
}
.faq__intro {
  position: sticky;
  top: 100px;
}
.faq__intro-text {
  font-size: 16px;
  color: var(--g2);
  line-height: 1.6;
  max-width: 340px;
  margin-top: 24px;
}
.faq__intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: gap .2s var(--ease-out);
}
.faq__intro-cta:hover { gap: 14px; }

/* Category filter pills */
.faq__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.faq-cat {
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1px solid var(--g4);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--g1);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.faq-cat:hover { border-color: var(--black); color: var(--black); }
.faq-cat.is-active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* FAQ accordion items */
.faq-item { border-bottom: 1px solid var(--g4); }
.faq-item.is-hidden { display: none; }

/* Featured question — card treatment, sits above the plain list */
.faq-item--featured {
  border: 1px solid var(--sep);
  border-radius: 16px;
  padding: 2px 26px;
  background: linear-gradient(135deg, #faf7ff 0%, #ffffff 60%, #f6faff 100%);
  margin-bottom: 18px;
  transition: border-color .3s;
}
.faq-item--featured:hover { border-color: rgba(139,92,246,0.35); }
.faq-item--featured + .faq-item { border-top: 1px solid var(--g4); }

.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.faq-item__q {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: transform .25s var(--ease-out);
}
.faq-item:not(.faq-item--featured) .faq-item__header:hover .faq-item__q {
  transform: translateX(6px);
}

/* Question badges */
.faq-item__badge {
  display: inline-block;
  vertical-align: 2px;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #b35a20;
  background: rgba(255,145,82,0.14);
  white-space: nowrap;
}
.faq-item__badge--top {
  color: #6d3fc4;
  background: rgba(139,92,246,0.13);
}

.faq-item__toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--g4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.faq-item__toggle svg {
  width: 15px;
  height: 15px;
  transition: transform .35s var(--ease-out);
}
.faq-item--open .faq-item__toggle svg { transform: rotate(180deg); }
.faq-item__header:hover .faq-item__toggle {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.faq-item__body {
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.4,0,0.2,1), opacity .35s ease;
}
.faq-item__body.is-closed { max-height: 0; opacity: 0; }
.faq-item--open .faq-item__body { max-height: 400px; opacity: 1; }
.faq-item--open > .faq-item__body:not(.is-closed) { max-height: 400px; opacity: 1; }

.faq-item__a {
  font-size: 14px;
  color: var(--g1);
  line-height: 1.7;
  padding-bottom: 24px;
  max-width: 560px;
}
.faq-item__a strong { color: var(--black); font-weight: 600; }

/* FAQ CTA */
.faq__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.faq__cta-text {
  font-size: 14px;
  color: var(--g1);
}

/* =============================================================
   9. FOOTER
   ============================================================= */
.footer {
  position: relative;
  background: var(--space);
  overflow: hidden;
}

/* ── Fondo idéntico al hero ── */
.footer__space {
  position: absolute;
  inset: 0;
  background-color: var(--space);
  background-image: radial-gradient(115% 95% at 62% 50%, rgba(90,50,22,0.55) 0%, rgba(40,22,55,0.35) 38%, transparent 60%);
  z-index: 0;
  overflow: hidden;
}
.footer__video-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.footer__nebula {
  position: absolute;
  top: -15%; left: -15%;
  width: 130%; height: 130%;
  background-image:
    radial-gradient(ellipse 50% 45% at 62% 42%, rgba(150,75,220,0.40) 0%, transparent 58%),
    radial-gradient(ellipse 48% 40% at 26% 70%, rgba(45,105,225,0.34) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 82% 76%, rgba(255,140,60,0.30) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 45% 20%, rgba(120,60,200,0.26) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.footer__space::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at  7%  9%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1px 1px at 14%  4%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 22% 18%, rgba(255,255,255,.75) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 31%  7%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 43% 14%, rgba(255,255,255,.90) .5px, transparent 1px),
    radial-gradient(1px 1px at 57%  3%, rgba(255,255,255,.65) .5px, transparent 1px),
    radial-gradient(1px 1px at 68% 21%, rgba(255,255,255,.80) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 76%  9%, rgba(255,255,255,.70) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 88% 16%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 94%  6%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1px 1px at  4% 38%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1px 1px at 13% 52%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 25% 44%, rgba(255,255,255,.80) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 38% 61%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1px 1px at 52% 47%, rgba(255,255,255,.75) .5px, transparent 1px),
    radial-gradient(1px 1px at 63% 58%, rgba(255,255,255,.50) .5px, transparent 1px),
    radial-gradient(1px 1px at 74% 42%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 82% 55%, rgba(255,255,255,.65) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 91% 48%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1px 1px at  8% 75%, rgba(255,255,255,.80) .5px, transparent 1px),
    radial-gradient(1px 1px at 19% 83%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 34% 78%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 47% 88%, rgba(255,255,255,.85) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 61% 72%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1px 1px at 73% 85%, rgba(255,255,255,.75) .5px, transparent 1px),
    radial-gradient(1px 1px at 85% 77%, rgba(255,255,255,.50) .5px, transparent 1px),
    radial-gradient(1px 1px at 96% 91%, rgba(255,255,255,.90) .5px, transparent 1px),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,.45) .5px, transparent 1px),
    radial-gradient(1px 1px at 17% 28%, rgba(255,255,255,.65) .5px, transparent 1px),
    radial-gradient(2px 2px  at 40% 65%, rgba(255,255,255,.40) 1px,  transparent 2px);
  pointer-events: none;
  z-index: 0;
}
.footer__space::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(2,2,6,0.5) 100%);
  pointer-events: none;
  z-index: 3;
}
.footer__twinkle {
  position: absolute;
  inset: -6%;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 22%, rgba(255,255,255,.95) .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 66% 14%, rgba(255,255,255,.9)  .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 40% 50%, rgba(255,255,255,.85) .8px, transparent 1.6px),
    radial-gradient(2px 2px   at 82% 40%, rgba(255,255,255,.95) 1px,  transparent 2px),
    radial-gradient(1.5px 1.5px at 30% 78%, rgba(255,255,255,.9)  .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 72% 82%, rgba(255,255,255,.85) .8px, transparent 1.6px),
    radial-gradient(2px 2px   at 54% 64%, rgba(255,255,255,.9)  1px,  transparent 2px),
    radial-gradient(1.5px 1.5px at 90% 68%, rgba(255,255,255,.9)  .8px, transparent 1.6px),
    radial-gradient(1.5px 1.5px at 12% 60%, rgba(255,255,255,.85) .8px, transparent 1.6px);
  pointer-events: none;
  z-index: 1;
  animation: twinkle 3.5s ease-in-out infinite;
}

.footer__inner {
  position: relative;
  z-index: 1;
  padding: 64px var(--pad-x) 0;
}

/* Footer sparkle */
.footer__sparkle {
  color: var(--white);
  margin-bottom: 48px;
  opacity: 0.7;
}

/* Top: manifesto + tag */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 28px;
}
.footer__manifesto {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 420px;
}
.footer__tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Founder */
.footer__founder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}
.footer__founder-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.footer__founder-role { font-size: 12px; color: rgba(255,255,255,.4); }

/* Closing CTA */
.footer__cta {
  text-align: center;
  padding: 48px 0 72px;
}
.footer__cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
}
.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 12px 26px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: background .25s, border-color .25s, box-shadow .25s, gap .2s;
  animation: pill-pulse 2.4s ease-out infinite;
}
.footer__cta-btn:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 24px rgba(160,120,255,0.35);
  gap: 12px;
  animation: none;
}

/* Nav columns grid */
.footer__nav-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.footer__col-line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin-bottom: 24px;
}

/* Contact col */
.footer__col--contact {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__phone {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
  transition: color .2s;
}
.footer__phone:hover { color: #fff; }
.footer__email {
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.footer__email:hover { color: var(--g3); }

/* Nav links col */
.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__nav-links a {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color .2s;
  width: fit-content;
}
.footer__nav-links a:hover { color: var(--g3); }

/* Social col — pinned to right, padded clear of the fixed scroll-guide rail */
.footer__col--social { padding-top: 0; padding-right: 64px; text-align: right; }
.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}
.footer__social-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color .2s;
  width: fit-content;
}
.footer__social-links a:hover { color: var(--g3); }
.footer__link-arrow {
  font-size: .68em;
  opacity: .5;
  transition: transform .25s var(--ease-out), opacity .25s;
}
.footer__social-links a:hover .footer__link-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

/* Subscribe col */
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__field input {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  transition: border-color .2s;
  background: transparent;
}
.footer__field input::placeholder { color: rgba(255,255,255,.3); }
.footer__field input:focus { border-color: rgba(255,255,255,.5); }

/* Pill variants */
.pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  border-radius: 9999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .2s var(--ease-out), transform .15s;
  cursor: pointer;
  border: 0;
}
.pill-dark:hover { background: #333; transform: translateY(-1px); }
.pill-dark:active { transform: translateY(0); }

.pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 9999px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .2s, color .2s;
  cursor: pointer;
}
.pill-outline:hover { border-color: rgba(255,255,255,.55); }

.pill-dots {
  font-size: 8px;
  letter-spacing: 2px;
  opacity: .55;
}

/* Mega brand */
.footer__mega-wrap {
  text-align: center;
  padding: 24px 0 0;
  overflow: hidden;
}
.footer__mega-brand {
  font-size: clamp(5rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.85;
  pointer-events: none;
  opacity: 0.96;
  /* Same warm gradient as the hero masthead — the site closes how it opened */
  background: linear-gradient(174deg, #ffffff 0%, #ffe9c7 42%, #ffb877 78%, #ff9152 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255,205,140,0.25));
  transition: filter .6s ease;
}
.footer__mega-wrap:hover .footer__mega-brand {
  filter: drop-shadow(0 0 52px rgba(255,205,140,0.5));
}
.footer__mega-brand sup {
  font-size: .22em;
  vertical-align: super;
  font-weight: 700;
  letter-spacing: 0;
  opacity: .7;
}

/* Sub-footer */
.footer__subfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__copy,
.footer__built,
.footer__credit { font-size: 11px; color: rgba(255,255,255,.28); }
.footer__made {
  text-align: center;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  padding: 32px 0 48px;
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  transition: color .2s;
}
.footer__legal a:hover { color: rgba(255,255,255,.55); }

/* =============================================================
   10. Scroll reveals (GSAP-populated)
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Safety net — always show content even if JS fails */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   11. Animations
   ============================================================= */
@keyframes sparkle-pulse {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: .7; transform: scale(1.15) rotate(15deg); }
}
.hero__sparkle-tl svg {
  animation: sparkle-pulse 4s ease-in-out infinite;
}
.footer__sparkle svg {
  animation: sparkle-pulse 5s ease-in-out infinite 1s;
}

/* =============================================================
   12. Responsive
   ============================================================= */
@media (max-width: 960px) {
  :root { --pad-x: 40px; }

  /* Tablet: FAQ stacks (intro over questions) for comfortable reading */
  .faq__layout { grid-template-columns: 1fr; gap: 36px; }
  .faq__intro { position: static; }
  .faq__intro-text { max-width: 560px; }

  /* Tablet: a touch less vertical padding on big sections */
  .services, .faq { padding: 80px var(--pad-x); }
  .metrics { padding: 64px var(--pad-x) 0; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; }

  /* Hero (mobile): full-dark eclipse, masthead centered */
  .hero { height: 100svh; min-height: 580px; }
  .hero__sparkle-tl { color: rgba(255,255,255,.85); }
  .hero__topbar { padding: 16px 18px 0; }
  .hero__creative-tag {
    right: 18px; left: auto; top: 15%;
    max-width: 56%;
  }
  .hero__tag-line {
    font-size: clamp(14px, 4.4vw, 20px);
  }
  .hero__vexor { font-size: clamp(3.6rem, 22vw, 9rem); }
  .hero__divider { margin-top: 22px; }

  /* Metrics: single column */
  .metrics__row--top { grid-template-columns: 1fr; gap: 16px; }
  .metrics__divider { display: none; }
  .metrics__block { padding: 28px 24px; }
  .metrics__row--year { flex-direction: column; align-items: flex-start; gap: 24px; padding: 28px 24px; }
  .metrics__row--bottom { flex-direction: column; gap: 40px; }
  .metrics__num { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* Services */
  .services__heading { font-size: clamp(2.8rem, 14vw, 5rem); }
  .acc-item__content { flex-wrap: wrap; }
  .acc-item__labels { flex-direction: row; margin-left: 0; }
  .acc-item__teaser { display: none !important; }
  .services__cta { flex-direction: column; align-items: flex-start; }

  /* FAQ */
  .faq__heading { font-size: clamp(2.8rem, 14vw, 5rem); }
  .faq__layout { grid-template-columns: 1fr; gap: 32px; }
  .faq__intro { position: static; }
  .faq__intro-text { max-width: none; }
  .faq__cta { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer__nav-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__top { flex-direction: column; }
  .footer__mega-brand { font-size: clamp(3.5rem, 22vw, 8rem); }
  .footer__subfooter { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 540px) {
  .footer__nav-grid { grid-template-columns: 1fr; }
  .hero__contact-pill .hero__pill-text { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sparkle-tl svg,
  .footer__sparkle svg { animation: none; }
  .reveal { transition: none; }
}

/* =============================================================
   13. Planet Orbs — service icons
   ============================================================= */
.planet-orb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
}

.planet-orb--violet {
  background: radial-gradient(circle at 33% 33%, #b97aff, #4a0f8a);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(220,180,255,0.18), 0 0 18px rgba(140,80,220,0.25);
}
.planet-orb--blue {
  background: radial-gradient(circle at 33% 33%, #6aadff, #0d2d70);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(140,200,255,0.18), 0 0 18px rgba(60,120,220,0.25);
}
.planet-orb--orange {
  background: radial-gradient(circle at 33% 33%, #ffaa5a, #7a2c00);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(255,200,120,0.18), 0 0 18px rgba(200,100,20,0.25);
}
.planet-orb--gold {
  background: radial-gradient(circle at 33% 33%, #ffe36a, #7a5a00);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(255,230,150,0.18), 0 0 18px rgba(200,160,0,0.25);
}
.planet-orb--indigo {
  background: radial-gradient(circle at 33% 33%, #8a9fff, #0d1560);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(160,180,255,0.18), 0 0 18px rgba(80,100,220,0.25);
}
.planet-orb--teal {
  background: radial-gradient(circle at 33% 33%, #5affee, #004a44);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(100,255,240,0.18), 0 0 18px rgba(0,180,160,0.25);
}
.planet-orb--lime {
  background: radial-gradient(circle at 33% 33%, #aaff6a, #2a5500);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(200,255,140,0.18), 0 0 18px rgba(100,200,0,0.25);
}
.planet-orb--slate {
  background: radial-gradient(circle at 33% 33%, #94a3b8, #1e293b);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(200,210,230,0.18), 0 0 18px rgba(80,100,140,0.25);
}
.planet-orb--rose {
  background: radial-gradient(circle at 33% 33%, #ff8ab4, #6b001e);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(255,180,210,0.18), 0 0 18px rgba(200,40,100,0.25);
}
.planet-orb--cyan {
  background: radial-gradient(circle at 33% 33%, #6af0ff, #044a5a);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(150,240,255,0.18), 0 0 18px rgba(0,180,210,0.25);
}
.planet-orb--emerald {
  background: radial-gradient(circle at 33% 33%, #6affa8, #045a2e);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(150,255,200,0.18), 0 0 18px rgba(0,200,120,0.25);
}
.planet-orb--pink {
  background: radial-gradient(circle at 33% 33%, #ff8ae0, #6b0050);
  box-shadow: inset -6px -6px 14px rgba(0,0,0,0.55), inset 3px 3px 8px rgba(255,180,235,0.18), 0 0 18px rgba(220,40,180,0.25);
}

/* Always-visible colored orb per service (header), CSS-only */
.acc-item__header::before {
  content: '';
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .35s var(--ease-out), filter .35s;
  filter: brightness(1.15) contrast(1.08) saturate(1.3);
}

/* Nebula orbs — layered radial gradients simulate glowing plasma clouds */
.acc-item:nth-child(1)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(200,150,255,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(150,60,255,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(220,130,255,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #3a0da8 0%, #080015 100%);
  box-shadow: 0 0 14px 4px rgba(140,60,255,.65), 0 0 30px 8px rgba(100,30,200,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(2)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(150,240,255,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(0,200,235,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(100,225,255,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #005060 0%, #000c10 100%);
  box-shadow: 0 0 14px 4px rgba(0,200,240,.65), 0 0 30px 8px rgba(0,140,200,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(3)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(150,255,200,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(0,210,110,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(100,255,165,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #004a20 0%, #000c06 100%);
  box-shadow: 0 0 14px 4px rgba(0,220,120,.65), 0 0 30px 8px rgba(0,140,80,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(4)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(255,150,240,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(240,30,185,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(255,115,225,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #600050 0%, #100010 100%);
  box-shadow: 0 0 14px 4px rgba(240,30,200,.65), 0 0 30px 8px rgba(170,10,140,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(5)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(150,190,255,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(40,110,255,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(110,165,255,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #001080 0%, #000010 100%);
  box-shadow: 0 0 14px 4px rgba(40,110,255,.65), 0 0 30px 8px rgba(20,60,200,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(6)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(255,200,130,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(255,120,20,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(255,170,80,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #602000 0%, #100500 100%);
  box-shadow: 0 0 14px 4px rgba(255,120,20,.65), 0 0 30px 8px rgba(200,70,0,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(7)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(255,240,140,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(220,175,0,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(255,215,70,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #604000 0%, #100c00 100%);
  box-shadow: 0 0 14px 4px rgba(220,175,0,.65), 0 0 30px 8px rgba(160,110,0,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(8)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(255,155,145,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(220,20,45,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(255,95,85,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #600010 0%, #100000 100%);
  box-shadow: 0 0 14px 4px rgba(220,20,45,.65), 0 0 30px 8px rgba(160,0,20,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(9)  .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(150,255,240,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(0,215,205,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(100,255,240,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #004050 0%, #000c10 100%);
  box-shadow: 0 0 14px 4px rgba(0,215,205,.65), 0 0 30px 8px rgba(0,145,135,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(10) .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(200,255,145,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(105,225,20,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(165,255,75,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #204800 0%, #040c00 100%);
  box-shadow: 0 0 14px 4px rgba(105,225,20,.65), 0 0 30px 8px rgba(60,155,0,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(11) .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(180,200,240,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(100,135,215,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(150,170,235,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #101840 0%, #040608 100%);
  box-shadow: 0 0 14px 4px rgba(100,135,215,.65), 0 0 30px 8px rgba(55,75,160,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item:nth-child(12) .acc-item__header::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.90) 0%, transparent 20%),
    radial-gradient(circle at 62% 36%, rgba(255,145,255,.60) 0%, transparent 32%),
    radial-gradient(circle at 44% 68%, rgba(205,0,245,.80) 0%, transparent 38%),
    radial-gradient(circle at 73% 60%, rgba(240,115,255,.40) 0%, transparent 26%),
    radial-gradient(circle at 50% 50%, #500060 0%, #100018 100%);
  box-shadow: 0 0 14px 4px rgba(205,0,245,.65), 0 0 30px 8px rgba(140,0,175,.25), inset 0 0 8px rgba(255,255,255,.10);
}
.acc-item__header:hover::before { transform: scale(1.18); filter: brightness(1.25) saturate(1.4); }
.acc-item--open .acc-item__header::before { transform: scale(1.1); }

/* Header orb is now the color identity — hide redundant body orb + placeholder client labels */
.acc-item__visual { display: none; }
.acc-item__labels { display: none; }

/* =============================================================
   14. Founder photo circle
   ============================================================= */
.founder-photo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, #6a4fa0, #1a0a30);
  border: 2px solid rgba(180,140,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.founder-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.founder-photo-circle .founder-initials {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  z-index: 1;
}
.founder-photo-circle--sm {
  width: 42px;
  height: 42px;
}
.founder-photo-circle--sm .founder-initials {
  font-size: 13px;
}

/* =============================================================
   15. Solo team section
   ============================================================= */
.metrics__solo-founder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.metrics__solo-info {}
.metrics__solo-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.metrics__solo-role {
  font-size: 12px;
  color: var(--g2);
  margin-top: 2px;
}
.metrics__team-title em {
  font-style: normal;
  background: linear-gradient(120deg, #B97AFF 0%, #6AADFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metrics__team-title .letter-jump {
  display: inline-block;
  background-image: linear-gradient(120deg, #B97AFF 0%, #6AADFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  will-change: transform;
}

/* =============================================================
   16. Contact section — lead capture panel
   ============================================================= */
.contact {
  background: var(--white);
  padding: 0 var(--pad-x) 110px;
}
.contact__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sep);
  border-radius: 24px;
  background: linear-gradient(160deg, #fbfaff 0%, #ffffff 45%, #f7fbff 100%);
  padding: 56px 56px 64px;
}
/* Soft color orbs in opposite corners — same language as the about cards */
.contact__panel::before,
.contact__panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.contact__panel::before {
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle at 40% 40%, rgba(185,122,255,.45), transparent 70%);
}
.contact__panel::after {
  bottom: -90px; left: -90px;
  width: 320px; height: 320px;
  background: radial-gradient(circle at 45% 45%, rgba(106,173,255,.4), transparent 70%);
}
.contact__panel > * { position: relative; z-index: 1; }

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d3fc4;
  margin-bottom: 14px;
}
.contact__eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #8B5CF6;
  flex-shrink: 0;
}

.lead-form__header {
  margin-bottom: 36px;
}
.lead-form__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
.lead-form__subtitle {
  font-size: 15px;
  color: var(--g2);
  margin-top: 8px;
}
.lead-form__legend {
  font-size: 12px;
  color: var(--g3);
  margin-top: 10px;
}
.lead-form__legend span { color: var(--g2); }

/* Two-column layout: form left, direct-channel aside right */
.lead-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(280px, 350px);
  gap: 64px;
  align-items: start;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.01em;
}
.lead-form__label span { color: var(--g2); }
.lead-form__input {
  width: 100%;
  background: var(--g5);
  border: 1.5px solid var(--sep);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--black);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.lead-form__input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.07);
}
.lead-form__input::placeholder { color: var(--g3); }
.lead-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.lead-form__phone {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.lead-form__prefix {
  background: var(--g5);
  border: 1.5px solid var(--sep);
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--black);
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
  width: auto;
  transition: border-color .2s;
}
.lead-form__prefix:focus { border-color: var(--black); }
.lead-form__input--tel { flex: 1; }
.lead-form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.lead-form__submit {
  cursor: pointer;
  border: none;
}
.lead-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lead-form__btn-text { pointer-events: none; }
.lead-form__note {
  font-size: 13px;
  color: var(--g2);
  flex: 1;
  min-width: 200px;
}
.lead-form__note--error { color: #c0392b; }
.lead-form__note--success { color: #27ae60; }

/* Optional-field chip */
.lead-form__opt {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--g2);
  background: var(--g5);
  border: 1px solid var(--sep);
  vertical-align: 1px;
}

/* Per-field validation */
.lead-form__error {
  font-size: 12px;
  color: #c0392b;
  line-height: 1.4;
}
.lead-form__field.is-invalid .lead-form__input,
.lead-form__field.is-invalid .lead-form__prefix {
  border-color: #c0392b;
}
.lead-form__field.is-invalid .lead-form__input:focus {
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}

/* Honeypot — visually gone, present for bots */
.lead-form__hp-wrap {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Direct-channel aside */
.lead-aside__card {
  border: 1px solid var(--sep);
  border-radius: 16px;
  padding: 28px 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px -22px rgba(20, 10, 50, 0.18);
}
.lead-aside__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.lead-aside__text {
  font-size: 13px;
  color: var(--g2);
  line-height: 1.6;
  margin-top: 6px;
}
.lead-aside__wa {
  display: inline-flex;
  margin-top: 18px;
}
.lead-aside__email {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lead-aside__email:hover { color: var(--black); }

.lead-aside__steps { margin-top: 28px; padding: 0 6px; }
.lead-aside__steps-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 14px;
}
.lead-aside__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--g1);
}
.lead-aside__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lead-aside__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(139,92,246,0.12);
  color: #6d3fc4;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Success state */
.lead-form__success {
  border: 1px solid var(--sep);
  border-radius: 16px;
  padding: 48px 40px;
  background: #ffffff;
  box-shadow: 0 14px 34px -22px rgba(20, 10, 50, 0.18);
  text-align: center;
  outline: none;
}
.lead-success__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(39,174,96,0.12);
  color: #1e8e4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lead-success__check svg { width: 26px; height: 26px; }
.lead-success__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 16px;
}
.lead-success__text {
  font-size: 15px;
  color: var(--g1);
  line-height: 1.6;
  margin-top: 8px;
}
.lead-success__text strong { color: var(--black); }
.lead-success__wa {
  display: inline-flex;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .lead-form__grid { grid-template-columns: 1fr; gap: 40px; }
  /* Shortcut first on mobile — offer the easy path before the long form */
  .lead-form__aside { order: -1; }
  .contact { padding: 0 var(--pad-x-sm, 24px) 80px; }
  .contact__panel { padding: 36px 24px 44px; border-radius: 18px; }
}
@media (max-width: 700px) {
  .lead-form__row { grid-template-columns: 1fr; }
  .lead-form__phone { flex-direction: column; }
  .lead-form__prefix { width: 100%; }
  .faq__layout { grid-template-columns: 1fr; }
}

/* =============================================================
   V2 — IMMERSIVE EFFECTS
   ============================================================= */

/* ---- Custom cursor ---- */
#cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: opacity .3s;
}
#cursor-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease-out), width .25s, height .25s, background .25s;
}
body.cursor-hover #cursor-dot {
  width: 36px; height: 36px;
  background: rgba(255,145,82,.7);
}
@media (hover: none) { #cursor { display: none; } }

/* ---- Particle canvas ---- */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: .85;
}

/* ---- God rays ---- */
.hero__godrays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  overflow: hidden;
}
.hero__godrays span {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 45vh;
  transform-origin: 0 0;
  background: linear-gradient(to bottom, rgba(255,180,90,.18), transparent);
  filter: blur(4px);
  opacity: 0;
  animation: godray 6s ease-in-out infinite;
}
.hero__godrays span:nth-child(1) { transform: rotate(0deg);    animation-delay: 0s;    height: 38vh; }
.hero__godrays span:nth-child(2) { transform: rotate(45deg);   animation-delay: 0.8s;  height: 42vh; }
.hero__godrays span:nth-child(3) { transform: rotate(90deg);   animation-delay: 1.6s;  height: 36vh; }
.hero__godrays span:nth-child(4) { transform: rotate(135deg);  animation-delay: 2.4s;  height: 44vh; }
.hero__godrays span:nth-child(5) { transform: rotate(180deg);  animation-delay: 0.4s;  height: 40vh; }
.hero__godrays span:nth-child(6) { transform: rotate(225deg);  animation-delay: 1.2s;  height: 35vh; }
.hero__godrays span:nth-child(7) { transform: rotate(270deg);  animation-delay: 2s;    height: 43vh; }
.hero__godrays span:nth-child(8) { transform: rotate(315deg);  animation-delay: 2.8s;  height: 38vh; }
@keyframes godray {
  0%, 100% { opacity: 0; }
  20%       { opacity: .7; }
  50%       { opacity: .3; }
  80%       { opacity: .6; }
}

/* ---- Scroll guide (right side journey line) ---- */
.scroll-guide {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 220px;
}
.scroll-guide__track {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.1);
  transform: translateX(-50%);
}
.scroll-guide__fill {
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,145,82,.8), rgba(255,145,82,.3));
  height: 0%;
  transition: height .5s var(--ease-out);
  box-shadow: 0 0 6px rgba(255,145,82,.5);
}
.scroll-guide__dot {
  position: absolute;
  left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: transparent;
  transform: translate(-50%, -50%);
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
  cursor: pointer;
}
.scroll-guide__dot:nth-child(2) { top: 0%;   }
.scroll-guide__dot:nth-child(3) { top: 25%;  }
.scroll-guide__dot:nth-child(4) { top: 50%;  }
.scroll-guide__dot:nth-child(5) { top: 75%;  }
.scroll-guide__dot:nth-child(6) { top: 100%; }
.scroll-guide__dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  font-weight: 600;
  transition: color .3s, opacity .3s;
  opacity: 0;
}
.scroll-guide__dot:hover::after,
.scroll-guide__dot.is-active::after { opacity: 1; color: rgba(255,145,82,.9); }
.scroll-guide__dot.is-active {
  background: #ff9152;
  border-color: #ff9152;
  box-shadow: 0 0 10px rgba(255,145,82,.6), 0 0 20px rgba(255,145,82,.25);
  transform: translate(-50%, -50%) scale(1.3);
}
.scroll-guide__dot.is-passed {
  background: rgba(255,145,82,.4);
  border-color: rgba(255,145,82,.5);
}
@media (max-width: 720px) { .scroll-guide { display: none; } }

/* ---- Card 3D tilt (metrics) ---- */
.metrics__block {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .12s ease, box-shadow .12s ease;
}

/* ---- Section entrance polish ---- */
.reveal { opacity: 0; transform: translateY(32px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal[data-split] { opacity: 1; transform: none; }

/* ---- Lens flare on eclipse hover ---- */
.hero__masthead:hover .hero__rim {
  box-shadow: 0 0 .6em .08em rgba(255,200,140,.8), 0 0 1.2em .2em rgba(255,150,80,.35);
  transition: box-shadow .4s ease;
}
.hero__masthead:hover .hero__corona {
  animation-duration: 14s;
}

/* =============================================================
   V2 — ECLIPSE PORTAL + SCROLL JOURNEY
   ============================================================= */

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  animation: scrollHintBob 2.5s ease-in-out infinite;
}
.hero__scroll-hint span {
  font-size: 9px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes scrollHintBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Eclipse portal overlay */
#eclipse-portal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #05030a;
  clip-path: circle(0% at 50% 48%);
  z-index: 500;
  pointer-events: none;
  will-change: clip-path;
}
#eclipse-portal.is-active { pointer-events: all; }

/* White burst */
#white-burst {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: radial-gradient(circle at 50% 48%, #ffffff 0%, #f0f0f8 60%, #e8e8f4 100%);
  clip-path: circle(0% at 50% 48%);
  z-index: 501;
  pointer-events: none;
  will-change: clip-path;
}

/* =============================================================
   V2 — SOLAR SYSTEM SERVICES
   ============================================================= */
.solar-section {
  background: #050308;
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solar-intro {
  text-align: center;
  margin-bottom: 24px;
  z-index: 10;
  position: relative;
}
.solar-intro__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.solar-intro__sub {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

/* Solar system container */
.solar-system {
  position: relative;
  width: min(860px, 92vw);
  height: min(860px, 92vw);
  flex-shrink: 0;
}

#solar-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Sun */
.solar-sun {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  z-index: 5;
}
.solar-sun__core {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #fffbe0 0%, #ffe066 22%, #ffaa00 55%, #ff5500 85%, #c42000 100%);
  box-shadow:
    0 0 18px rgba(255,160,60,.5),
    0 0 50px rgba(255,100,0,.18);
  overflow: hidden;
}
.solar-sun__core::before {
  content: '';
  position: absolute;
  top: 10%; left: 14%;
  width: 36%; height: 26%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,240,.8) 0%, transparent 100%);
  transform: rotate(-25deg);
}
.solar-sun__ring { display: none; }

/* Planet buttons */
.solar-planet {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: transform .3s var(--ease-out);
}
.solar-planet:hover { transform: translate(-50%, -50%) scale(1.3); }
.solar-planet.is-active { transform: translate(-50%, -50%) scale(1.5); }

/* Minimalist sphere */
.solar-planet__dot {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  box-shadow:
    inset -6px -5px 14px rgba(0,0,0,0.55),
    0 2px 14px rgba(0,0,0,0.45);
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
}

.solar-planet__dot::before {
  content: '';
  position: absolute;
  top: 12%; left: 14%;
  width: 28%; height: 20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 50%, rgba(255,255,255,.55) 0%, transparent 100%);
  transform: rotate(-30deg);
  pointer-events: none;
  z-index: 2;
}

.solar-planet__dot::after { display: none; }

.solar-planet.is-active .solar-planet__dot {
  box-shadow:
    inset -6px -5px 14px rgba(0,0,0,0.55),
    0 2px 14px rgba(0,0,0,0.45),
    0 0 36px rgba(var(--planet-glow,255,255,255),0.4),
    0 0 0 2px rgba(255,255,255,0.18);
}

.solar-planet__name {
  font-size: 10px;
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s;
  text-shadow: 0 1px 6px rgba(0,0,0,.9);
}
.solar-planet.is-active .solar-planet__name { color: #fff; }

/* Service detail panel */
.solar-detail {
  width: min(640px, 92vw);
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
  z-index: 10;
  margin-top: 8px;
}
.solar-detail.is-open { max-height: 300px; }
.solar-detail__inner {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(12px);
  position: relative;
}
.solar-detail__planet-preview {
  width: 50px; height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,255,255,.15);
}
.solar-detail__content { flex: 1; }
.solar-detail__title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.solar-detail__desc {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 14px;
}
.solar-detail__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.solar-detail__tags .tag {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 10px;
  padding: 4px 11px;
}
.solar-detail__close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  color: rgba(255,255,255,.3);
  font-size: 14px;
  cursor: pointer;
  transition: color .2s;
}
.solar-detail__close:hover { color: #fff; }

@media (max-width: 720px) {
  .solar-system { width: 92vw; height: 92vw; }
  .solar-planet__dot { width: 30px; height: 30px; }
  .solar-planet__name { font-size: 8px; }
  .solar-detail__inner { flex-direction: column; }
}

/* ---- Services hero-identical background ---- */
.svc-space-bg {
  position: absolute;
  inset: 0;
  background-color: #050308;
  background-image: radial-gradient(115% 95% at 62% 50%, rgba(90,50,22,0.55) 0%, rgba(40,22,55,0.35) 38%, transparent 60%);
  z-index: 0;
  overflow: hidden;
}
/* Static star dots — same as hero */
.svc-space-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at  7%  9%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1px 1px at 14%  4%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 22% 18%, rgba(255,255,255,.75) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 31%  7%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 43% 14%, rgba(255,255,255,.90) .5px, transparent 1px),
    radial-gradient(1px 1px at 57%  3%, rgba(255,255,255,.65) .5px, transparent 1px),
    radial-gradient(1px 1px at 68% 21%, rgba(255,255,255,.80) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 76%  9%, rgba(255,255,255,.70) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 88% 16%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 94%  6%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1px 1px at  4% 38%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1px 1px at 13% 52%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 25% 44%, rgba(255,255,255,.80) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 38% 61%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1px 1px at 52% 47%, rgba(255,255,255,.75) .5px, transparent 1px),
    radial-gradient(1px 1px at 63% 58%, rgba(255,255,255,.50) .5px, transparent 1px),
    radial-gradient(1px 1px at 74% 42%, rgba(255,255,255,.85) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 82% 55%, rgba(255,255,255,.65) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 91% 48%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1px 1px at  8% 75%, rgba(255,255,255,.80) .5px, transparent 1px),
    radial-gradient(1px 1px at 19% 83%, rgba(255,255,255,.55) .5px, transparent 1px),
    radial-gradient(1px 1px at 34% 78%, rgba(255,255,255,.70) .5px, transparent 1px),
    radial-gradient(1.5px 1.5px at 47% 88%, rgba(255,255,255,.85) .7px, transparent 1.5px),
    radial-gradient(1px 1px at 61% 72%, rgba(255,255,255,.60) .5px, transparent 1px),
    radial-gradient(1px 1px at 73% 85%, rgba(255,255,255,.75) .5px, transparent 1px),
    radial-gradient(1px 1px at 85% 77%, rgba(255,255,255,.50) .5px, transparent 1px),
    radial-gradient(1px 1px at 96% 91%, rgba(255,255,255,.90) .5px, transparent 1px),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,.45) .5px, transparent 1px),
    radial-gradient(1px 1px at 17% 28%, rgba(255,255,255,.65) .5px, transparent 1px),
    radial-gradient(2px 2px at 40% 65%, rgba(255,255,255,.40) 1px,  transparent 2px);
  pointer-events: none;
  z-index: 0;
}
/* Vignette — same as hero */
.svc-space-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(2,2,6,0.5) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ---- Services section star canvas ---- */
#services-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.solar-section { position: relative; }
.solar-intro, .solar-system, .solar-detail { position: relative; z-index: 2; }

/* ---- Services card grid ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1060px, 92vw);
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.svc-card {
  background: rgba(14, 14, 20, 0.88);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.svc-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

@keyframes orb-drift {
  0%   { transform: translate(0px, 0px) scale(1);     opacity: 0.85; }
  20%  { transform: translate(6px, -9px) scale(1.13); opacity: 1; }
  45%  { transform: translate(-5px, -4px) scale(0.94); opacity: 0.75; }
  70%  { transform: translate(7px, 6px) scale(1.09);  opacity: 0.92; }
  100% { transform: translate(0px, 0px) scale(1);     opacity: 0.85; }
}

.svc-card__orb {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(22px);
  z-index: 0;
  animation: orb-drift 5s ease-in-out infinite;
}

.svc-card__title,
.svc-card__desc {
  position: relative;
  z-index: 1;
}

/* Staggered delays — each orb drifts at a different phase */
.services__grid .svc-card:nth-child(1)  .svc-card__orb { animation-delay:  0.0s; animation-duration: 5.2s; }
.services__grid .svc-card:nth-child(2)  .svc-card__orb { animation-delay: -1.3s; animation-duration: 4.8s; }
.services__grid .svc-card:nth-child(3)  .svc-card__orb { animation-delay: -2.7s; animation-duration: 5.6s; }
.services__grid .svc-card:nth-child(4)  .svc-card__orb { animation-delay: -0.6s; animation-duration: 4.6s; }
.services__grid .svc-card:nth-child(5)  .svc-card__orb { animation-delay: -3.4s; animation-duration: 5.0s; }
.services__grid .svc-card:nth-child(6)  .svc-card__orb { animation-delay: -1.9s; animation-duration: 5.4s; }
.services__grid .svc-card:nth-child(7)  .svc-card__orb { animation-delay: -4.2s; animation-duration: 4.7s; }
.services__grid .svc-card:nth-child(8)  .svc-card__orb { animation-delay: -0.4s; animation-duration: 5.8s; }
.services__grid .svc-card:nth-child(9)  .svc-card__orb { animation-delay: -3.0s; animation-duration: 4.9s; }
.services__grid .svc-card:nth-child(10) .svc-card__orb { animation-delay: -1.6s; animation-duration: 5.3s; }
.services__grid .svc-card:nth-child(11) .svc-card__orb { animation-delay: -3.8s; animation-duration: 5.1s; }
.services__grid .svc-card:nth-child(12) .svc-card__orb { animation-delay: -0.9s; animation-duration: 4.5s; }

.svc-card--purple .svc-card__orb { background: radial-gradient(circle at 40% 40%, #c79bff 0%, #8b5cf6 55%, transparent 100%); }
.svc-card--blue   .svc-card__orb { background: radial-gradient(circle at 40% 40%, #8fc4ff 0%, #4d8fe6 55%, transparent 100%); }
.svc-card--warm   .svc-card__orb { background: radial-gradient(circle at 40% 40%, #ffcf9e 0%, #ff9152 55%, transparent 100%); }
.svc-card--green  .svc-card__orb { background: radial-gradient(circle at 40% 40%, #7ee0a8 0%, #22b06a 55%, transparent 100%); }

.svc-card--purple:hover { border-color: rgba(185,122,255,0.45); }
.svc-card--blue:hover   { border-color: rgba(106,173,255,0.45); }
.svc-card--warm:hover   { border-color: rgba(255,145,82,0.45); }
.svc-card--green:hover  { border-color: rgba(60,200,130,0.45); }

/* Closing highlight card — spans the full grid width */
.svc-card--full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 30px 36px;
}
.svc-card--full .svc-card__icon { flex-shrink: 0; }
.svc-card--full .svc-card__title { flex-shrink: 0; }
.svc-card--full .svc-card__desc { flex: 1; min-width: 240px; }
.svc-card--full .svc-card__arrow { margin-top: 0; padding-top: 0; flex-shrink: 0; }
@media (max-width: 720px) {
  .svc-card--full { flex-direction: column; align-items: flex-start; }
}

.svc-card__icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.svc-card__icon svg {
  width: 22px;
  height: 22px;
  transition: transform .35s var(--ease-out);
}
.svc-card:hover .svc-card__icon svg { transform: scale(1.12); }

.svc-card__title {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.svc-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.svc-card__arrow {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  color: rgba(255,255,255,0.3);
  transition: transform .3s ease, color .3s ease;
}
.svc-card__arrow svg { width: 18px; height: 18px; }
.svc-card:hover .svc-card__arrow {
  color: #fff;
  transform: translateX(5px);
}

@media (max-width: 820px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ---- Services accordion dark-theme overrides ---- */
.services__acc-wrap {
  width: min(960px, 90vw);
  position: relative;
  z-index: 1;
}

/* Orb dot in header */
.acc-item__orb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset -3px -2px 8px rgba(0,0,0,0.5), 0 0 10px rgba(255,255,255,0.08);
}

/* Dark variant when inside solar-section — !important to beat light-theme vars */
.solar-section .services__list { border-top: 1px solid rgba(255,255,255,.12) !important; }
.solar-section .acc-item { border-bottom: 1px solid rgba(255,255,255,.12) !important; }
.solar-section .acc-item__header { color: #fff !important; }
.solar-section .acc-item__num { color: rgba(255,255,255,.4) !important; }
.solar-section .acc-item__title { color: #fff !important; }
.solar-section .acc-item__teaser { color: rgba(255,255,255,.55) !important; }
.solar-section .acc-item__proj { color: rgba(255,255,255,.45) !important; }
.solar-section .acc-item__desc { color: rgba(255,255,255,.65) !important; }
.solar-section .acc-item__toggle {
  border-color: rgba(255,255,255,.25) !important;
  color: #fff !important;
  background: transparent !important;
}
.solar-section .acc-item__header:hover .acc-item__toggle,
.solar-section .acc-item__toggle:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.5) !important;
  color: #fff !important;
}
.solar-section .tag {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.8) !important;
}
.solar-section .services__cta-text { color: rgba(255,255,255,.55) !important; }
.solar-section .services__cta-eyebrow { color: #fff !important; }

/* "Hablemos" on dark space bg — hero-style glass pill (a black pill vanishes here) */
.solar-section .services__cta-btn {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: pill-pulse 2.4s ease-out infinite;
}
.solar-section .services__cta-btn:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 24px rgba(160,120,255,0.35);
  animation: none;
  transform: none;
}

/* ---- Typography word-reveal (clip slide-up) ---- */
.word-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
  padding-bottom: 0.08em;
}
.word-inner {
  display: inline-block;
  transform: translateY(110%);
}
