/* Orbyt-inspired black theme CV */
:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --white: #ffffff;
  --gray: #888888;
  --gray-dim: #444444;
  --accent: #ffffff;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --container: min(1400px, 92vw);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.intro-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Custom cursor */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 99999;
  width: 12px; height: 12px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}
.custom-cursor.is-large { width: 48px; height: 48px; }

/* ── INTRO ── */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #050505, #000);
  transition: opacity 0.8s ease, visibility 0.8s;
}
.intro-screen.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-progress {
  position: relative;
  z-index: 10;
  width: 140px; height: 140px;
}
.intro-progress svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.intro-progress-base { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 2; }
.intro-progress-line {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 408;
  stroke-dashoffset: 408;
  transition: stroke-dashoffset 0.1s linear;
}
.intro-progress-dot {
  position: absolute;
  top: 4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #fff;
  transform: translateX(-50%);
  animation: introDotSpin 3s linear infinite;
  transform-origin: 50% 66px;
}
@keyframes introDotSpin { to { transform: translateX(-50%) rotate(360deg); } }
.intro-progress-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.intro-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.intro-video-wrap-b { z-index: 2; opacity: 0; transition: opacity 0.6s; }
.intro-video-wrap-b.is-visible { opacity: 1; }
.intro-video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.intro-gra {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  mix-blend-mode: lighten;
  opacity: 0.6;
}
.intro-dim {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 3;
}
.orbit-scene {
  position: absolute; inset: 0;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
}
.orbit-svg { width: min(90vh, 90vw); height: auto; opacity: 0.35; }
.orbit-path { fill: none; stroke: rgba(255,255,255,0.25); stroke-width: 1; }

.intro-skip {
  position: absolute;
  bottom: 48px;
  z-index: 20;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.intro-skip:hover { color: #fff; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  width: 100%;
  height: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.header.is-visible { opacity: 1; pointer-events: auto; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 24px; height: 1.5px;
  background: #fff;
  transition: transform 0.25s;
}

/* Hamburger */
.ham-menu {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.ham-menu.is-open { pointer-events: auto; opacity: 1; }
.ham-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
}
.ham-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  padding: 32px;
  background: var(--black-soft);
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.ham-menu.is-open .ham-panel { transform: translateX(0); }
.ham-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.ham-logo { font-family: var(--font-display); font-weight: 600; }
.ham-close { font-size: 28px; line-height: 1; opacity: 0.6; }
.ham-nav { list-style: none; margin: 0; padding: 0; }
.ham-nav li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.ham-nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.ham-nav a span { color: var(--gray-dim); font-size: 14px; }
.ham-nav a:hover { opacity: 0.6; }

/* ── SHARED ── */
.section-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}
h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ── HERO / PHILOSOPHY ── */
.section-hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
}
#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero-stage {
  position: relative;
  height: 100vh;
  z-index: 2;
}
.hero-center {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 2;
  width: min(300px, 65vw);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
.hero-portrait-wrap {
  width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 80px rgba(255,255,255,0.06);
}
.hero-portrait-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 15%;
}

.hero-scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-scroll-hint.is-visible { opacity: 1; }
.hero-scroll-hint.is-hidden { opacity: 0; }

.hero-text {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 3;
  width: min(920px, var(--container));
  padding: 0 4vw;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.hero-text-1 { /* overlay */ }
.hero-lede {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-actions .btn-primary { background: #fff; color: #000; }
.hero-actions .btn-ghost { border: 1px solid rgba(255,255,255,0.25); }
.hero-card {
  display: inline-block;
  margin-top: 20px;
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  text-align: left;
}
.hero-card-label {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
.hero-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--gray);
}
.hero-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.hero-sub {
  margin: 0;
  color: var(--gray);
  font-size: 16px;
}
.hero-line {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}


/* ── VIDEO SECTION ── */
.section-video {
  position: relative;
  min-height: 200vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20vh 0;
}
.video-section-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}
.color-line-bg {
  position: absolute;
  top: 50%; left: 50%;
  width: 150%;
  transform: translate(-50%, -50%);
  animation: spinSlow 60s linear infinite reverse;
}
@keyframes spinSlow { to { transform: translate(-50%, -50%) rotate(360deg); } }
.video-circle-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: var(--container);
}
.video-circle {
  width: min(520px, 85vw);
  height: min(520px, 85vw);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 120px rgba(255,255,255,0.04);
}
.top-video { width: 100%; height: 100%; object-fit: cover; }
.video-copy { text-align: center; max-width: 640px; }
.video-line-1, .video-line-2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
}
.video-desc {
  margin: 24px 0 32px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}
