/* ─────────────────────────────────────────
   MOONGOLF — styles.css
   ───────────────────────────────────────── */

:root {
  --bg:          #07070f;
  --bg-2:        #0c0c1a;
  --text:        #e2e4f0;
  --text-muted:  #7a839e;
  --accent:      #9aa8c4;
  --glow:        rgba(154, 168, 196, 0.12);
  --glow-strong: rgba(154, 168, 196, 0.28);
  --border:      rgba(154, 168, 196, 0.1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:       72px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── STARS CANVAS ─── */
#stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 7, 15, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-color: var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.logo:hover { opacity: 0.7; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  padding-top: var(--nav-h);
}

.hero-moon-wrap {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  will-change: transform;
}

.moon-svg {
  width: 100%;
  height: 100%;
  animation: float 9s ease-in-out infinite;
  overflow: visible;
}

.moon-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 145%; height: 145%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(140, 165, 210, 0.1) 0%,
    rgba(100, 130, 180, 0.05) 40%,
    transparent 70%
  );
  animation: pulse-glow 7s ease-in-out infinite;
  pointer-events: none;
}

/* ─── GOLF BALL ─── */
.golfball-scene {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.golfball-svg {
  display: block;
  width: 82px;
  height: 82px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 48px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.1s forwards;
}

.hero-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-btn:hover {
  border-color: rgba(154, 168, 196, 0.45);
  box-shadow: 0 0 30px var(--glow), inset 0 0 20px var(--glow);
}

.cta-btn:hover::before { opacity: 1; }

.cta-btn--large {
  font-size: 0.82rem;
  padding: 18px 40px;
  opacity: 1;
  animation: none;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

/* ─── SECTION BASE ─── */
.section {
  position: relative;
  z-index: 1;
  padding: 160px 0;
}

/* ─── REVEAL SYSTEM ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ─── SECTION LABELS & TITLES ─── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  transition-delay: 0s;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 52px;
  transition-delay: 0.08s;
}

/* ─── ABOUT ─── */
.section-about {
  border-top: 1px solid var(--border);
}

.about-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
}

.about-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 4px rgba(154, 168, 196, 0.06), 0 0 20px rgba(154, 168, 196, 0.08);
  flex-shrink: 0;
  filter: grayscale(20%);
  transition: filter 0.4s ease, box-shadow 0.4s ease;
}

.about-avatar:hover {
  filter: grayscale(0%);
  box-shadow: 0 0 0 4px rgba(154, 168, 196, 0.1), 0 0 28px rgba(154, 168, 196, 0.15);
}

.about-name {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.about-text p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.about-text p:nth-child(2) { transition-delay: 0.1s; }
.about-text p:nth-child(3) { transition-delay: 0.2s; }

.about-text p.large {
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

/* ─── COACHING / CARDS ─── */
.section-coaching {
  background: linear-gradient(180deg, transparent 0%, rgba(12, 12, 26, 0.5) 50%, transparent 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.018);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s var(--ease),
    opacity 0.9s var(--ease),
    background 0.4s ease;
  cursor: default;
}

.card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3) { transition-delay: 0.2s; }

.card:hover {
  border-color: rgba(154, 168, 196, 0.28);
  box-shadow: 0 0 40px rgba(100, 130, 190, 0.07);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
}

.card-icon {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.6;
}

.card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text);
}

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

/* ─── NETWORK ─── */
.network-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 100px;
  align-items: center;
}

.network-visual {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(154, 168, 196, 0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  position: relative;
  z-index: 2;
}

.orbit-center span {
  display: block;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

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

.ring-1 { width: 110px; height: 110px; animation: orbit 7s linear infinite; }
.ring-2 { width: 180px; height: 180px; animation: orbit 12s linear infinite reverse; }
.ring-3 { width: 250px; height: 250px; animation: orbit 18s linear infinite; }

.orbit-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  top: -2.5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--accent), 0 0 16px var(--glow);
}

.network-text p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.4rem;
}

.network-text p:nth-child(2) {
  color: var(--text);
  transition-delay: 0.12s;
}

/* ─── BUSINESS ─── */
.section-business {
  border-top: 1px solid var(--border);
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.business-text p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.business-text p:nth-child(2) { transition-delay: 0.1s; }

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  transition-delay: 0.15s;
}

.tag {
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.tag:hover {
  border-color: rgba(154, 168, 196, 0.4);
  color: var(--text);
  box-shadow: 0 0 16px var(--glow);
}

/* ─── FOR WHOM ─── */
.section-forwhom {
  background: linear-gradient(180deg, transparent 0%, rgba(12, 12, 26, 0.35) 50%, transparent 100%);
}

.quote-block {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-size: 7rem;
  line-height: 0.4;
  color: var(--border);
  font-family: Georgia, 'Times New Roman', serif;
  display: block;
  margin-bottom: 28px;
  letter-spacing: -0.05em;
}

blockquote {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text);
}

/* ─── CONTACT ─── */
.section-contact {
  text-align: center;
  overflow: hidden;
}

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

.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.8rem;
  transition-delay: 0.15s;
}

.contact-notices {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  padding: 28px 26px 24px;
  border-radius: 4px;
  text-align: left;
  position: relative;
}

.contact-notice--red {
  background: rgba(180, 50, 50, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.22);
  box-shadow: 0 0 28px rgba(200, 60, 60, 0.1), inset 0 0 20px rgba(180, 40, 40, 0.05);
}

.contact-notice--green {
  background: rgba(40, 160, 80, 0.07);
  border: 1px solid rgba(70, 200, 100, 0.2);
  box-shadow: 0 0 28px rgba(50, 180, 80, 0.08), inset 0 0 20px rgba(40, 160, 70, 0.04);
}

