/*****
 * LaKYOBOX® - Hero Section
 * Solar system — items orbit the center like planets
 *****/

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  /* Full-width linear gradient: dark 24% → dark green 64% */
  background: linear-gradient(90deg, #0f1118 24%, #1b5239 64%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 12vw, 226px);
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========== LEFT — CONTENT ========== */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin-bottom: var(--space-xl);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

/* Staggered reveal — each line slides up and fades in */
.hero__title > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  animation: titleReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Children: 1=brand, 2=line2, 3=highlight, 4=end */
.hero__title > span:nth-child(1) { animation-delay: 0.1s; }
.hero__title > span:nth-child(2) { animation-delay: 0.3s; }
.hero__title > span:nth-child(3) { animation-delay: 0.5s; }
.hero__title > span:nth-child(4) { animation-delay: 0.7s; }

@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Line 2 wrapper — keeps "Votre coffret" and "100%" inline */
.hero__title-line2 {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}

/* LaKYOBOX® — massive, bold, black with green glow (neon effect on dark bg) */
.hero__title-brand {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  color: var(--color-black);
  position: relative;
  text-shadow:
    0 0 15px rgba(53, 154, 102, 0.6),
    0 0 30px rgba(53, 154, 102, 0.35),
    0 0 60px rgba(53, 154, 102, 0.2),
    0 0 100px rgba(53, 154, 102, 0.10);
}

/* Registered trademark mark — kept small relative to the giant brand text */
.hero__title-brand .reg-mark {
  font-size: 0.32em;
  vertical-align: top;
  position: relative;
  top: 0.1em;
}

/* Constellation stars around LaKYOBOX® */
.hero__title-brand::before,
.hero__title-brand::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.hero__title-brand::before {
  box-shadow:
    -12px -10px 0 1px rgba(255,255,255,0.7),
    -8px 8px 0 0.5px rgba(255,255,255,0.4),
    25px -15px 0 0.5px rgba(255,255,255,0.5),
    60px -12px 0 1px rgba(255,255,255,0.35),
    110px -18px 0 0.5px rgba(255,255,255,0.45),
    170px -8px 0 1.5px rgba(255,255,255,0.6),
    220px -14px 0 0.5px rgba(255,255,255,0.3),
    280px -10px 0 1px rgba(255,255,255,0.5),
    340px -16px 0 0.5px rgba(255,255,255,0.35),
    -15px 30px 0 0.5px rgba(255,255,255,0.3),
    45px 35px 0 1px rgba(255,255,255,0.4),
    150px 32px 0 0.5px rgba(255,255,255,0.3);
  animation: twinkle 4s ease-in-out infinite alternate;
}

.hero__title-brand::after {
  box-shadow:
    380px -6px 0 0.5px rgba(255,255,255,0.4),
    95px -20px 0 1px rgba(255,255,255,0.5),
    250px -20px 0 1.5px rgba(255,255,255,0.55),
    320px 5px 0 0.5px rgba(255,255,255,0.35),
    200px 38px 0 1px rgba(255,255,255,0.4),
    350px 30px 0 0.5px rgba(255,255,255,0.3),
    -5px 55px 0 0.5px rgba(255,255,255,0.25),
    130px -5px 0 0.5px rgba(255,255,255,0.35);
  animation: twinkle 4s 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* "Votre coffret" — same style as "prêt à installer" */
.hero__title-sub {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: #e8e8ec;
}

/* "100%" — green, no glow */
.hero__title-100 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-green-kyolis);
}

/* "Personnalisable" — neon glow green, own line */
.hero__title .highlight {
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  color: var(--color-green-kyolis);
  position: relative;
  font-weight: var(--font-weight-bold);
  align-self: flex-start;
  margin-bottom: 0.3em;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-green-kyolis);
  border-radius: var(--border-radius-full);
  animation: underlineGrow 1s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 8px rgba(53, 154, 102, 0.4);
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* "prêt à installer." — plain */
.hero__title-end {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: #e8e8ec;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-lg);
}

.hero__bullets li {
  font-size: var(--font-size-md);
  color: #c8c8d4;
  line-height: var(--line-height-normal);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.hero__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green-kyolis);
  box-shadow: 0 0 8px rgba(53, 154, 102, 0.4);
  flex-shrink: 0;
}

.hero__made-in {
  font-size: var(--font-size-sm);
  color: #707080;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2xl);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__ctas .btn--secondary {
  color: var(--color-white);
  border-color: var(--color-white);
  background-color: transparent;
}


/* ========== RIGHT — SOLAR SYSTEM ========== */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