.talk-btn {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}
.talk-btn:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* ── PLANETS ── */
.section-planets {
  position: relative;
  min-height: 300vh;
  background: var(--black);
  padding: 10vh 0;
}
.planet-intro, .planet-outro {
  position: relative;
  z-index: 5;
  width: var(--container);
  margin: 0 auto;
  padding: 10vh 0;
  text-align: center;
}
.planet-lead, .planet-outro p {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
}
.planet-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.planet-main {
  position: relative;
  width: min(600px, 80vw);
  aspect-ratio: 1;
}
.planet-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.planet-img-light { mix-blend-mode: screen; opacity: 0.8; }
.planet-img-dark { mix-blend-mode: multiply; opacity: 0.6; }
.planet-float {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}
.planet-float-2 {
  width: min(200px, 30vw);
  top: 15%; right: 10%;
  animation: floatPlanet 8s ease-in-out infinite;
}
.planet-float-3 {
  width: min(160px, 24vw);
  bottom: 20%; left: 8%;
  animation: floatPlanet 10s ease-in-out infinite reverse;
}
@keyframes floatPlanet {
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ── SYSTEM ── */
.section-system {
  position: relative;
  min-height: 100vh;
  padding: 15vh 0;
  background: var(--black-soft);
}
.system-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}
.system-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.65;
}
.system-slider {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}
.system-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.system-track::-webkit-scrollbar { display: none; }
.system-slide {
  flex: 0 0 min(480px, 85vw);
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: var(--black-card);
}
.system-slide-visual {
  height: 240px;
  background: var(--black);
}
.system-vis-1 { background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 60%), #0a0a0a; }
.system-vis-2 { background: radial-gradient(circle at 50% 30%, rgba(200,200,255,0.06), transparent 60%), #0a0a0a; }
.system-vis-3 { background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.05), transparent 60%), #0a0a0a; }
.system-vis-4 { background: radial-gradient(circle at 50% 30%, rgba(180,180,255,0.07), transparent 60%), #0a0a0a; }
.system-slide-copy { padding: 28px 32px 36px; }
.system-slide-en {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.system-slide-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}
.system-slide-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}
.system-slide-copy p.skill-tags-inline {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}
.exp-intro, .testimonials-desc {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--gray);
  line-height: 1.65;
}
.mv-panel .mv-link-secondary {
  display: inline-block;
  margin-left: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
}
.system-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.system-nav button {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 18px;
  transition: border-color 0.2s;
}
.system-nav button:hover { border-color: #fff; }

/* ── MULTIVERSE ── */
.section-multiverse {
  padding: 15vh 0;
  background: var(--black);
}
.multiverse-header {
  width: var(--container);
  margin: 0 auto 48px;
  text-align: center;
}
.multiverse-desc { color: var(--gray); max-width: 560px; margin: 0 auto; }
.multiverse-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mv-tab {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.mv-tab.active, .mv-tab:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.multiverse-panels {
  width: var(--container);
  margin: 0 auto;
  min-height: 280px;
}
.mv-panel {
  display: none;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: var(--black-card);
}
.mv-panel.active { display: block; }
.mv-tag {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.mv-panel h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}
.mv-panel p {
  margin: 0 0 20px;
  color: var(--gray);
  line-height: 1.65;
}
.mv-panel a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
}

/* ── EXPERIENCE ── */
.section-experience {
  padding: 15vh 0;
  background: var(--black-soft);
}
.exp-header {
  width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}
.exp-list {
  width: var(--container);
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.exp-item {
  display: flex;
  gap: 32px;
  padding: 36px 40px;
  background: var(--black-soft);
  transition: background 0.2s;
}
.exp-item:hover { background: var(--black-card); }
.exp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gray-dim);
  line-height: 1;
  flex-shrink: 0;
}
.exp-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.exp-role {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--gray);
}
.exp-item ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.65;
}
.exp-item ul li + li { margin-top: 8px; }
.exp-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: var(--container);
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
}
.stat {
  padding: 40px 24px;
  text-align: center;
  background: var(--black-soft);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── EDUCATION ── */
.section-edu {
  padding: 12vh 0;
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.edu-card {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: var(--black-card);
  text-align: left;
}
.edu-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.5rem; }
.edu-card > p { margin: 0 0 16px; color: var(--gray); }
.edu-card ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,0.7); line-height: 1.8; }

/* ── TESTIMONIALS ── */
.section-testimonials {
  padding: 12vh 0;
  background: var(--black-soft);
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: var(--container);
  margin: 48px auto 0;
}
.testimonial-grid blockquote {
  margin: 0;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: var(--black);
  text-align: left;
}
.testimonial-grid p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-grid footer strong { display: block; font-size: 14px; }
.testimonial-grid footer { color: var(--gray); font-size: 12px; }

/* ── CONTACT ── */
.section-contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15vh 0;
  overflow: hidden;
}
.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: var(--container);
}
.contact-inner p:not(.section-label) { color: var(--gray); max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary { background: #fff; color: #000; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.25); }
.btn-primary:hover, .btn-ghost:hover { transform: translateY(-2px); opacity: 0.9; }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.contact-links a:hover { color: #fff; }
.footer-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
}
.footer-video { width: 100%; height: 100%; object-fit: cover; }

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 24px var(--container);
  margin: 0 auto;
  max-width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--gray-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .custom-cursor { display: none; }
  .hero-stage { height: 100vh; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .exp-item { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .ham-panel { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