.contact-notice-label {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
  white-space: nowrap;
}

.contact-notice-label--red   { color: rgba(255, 255, 255, 0.82); }
.contact-notice-label--green { color: rgba(255, 255, 255, 0.82); }

.contact-notice-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 8px;
}

.contact-notice-dot--red {
  background: rgba(220, 90, 90, 0.9);
  box-shadow: 0 0 8px rgba(220, 80, 80, 0.8), 0 0 18px rgba(200, 60, 60, 0.4);
  animation: pulse-red 2.4s ease-in-out infinite;
}

.contact-notice-dot--green {
  background: rgba(70, 210, 100, 0.9);
  box-shadow: 0 0 8px rgba(60, 200, 90, 0.8), 0 0 18px rgba(50, 180, 80, 0.4);
  animation: pulse-green 2.4s ease-in-out infinite;
}

.contact-notice p {
  font-size: 0.85rem;
  line-height: 1.72;
  margin: 0;
  padding-top: 2px;
}

.contact-notice--red p  { color: rgba(230, 180, 180, 0.85); }
.contact-notice--green p { color: rgba(170, 230, 185, 0.85); }

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 8px rgba(220, 80, 80, 0.8), 0 0 18px rgba(200, 60, 60, 0.4); opacity: 1; }
  50%       { box-shadow: 0 0 14px rgba(220, 80, 80, 1),  0 0 30px rgba(200, 60, 60, 0.6); opacity: 0.7; }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(60, 200, 90, 0.8), 0 0 18px rgba(50, 180, 80, 0.4); opacity: 1; }
  50%       { box-shadow: 0 0 14px rgba(60, 210, 90, 1),  0 0 30px rgba(50, 190, 80, 0.6); opacity: 0.7; }
}

.section-contact .cta-btn--large:hover {
  border-color: rgba(154, 168, 196, 0.2);
  box-shadow: 0 0 48px rgba(154, 168, 196, 0.14);
}

.section-contact .cta-btn--large:hover::before {
  opacity: 0;
}

.contact-moon {
  position: absolute;
  bottom: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%,
    rgba(120, 150, 200, 0.06),
    transparent 65%
  );
  border: 1px solid rgba(154, 168, 196, 0.05);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 28px;
}

.social-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.social-link:hover { color: var(--text); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(122, 131, 158, 0.35);
  letter-spacing: 0.05em;
}

/* ─── KEYFRAMES ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

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

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


@keyframes scroll-pulse {
  0%   { opacity: 1; transform: scaleY(0); transform-origin: top; }
  49%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ─── NAV LOGO IMAGE ─── */
.nav-logo-img {
  height: 24px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ─── BIG SHOT POPUP ─── */
.bigshot-popup {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 200;
  background: rgba(7, 9, 22, 0.94);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(154, 168, 196, 0.2);
  border-radius: 8px;
  padding: 36px 40px 32px;
  max-width: 320px;
  box-shadow:
    0 24px 64px rgba(0, 0, 20, 0.75),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 48px rgba(100, 130, 190, 0.07);
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.bigshot-popup.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.bigshot-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
  padding: 4px;
  transition: color 0.25s;
}
.bigshot-close:hover { color: var(--text); }

/* Chat layout */
.bigshot-chat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.bigshot-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.bigshot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border: 1px solid rgba(154, 168, 196, 0.18);
  box-shadow:
    0 0 0 3px rgba(154, 168, 196, 0.05),
    0 0 18px rgba(154, 168, 196, 0.14);
  animation: avatar-glow 3.5s ease-in-out infinite;
}

.bigshot-status {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(70, 210, 100, 0.9);
  border: 1.5px solid rgba(7, 9, 22, 0.95);
  box-shadow: 0 0 6px rgba(60, 200, 90, 0.7);
  animation: pulse-green 2.4s ease-in-out infinite;
}

.bigshot-bubble {
  flex: 1;
  background: rgba(154, 168, 196, 0.05);
  border: 1px solid rgba(154, 168, 196, 0.13);
  border-radius: 3px 14px 14px 14px;
  padding: 13px 16px 14px;
  animation: bubble-float 5s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(154, 168, 196, 0.05);
}

.bigshot-name {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
  opacity: 0.7;
}

.bigshot-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}

.bigshot-cta {
  display: block;
  text-align: center;
  padding: 11px 24px;
  border: 1px solid rgba(154, 168, 196, 0.22);
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.bigshot-cta:hover {
  border-color: rgba(154, 168, 196, 0.5);
  box-shadow: 0 0 28px rgba(154, 168, 196, 0.13);
  background: rgba(154, 168, 196, 0.04);
}

@keyframes avatar-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(154,168,196,0.05), 0 0 18px rgba(154,168,196,0.12); }
  50%       { box-shadow: 0 0 0 3px rgba(154,168,196,0.11), 0 0 30px rgba(154,168,196,0.24); }
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-3px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .network-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .network-visual {
    margin: 0 auto;
  }
  .business-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-moon-wrap {
    right: -200px;
    width: 460px;
    height: 460px;
    opacity: 0.45;
  }
}


@media (max-width: 680px) {
  .container,
  .nav-inner {
    padding: 0 24px;
  }

  .section {
    padding: 110px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 7, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0 24px;
    transform: translateY(-108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-moon-wrap {
    right: -260px;
    width: 380px;
    height: 380px;
    opacity: 0.25;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .scroll-hint {
    left: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-socials {
    gap: 20px;
  }
}