/* 3D Sphere — bright translucent planet */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 115%;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.1) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(80, 170, 120, 0.35) 0%, rgba(45, 130, 87, 0.2) 30%, rgba(27, 82, 57, 0.12) 55%, transparent 100%);
  box-shadow:
    0 0 80px rgba(53, 154, 102, 0.2),
    0 0 160px rgba(53, 154, 102, 0.08);
  z-index: 0;
}

/* Outer atmospheric glow */
.hero__visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 135%;
  height: 135%;
  max-width: 740px;
  max-height: 740px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(53, 154, 102, 0.06) 30%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: atmosphereGlow 8s ease-in-out infinite;
}

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

.orbital {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  z-index: 2;
}

/* Star field — milky way particles */
.orbital::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow:
    -180px -80px 0 0.5px rgba(255,255,255,0.3),
    120px -140px 0 0.5px rgba(255,255,255,0.25),
    -60px 160px 0 0.5px rgba(255,255,255,0.2),
    200px 60px 0 0.5px rgba(255,255,255,0.3),
    -150px 100px 0 0.5px rgba(255,255,255,0.15),
    80px 180px 0 0.5px rgba(255,255,255,0.2),
    -200px -20px 0 0.5px rgba(255,255,255,0.25),
    160px -100px 0 0.5px rgba(255,255,255,0.2),
    -40px -170px 0 0.5px rgba(255,255,255,0.3),
    100px 120px 0 0.5px rgba(255,255,255,0.15),
    -120px -130px 0 0.5px rgba(255,255,255,0.2),
    50px -60px 0 0.5px rgba(255,255,255,0.15),
    -90px 50px 0 0.5px rgba(255,255,255,0.25),
    170px -30px 0 0.5px rgba(255,255,255,0.2),
    -30px 90px 0 0.5px rgba(255,255,255,0.15),
    140px 150px 0 0.5px rgba(255,255,255,0.2),
    -170px 140px 0 0.5px rgba(255,255,255,0.1),
    210px -150px 0 0.5px rgba(255,255,255,0.15),
    -100px -50px 0 1px rgba(255,255,255,0.12),
    60px 30px 0 1px rgba(255,255,255,0.1);
}

/* ========== SATURN RINGS — big, bold, overflow the sphere ========== */
.orbital__ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(800px) rotateX(50deg);
  animation: ringPulse 4s ease-in-out infinite;
  border: 0 solid transparent;
}

/* Ring 1 — small, thick, bright */
.orbital__ring--1 {
  width: 50%;
  height: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  animation-delay: 0s;
}

/* Ring 2 — medium, visible */
.orbital__ring--2 {
  width: 75%;
  height: 75%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation-delay: 0.5s;
}

/* Ring 3 — large, overflows the sphere */
.orbital__ring--3 {
  width: 110%;
  height: 110%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  animation-delay: 1s;
}

/* Ring 4 — biggest, clearly overflows */
.orbital__ring--4 {
  width: 135%;
  height: 135%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation-delay: 1.5s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) perspective(800px) rotateX(50deg) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) perspective(800px) rotateX(50deg) scale(1.02); }
}

/* ========== CENTER — the Sun / LaKYOBOX® ========== */
.orbital__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.orbital__center-box {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.15),
    0 0 50px rgba(53, 154, 102, 0.2);
}

.orbital__center-box svg {
  width: 36px;
  height: 36px;
}

.orbital__center-label {
  font-family: var(--font-title);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  color: var(--color-white);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.orbital__center-sublabel {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-semibold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ========== ORBITAL ITEMS — planets orbiting the center ========== */
.orbital__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 4;
  transform: translate(-50%, -50%);
}

.orbital__item-icon {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.12),
    0 0 15px rgba(53, 154, 102, 0.08);
  transition: all var(--transition-base);
  /* Default size — overridden per item below */
  width: 44px;
  height: 44px;
}

.orbital__item-icon svg {
  width: 20px;
  height: 20px;
}

.orbital__item:hover .orbital__item-icon {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-green-kyolis);
  transform: scale(1.15);
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(53, 154, 102, 0.2);
}

.orbital__item-label {
  font-size: 10px;
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Planet sizes — each item is a different size like real planets */
/* Inner orbit — smaller planets */
.orbital__item:nth-child(6) .orbital__item-icon  { width: 40px; height: 40px; }  /* Accessoires — small */
.orbital__item:nth-child(6) .orbital__item-icon svg { width: 18px; height: 18px; }

.orbital__item:nth-child(8) .orbital__item-icon  { width: 50px; height: 50px; }  /* Alimentation — medium-large */
.orbital__item:nth-child(8) .orbital__item-icon svg { width: 24px; height: 24px; }

.orbital__item:nth-child(10) .orbital__item-icon { width: 36px; height: 36px; }  /* Gestion fibre — smallest */
.orbital__item:nth-child(10) .orbital__item-icon svg { width: 16px; height: 16px; }

.orbital__item:nth-child(12) .orbital__item-icon { width: 46px; height: 46px; }  /* Protections — medium */
.orbital__item:nth-child(12) .orbital__item-icon svg { width: 22px; height: 22px; }

/* Outer orbit — bigger planets */
.orbital__item:nth-child(7) .orbital__item-icon  { width: 54px; height: 54px; }  /* Type fixation — large */
.orbital__item:nth-child(7) .orbital__item-icon svg { width: 26px; height: 26px; }

.orbital__item:nth-child(9) .orbital__item-icon  { width: 58px; height: 58px; }  /* Switch/Convertisseur — Jupiter */
.orbital__item:nth-child(9) .orbital__item-icon svg { width: 28px; height: 28px; }

.orbital__item:nth-child(11) .orbital__item-icon { width: 48px; height: 48px; }  /* Type coffrets — medium-large */
.orbital__item:nth-child(11) .orbital__item-icon svg { width: 22px; height: 22px; }

.orbital__item:nth-child(13) .orbital__item-icon { width: 42px; height: 42px; }  /* Options — medium-small */
.orbital__item:nth-child(13) .orbital__item-icon svg { width: 20px; height: 20px; }

/* ========== ORBIT ANIMATIONS ========== */
/*
 * 2 orbital rings with different sizes and speeds:
 * Inner orbit (4 items) — closer, faster (30s) — semi-axes: 28% x 18%
 * Outer orbit (4 items) — further, slower (50s) — semi-axes: 44% x 28%
 *
 * Items pass "behind" the planet at the top (smaller, faded)
 * and "in front" at the bottom (full size, bright)
 */

/* Inner orbit — elliptical path, 12 keyframe points for smooth curve */
@keyframes orbitInner {
  0%      { top: 32%;   left: 50%;   opacity: 0.55; transform: translate(-50%, -50%) scale(0.85); }
  8.33%   { top: 34.4%; left: 64%;   opacity: 0.6;  transform: translate(-50%, -50%) scale(0.87); }
  16.67%  { top: 41%;   left: 74.2%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.9); }
  25%     { top: 50%;   left: 78%;   opacity: 0.85; transform: translate(-50%, -50%) scale(0.93); }
  33.33%  { top: 59%;   left: 74.2%; opacity: 0.93; transform: translate(-50%, -50%) scale(0.97); }
  41.67%  { top: 65.6%; left: 64%;   opacity: 0.98; transform: translate(-50%, -50%) scale(0.99); }
  50%     { top: 68%;   left: 50%;   opacity: 1;    transform: translate(-50%, -50%) scale(1); }
  58.33%  { top: 65.6%; left: 36%;   opacity: 0.98; transform: translate(-50%, -50%) scale(0.99); }
  66.67%  { top: 59%;   left: 25.8%; opacity: 0.93; transform: translate(-50%, -50%) scale(0.97); }
  75%     { top: 50%;   left: 22%;   opacity: 0.85; transform: translate(-50%, -50%) scale(0.93); }
  83.33%  { top: 41%;   left: 25.8%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.9); }
  91.67%  { top: 34.4%; left: 36%;   opacity: 0.6;  transform: translate(-50%, -50%) scale(0.87); }
  100%    { top: 32%;   left: 50%;   opacity: 0.55; transform: translate(-50%, -50%) scale(0.85); }
}

/* Outer orbit — elliptical path, 12 keyframe points */
@keyframes orbitOuter {
  0%      { top: 22%;   left: 50%;   opacity: 0.55; transform: translate(-50%, -50%) scale(0.85); }
  8.33%   { top: 25.8%; left: 72%;   opacity: 0.6;  transform: translate(-50%, -50%) scale(0.87); }
  16.67%  { top: 36%;   left: 88.1%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.9); }
  25%     { top: 50%;   left: 94%;   opacity: 0.85; transform: translate(-50%, -50%) scale(0.93); }
  33.33%  { top: 64%;   left: 88.1%; opacity: 0.93; transform: translate(-50%, -50%) scale(0.97); }
  41.67%  { top: 74.2%; left: 72%;   opacity: 0.98; transform: translate(-50%, -50%) scale(0.99); }
  50%     { top: 78%;   left: 50%;   opacity: 1;    transform: translate(-50%, -50%) scale(1); }
  58.33%  { top: 74.2%; left: 28%;   opacity: 0.98; transform: translate(-50%, -50%) scale(0.99); }
  66.67%  { top: 64%;   left: 11.9%; opacity: 0.93; transform: translate(-50%, -50%) scale(0.97); }
  75%     { top: 50%;   left: 6%;    opacity: 0.85; transform: translate(-50%, -50%) scale(0.93); }
  83.33%  { top: 36%;   left: 11.9%; opacity: 0.72; transform: translate(-50%, -50%) scale(0.9); }
  91.67%  { top: 25.8%; left: 28%;   opacity: 0.6;  transform: translate(-50%, -50%) scale(0.87); }
  100%    { top: 22%;   left: 50%;   opacity: 0.55; transform: translate(-50%, -50%) scale(0.85); }
}

/* Inner orbit items — children 6, 8, 10, 12 of .orbital
   4 items spaced 90° apart = 25% delay offset, duration 30s */
.orbital__item:nth-child(6) {
  animation: orbitInner 30s linear infinite;
  animation-delay: 0s;
}
.orbital__item:nth-child(8) {
  animation: orbitInner 30s linear infinite;
  animation-delay: -7.5s;
}
.orbital__item:nth-child(10) {
  animation: orbitInner 30s linear infinite;
  animation-delay: -15s;
}
.orbital__item:nth-child(12) {
  animation: orbitInner 30s linear infinite;
  animation-delay: -22.5s;
}

/* Outer orbit items — children 7, 9, 11, 13 of .orbital
   4 items spaced 90° apart, duration 50s */
.orbital__item:nth-child(7) {
  animation: orbitOuter 50s linear infinite;
  animation-delay: 0s;
}
.orbital__item:nth-child(9) {
  animation: orbitOuter 50s linear infinite;
  animation-delay: -12.5s;
}
.orbital__item:nth-child(11) {
  animation: orbitOuter 50s linear infinite;
  animation-delay: -25s;
}
.orbital__item:nth-child(13) {
  animation: orbitOuter 50s linear infinite;
  animation-delay: -37.5s;
}

/* ========== DECORATIVE DOTS — small texture planets ========== */
.orbital__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  z-index: 3;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Mid orbit — between inner and outer, semi-axes: 36% x 23% */
@keyframes orbitMid {
  0%      { top: 27%;   left: 50%;   opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
  8.33%   { top: 30.1%; left: 68%;   opacity: 0.5; transform: translate(-50%, -50%) scale(0.84); }
  16.67%  { top: 38.5%; left: 81.2%; opacity: 0.6; transform: translate(-50%, -50%) scale(0.88); }
  25%     { top: 50%;   left: 86%;   opacity: 0.75; transform: translate(-50%, -50%) scale(0.92); }
  33.33%  { top: 61.5%; left: 81.2%; opacity: 0.88; transform: translate(-50%, -50%) scale(0.96); }
  41.67%  { top: 69.9%; left: 68%;   opacity: 0.95; transform: translate(-50%, -50%) scale(0.99); }
  50%     { top: 73%;   left: 50%;   opacity: 1;    transform: translate(-50%, -50%) scale(1); }
  58.33%  { top: 69.9%; left: 32%;   opacity: 0.95; transform: translate(-50%, -50%) scale(0.99); }
  66.67%  { top: 61.5%; left: 18.8%; opacity: 0.88; transform: translate(-50%, -50%) scale(0.96); }
  75%     { top: 50%;   left: 14%;   opacity: 0.75; transform: translate(-50%, -50%) scale(0.92); }
  83.33%  { top: 38.5%; left: 18.8%; opacity: 0.6; transform: translate(-50%, -50%) scale(0.88); }
  91.67%  { top: 30.1%; left: 32%;   opacity: 0.5; transform: translate(-50%, -50%) scale(0.84); }
  100%    { top: 27%;   left: 50%;   opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
}

/* Tight orbit — close to center, semi-axes: 18% x 11.5% */
@keyframes orbitTight {
  0%      { top: 38.5%; left: 50%;   opacity: 0.35; transform: translate(-50%, -50%) scale(0.8); }
  8.33%   { top: 40%;   left: 59%;   opacity: 0.42; transform: translate(-50%, -50%) scale(0.84); }
  16.67%  { top: 44%;   left: 65.6%; opacity: 0.55; transform: translate(-50%, -50%) scale(0.88); }
  25%     { top: 50%;   left: 68%;   opacity: 0.7;  transform: translate(-50%, -50%) scale(0.92); }
  33.33%  { top: 56%;   left: 65.6%; opacity: 0.82; transform: translate(-50%, -50%) scale(0.96); }
  41.67%  { top: 60%;   left: 59%;   opacity: 0.92; transform: translate(-50%, -50%) scale(0.99); }
  50%     { top: 61.5%; left: 50%;   opacity: 1;    transform: translate(-50%, -50%) scale(1); }
  58.33%  { top: 60%;   left: 41%;   opacity: 0.92; transform: translate(-50%, -50%) scale(0.99); }
  66.67%  { top: 56%;   left: 34.4%; opacity: 0.82; transform: translate(-50%, -50%) scale(0.96); }
  75%     { top: 50%;   left: 32%;   opacity: 0.7;  transform: translate(-50%, -50%) scale(0.92); }
  83.33%  { top: 44%;   left: 34.4%; opacity: 0.55; transform: translate(-50%, -50%) scale(0.88); }
  91.67%  { top: 40%;   left: 41%;   opacity: 0.42; transform: translate(-50%, -50%) scale(0.84); }
  100%    { top: 38.5%; left: 50%;   opacity: 0.35; transform: translate(-50%, -50%) scale(0.8); }
}

/* Dot 1 — 10px, mid orbit, 35s */
.orbital__dot:nth-child(14) {
  width: 10px; height: 10px;
  animation: orbitMid 35s linear infinite;
  animation-delay: 0s;
}

/* Dot 2 — 6px, mid orbit, offset */
.orbital__dot:nth-child(15) {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.18);
  animation: orbitMid 35s linear infinite;
  animation-delay: -11.67s;
}

/* Dot 3 — 8px, mid orbit, offset */
.orbital__dot:nth-child(16) {
  width: 8px; height: 8px;
  animation: orbitMid 35s linear infinite;
  animation-delay: -23.33s;
}

/* Dot 4 — 5px, tight orbit near center, fast */
.orbital__dot:nth-child(17) {
  width: 5px; height: 5px;
  background: rgba(255, 255, 255, 0.15);
  animation: orbitTight 18s linear infinite;
  animation-delay: 0s;
}

/* Dot 5 — 7px, tight orbit, offset */
.orbital__dot:nth-child(18) {
  width: 7px; height: 7px;
  background: rgba(255, 255, 255, 0.2);
  animation: orbitTight 18s linear infinite;
  animation-delay: -9s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .hero {
    background: linear-gradient(180deg, #0f1118 20%, #1b5239 55%);
    padding-top: 150px;
    min-height: 100vh;
    padding-bottom: var(--space-xl);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
    padding: 0 var(--space-lg);
  }

  /* Planet first — takes the bulk of the space */
  .hero__visual {
    order: -1;
    min-height: 340px;
  }

  .hero__content {
    order: 1;
  }

  /* Bigger title sizes — hero text is the star */
  .hero__title {
    margin-bottom: var(--space-md);
  }

  .hero__title-brand {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__title-sub,
  .hero__title-end {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .hero__title-100 {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }

  .hero__title .highlight {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    align-self: center;
    margin-bottom: 0.4em;
  }

  .hero__bullets {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-xs);
  }

  .hero__bullets li {
    font-size: var(--font-size-sm);
  }

  .hero__made-in {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-md);
  }

  /* Compact buttons — 15% of the visual weight */
  .hero__ctas {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__ctas .btn {
    width: 100%;
    padding: var(--space-sm) var(--space-lg);
    text-align: center;
    font-size: var(--font-size-sm);
  }

  /* Bigger orbital */
  .orbital {
    max-width: 320px;
    margin: 0 auto;
  }

  .orbital__item-icon {
    width: 34px !important;
    height: 34px !important;
  }

  .orbital__item-icon svg {
    width: 15px !important;
    height: 15px !important;
  }

  .orbital__item-label {
    font-size: 8px;
  }

  .hero__visual::before {
    width: 105%;
    height: 105%;
    max-width: 370px;
    max-height: 370px;
  }

  .hero__visual::after {
    width: 125%;
    height: 125%;
    max-width: 440px;
    max-height: 440px;
  }
}

@media (max-width: 480px) {
  .hero__visual {
    min-height: 300px;
  }

  .orbital {
    max-width: 280px;
  }

  .orbital__item-label {
    display: none;
  }

  .hero__visual::before {
    max-width: 320px;
    max-height: 320px;
  }

  .hero__visual::after {
    max-width: 380px;
    max-height: 380px;
  }
}
