/* ============================================================
   Vista Graphix — Homepage
   Zigzag sections: white / black / gray + brand accents
   ============================================================ */

:root {
  --ink: #0c0c10;
  --ink-2: #15151c;
  --white: #ffffff;
  --off-white: #f6f5f7;
  --gray: #e6e4e9;
  --gray-deep: #d8d5dc;
  --text-dark: #16141c;
  --text-light: #f4f1f5;
  --muted-dark: #5c5766;
  --muted-light: #9a94a3;
  --line-dark: rgba(22, 20, 28, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --magenta: #ff2d7b;
  --coral: #ff5c4d;
  --amber: #ffb84d;
  --gradient: linear-gradient(135deg, #ff2d7b 0%, #ff5c4d 48%, #ffb84d 100%);
  --radius: 1.25rem;
  --nav-h: 6.75rem;
  --container: 1200px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Great Vibes", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --zig: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container-xl {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

/* ---- Section themes ---- */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  z-index: 1;
}

.theme-dark {
  --sec-bg: var(--ink);
  --sec-text: var(--text-light);
  --sec-muted: var(--muted-light);
  --sec-line: var(--line-light);
  --sec-card: rgba(255, 255, 255, 0.04);
  --sec-card-border: var(--line-light);
  --sec-ghost-border: var(--line-light);
  background: var(--sec-bg);
  color: var(--sec-text);
}

.theme-light {
  --sec-bg: var(--white);
  --sec-text: var(--text-dark);
  --sec-muted: var(--muted-dark);
  --sec-line: var(--line-dark);
  --sec-card: #faf9fb;
  --sec-card-border: var(--line-dark);
  --sec-ghost-border: rgba(22, 20, 28, 0.16);
  background: var(--sec-bg);
  color: var(--sec-text);
}

.theme-gray {
  --sec-bg: var(--gray);
  --sec-text: var(--text-dark);
  --sec-muted: var(--muted-dark);
  --sec-line: rgba(22, 20, 28, 0.12);
  --sec-card: rgba(255, 255, 255, 0.55);
  --sec-card-border: rgba(22, 20, 28, 0.1);
  --sec-ghost-border: rgba(22, 20, 28, 0.16);
  background: var(--sec-bg);
  color: var(--sec-text);
}

/* Zigzag edges between sections */
.zigzag-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--zig) * -1 + 1px);
  height: var(--zig);
  z-index: 5;
  pointer-events: none;
  background: inherit;
  clip-path: polygon(
    0 0,
    8% 100%,
    16% 0,
    24% 100%,
    32% 0,
    40% 100%,
    48% 0,
    56% 100%,
    64% 0,
    72% 100%,
    80% 0,
    88% 100%,
    100% 0,
    100% 0,
    0 0
  );
}

.zigzag-top {
  padding-top: calc(clamp(4.5rem, 10vw, 7rem) + var(--zig));
}

@media (max-width: 767px) {
  :root { --zig: 36px; }
}

/* ---- Typography ---- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--sec-text);
}

.section-lead {
  color: var(--sec-muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

/* ---- Buttons ---- */
.btn-vista {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn-vista:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 45, 123, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--sec-ghost-border, var(--line-dark));
  background: transparent;
  color: var(--sec-text, var(--text-dark));
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.btn-ghost:hover {
  border-color: rgba(255, 45, 123, 0.55);
  background: rgba(255, 45, 123, 0.06);
  color: var(--sec-text, var(--text-dark));
  transform: translateY(-2px);
}

/* ---- Navbar ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 8px 30px rgba(16, 12, 24, 0.06);
}

.site-nav.scrolled .nav-links a {
  color: var(--muted-dark);
}

.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active {
  color: var(--text-dark);
  background: rgba(22, 20, 28, 0.04);
}

.site-nav.scrolled .nav-toggle {
  color: var(--text-dark);
  border-color: var(--line-dark);
}

.nav-inner {
  width: min(var(--container), 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 96px;
  width: auto;
}

@media (max-width: 991px) {
  .brand-logo img {
    height: 80px;
  }
}

@media (max-width: 575px) {
  .brand-logo img {
    height: 68px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 0.5rem;
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  padding: 0.55rem 1.1rem !important;
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.65rem;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 1099px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(12, 12, 16, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }

  .site-nav.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--line-dark);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a { padding: 0.85rem 1rem; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
}

/* ---- Hero (black) ---- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 2.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 85% 35%, rgba(255, 45, 123, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 184, 77, 0.12), transparent 50%),
    var(--ink);
  color: var(--text-light);
  --sec-text: var(--text-light);
  --sec-muted: var(--muted-light);
  --sec-ghost-border: var(--line-light);
}

/* Stars + mini planets — hero / header area only */
.hero-space {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-space .star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
  animation: twinkle 3.2s ease-in-out infinite;
}

.hero-space .star.s1 { top: 12%; left: 8%; animation-delay: 0s; }
.hero-space .star.s2 { top: 18%; left: 22%; width: 2px; height: 2px; animation-delay: 0.4s; }
.hero-space .star.s3 { top: 8%; left: 48%; animation-delay: 0.8s; }
.hero-space .star.s4 { top: 22%; left: 68%; width: 2px; height: 2px; animation-delay: 1.1s; }
.hero-space .star.s5 { top: 14%; left: 88%; animation-delay: 0.2s; }
.hero-space .star.s6 { top: 38%; left: 4%; width: 2px; height: 2px; animation-delay: 1.5s; }
.hero-space .star.s7 { top: 48%; left: 16%; animation-delay: 0.6s; }
.hero-space .star.s8 { top: 62%; left: 6%; width: 2px; height: 2px; animation-delay: 1.8s; }
.hero-space .star.s9 { top: 28%; left: 38%; width: 2px; height: 2px; animation-delay: 1.3s; }
.hero-space .star.s10 { top: 10%; left: 74%; animation-delay: 0.9s; }
.hero-space .star.s11 { top: 55%; left: 28%; width: 2px; height: 2px; animation-delay: 2s; }
.hero-space .star.s12 { top: 70%; left: 12%; animation-delay: 0.3s; }

.hero-space .mini-planet {
  position: absolute;
  border-radius: 50%;
  animation: floatPlanet 8s ease-in-out infinite;
}

.hero-space .mini-planet.p1 {
  top: 16%;
  left: 58%;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #ffd6a5, #ff5c4d 55%, #a01840);
  box-shadow: 0 0 14px rgba(255, 92, 77, 0.45);
  animation-delay: 0s;
}

.hero-space .mini-planet.p2 {
  top: 42%;
  left: 10%;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 35% 30%, #fff1c9, #ffb84d 50%, #c45a18);
  box-shadow: 0 0 18px rgba(255, 184, 77, 0.4);
  animation-delay: 1.4s;
  animation-duration: 10s;
}

.hero-space .mini-planet.p3 {
  top: 68%;
  left: 34%;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #ffb0d4, #ff2d7b 60%, #6b1038);
  box-shadow: 0 0 12px rgba(255, 45, 123, 0.5);
  animation-delay: 2.2s;
  animation-duration: 7s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes floatPlanet {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(6px); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--container), 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-brand {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 0.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-brand span.block {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 4.75rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-style: italic;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
  margin-top: -0.15em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted-light);
  margin: 1.25rem 0 1.75rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}

.hero-meta span {
  font-size: 0.82rem;
  color: var(--muted-light);
}

.hero-stage,
.stage-3d {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
}

.hero-stage {
  max-height: min(560px, 70vh);
}

.stage-3d {
  max-width: 420px;
  margin-inline: auto;
  max-height: 420px;
}

.stage-3d canvas,
.page-header-stage canvas,
#hero-canvas,
#mid-canvas,
#page-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-orb,
.stage-orb {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 45, 123, 0.28), rgba(255, 184, 77, 0.16));
  filter: blur(40px);
  z-index: -1;
  animation: orbPulse 6s ease-in-out infinite;
}

.stage-orb.soft {
  background: linear-gradient(135deg, rgba(255, 45, 123, 0.2), rgba(255, 184, 77, 0.14));
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-float-label,
.stage-label {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sec-muted, var(--muted-light));
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-headline { margin-inline: auto; }
  .hero-actions,
  .hero-meta { justify-content: center; }
  .hero-stage {
    order: -1;
    max-height: 320px;
    margin-inline: auto;
  }
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Marquee (gray) ---- */
.marquee-wrap {
  position: relative;
  background: var(--gray);
  overflow: hidden;
  padding: 0.9rem 0;
  z-index: 2;
  border-block: 1px solid rgba(22, 20, 28, 0.08);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2.5rem;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-dark);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 2.5rem;
  color: var(--magenta);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- About (white) ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(16, 12, 24, 0.12);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.about-media:hover img {
  transform: scale(1.08);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 12, 16, 0.5));
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-dark);
  border-radius: 1rem;
  color: var(--text-dark);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.about-badge span {
  font-size: 0.85rem;
  color: var(--muted-dark);
}

.about-copy p {
  color: var(--sec-muted);
  margin-bottom: 1.1rem;
}

.about-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.about-points li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--sec-text);
  font-weight: 500;
}

.about-points li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gradient);
}

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media {
    aspect-ratio: 16 / 11;
    max-height: 420px;
  }
}

/* ---- Services (black) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 3rem;
}

.service-item {
  padding: 1.6rem 1.45rem;
  border: 1px solid var(--sec-card-border);
  border-radius: var(--radius);
  background: var(--sec-card);
  transition: border-color 0.35s, transform 0.35s var(--ease), background 0.35s;
  height: 100%;
}

.service-item:hover {
  border-color: rgba(255, 45, 123, 0.45);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 1.1rem;
}

.theme-light .service-num,
.theme-gray .service-num {
  color: var(--magenta);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--sec-text);
}

.service-item p {
  color: var(--sec-muted);
  font-size: 0.92rem;
  margin: 0;
}

@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---- Mid 3D band (gray) ---- */
.mid-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mid-3d-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.mid-3d-copy p {
  color: var(--sec-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

@media (max-width: 991px) {
  .mid-3d {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mid-3d-copy p { margin-inline: auto; }
  .stage-3d { max-height: 300px; }
}

/* ---- Products (white) ---- */
.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.product-panel {
  position: relative;
  min-height: 300px;
  padding: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-dark);
  color: #fff;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--panel-bg);
  z-index: 0;
}

.product-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(12, 12, 16, 0.82));
  z-index: 1;
}

.product-panel > * {
  position: relative;
  z-index: 2;
}

.product-panel:nth-child(1) {
  --panel-bg: linear-gradient(145deg, #ff2d7b, #3a1028 55%, #1a0a14);
}

.product-panel:nth-child(2) {
  --panel-bg: linear-gradient(145deg, #ff5c4d, #3a2018 55%, #1a1010);
}

.product-panel:nth-child(3) {
  --panel-bg: linear-gradient(145deg, #ffb84d, #3a2a14 55%, #1a1410);
}

.product-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.product-link {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--amber);
}

.product-link:hover { color: #fff; }

@media (max-width: 991px) {
  .products-row { grid-template-columns: 1fr; }
}

/* ---- Portfolio (black) ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.folio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sec-card-border);
  min-height: 240px;
  background: var(--ink-2);
}

.folio-item:nth-child(1) { grid-column: span 7; min-height: 340px; }
.folio-item:nth-child(2) { grid-column: span 5; min-height: 340px; }
.folio-item:nth-child(3),
.folio-item:nth-child(4),
.folio-item:nth-child(5) { grid-column: span 4; }

.folio-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 45, 123, 0.18), rgba(255, 184, 77, 0.1)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.03) 24px
    );
}

.folio-placeholder span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.35);
}

.folio-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(7, 7, 10, 0.92));
  color: #fff;
}

.folio-meta small {
  display: block;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.folio-meta strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .folio-item:nth-child(n) {
    grid-column: span 12;
    min-height: 240px;
  }
}

/* ---- Blog (gray) ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.blog-card {
  border: 1px solid var(--sec-card-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sec-card);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 123, 0.4);
}

.blog-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255, 45, 123, 0.2), rgba(255, 184, 77, 0.18));
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--sec-card-border);
}

.blog-thumb span {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(22, 20, 28, 0.28);
}

.blog-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.blog-body time {
  font-size: 0.78rem;
  color: var(--sec-muted);
  letter-spacing: 0.04em;
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.5rem 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--sec-text);
}

.blog-body p {
  color: var(--sec-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---- Reviews (white) ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 3rem;
}

.review-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--sec-card-border);
  background: var(--sec-card);
}

.stars {
  color: #e6a428;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.review-card p {
  color: var(--sec-text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #12040a;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--sec-muted);
}

@media (max-width: 991px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---- Contact + Quote form (gray) ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2.5rem;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1.15rem;
}

.info-block {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--sec-card-border);
  border-radius: var(--radius);
  background: var(--sec-card);
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.info-block p,
.info-block a {
  color: var(--sec-muted);
  font-size: 0.92rem;
  margin: 0;
}

.info-block a:hover { color: var(--magenta); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.social-row a {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--sec-card-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sec-muted);
}

.social-row a:hover {
  border-color: var(--magenta);
  color: var(--sec-text);
}

.quote-form {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid var(--sec-card-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(16, 12, 24, 0.06);
}

.quote-form h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--sec-text);
}

.quote-form > p {
  color: var(--sec-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sec-muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sec-card-border);
  background: #fff;
  color: var(--sec-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 45, 123, 0.55);
  background: #fff;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #fff;
  color: var(--text-dark);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--sec-muted);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 45, 123, 0.1);
  border: 1px solid rgba(255, 45, 123, 0.3);
  color: var(--magenta);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-success.show {
  display: block;
}

@media (max-width: 991px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Footer (dark) ---- */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: #07070a;
  color: var(--text-light);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-brand img {
  height: 88px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-light);
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--muted-light);
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--magenta); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.82rem;
  color: var(--muted-light);
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Cursor glow ---- */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 123, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
  mix-blend-mode: multiply;
}

@media (pointer: fine) {
  .cursor-glow.active { opacity: 1; }
}

/* ============================================================
   Inner pages: topbar + half header + content
   ============================================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h, 2.5rem);
  background: #07070a;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
}

.topbar-inner {
  width: min(var(--container), 92vw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.topbar a {
  color: var(--muted-light);
  font-weight: 500;
}

.topbar a:hover {
  color: var(--magenta);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
}

body.has-topbar {
  --topbar-h: 2.5rem;
}

body.has-topbar .site-nav {
  top: var(--topbar-h);
}

body.has-topbar .nav-links {
  top: calc(var(--topbar-h) + var(--nav-h));
}

@media (max-width: 1099px) {
  body.has-topbar .nav-links {
    top: calc(var(--topbar-h) + var(--nav-h));
    max-height: calc(100dvh - var(--topbar-h) - var(--nav-h));
  }
}

/* Half-height page header */
.page-header {
  position: relative;
  min-height: 48vh;
  min-height: 48dvh;
  display: grid;
  align-items: center;
  padding: calc(var(--topbar-h, 0px) + var(--nav-h) + 2rem) 0 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(255, 45, 123, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 70%, rgba(255, 184, 77, 0.1), transparent 50%),
    var(--ink);
  color: var(--text-light);
}

.page-header-space {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-header-space .star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  animation: twinkle 3s ease-in-out infinite;
}

.page-header-grid {
  position: relative;
  z-index: 1;
  width: min(var(--container), 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.page-header-copy .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted-light);
  margin-bottom: 1rem;
}

.page-header-copy .breadcrumb a:hover {
  color: var(--magenta);
}

.page-header-copy .breadcrumb span {
  opacity: 0.5;
}

.page-header-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: #fff;
}

.page-header-copy h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header-copy p {
  color: var(--muted-light);
  font-size: 1.05rem;
  max-width: 32rem;
  margin: 0;
}

.page-header-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 340px;
  max-height: 340px;
  margin-inline: auto;
}

.page-header-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.page-content {
  position: relative;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-story-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(16, 12, 24, 0.12);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-copy p {
  color: var(--sec-muted);
  margin-bottom: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--sec-card-border);
  background: var(--sec-card);
}

.value-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  margin: 0;
  color: var(--sec-muted);
  font-size: 0.92rem;
}

.offices-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.office-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--sec-card-border);
  background: var(--sec-card);
}

.office-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.office-card p {
  margin: 0;
  color: var(--sec-muted);
  font-size: 0.95rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.service-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.5rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--sec-card-border);
  background: var(--sec-card);
  transition: border-color 0.3s, transform 0.35s var(--ease);
  height: 100%;
}

.service-list-item:hover {
  border-color: rgba(255, 45, 123, 0.4);
  transform: translateY(-3px);
}

.service-list-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--magenta);
  padding-top: 0.15rem;
}

.service-list-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--sec-text);
}

.service-list-item p {
  margin: 0;
  color: var(--sec-muted);
  font-size: 0.92rem;
}

.page-cta {
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .page-header {
    min-height: auto;
    padding: calc(var(--topbar-h, 0px) + var(--nav-h) + 1.5rem) 0 2.25rem;
  }

  .page-header-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-header-copy .breadcrumb {
    justify-content: center;
  }

  .page-header-copy p {
    margin-inline: auto;
  }

  .page-header-stage {
    order: -1;
    max-width: 260px;
    max-height: 260px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .offices-row {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  :root {
    --topbar-h: auto;
  }

  body.has-topbar {
    --topbar-h: 3.5rem;
  }

  .topbar {
    height: auto;
    min-height: 2.5rem;
    padding: 0.45rem 0;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
  }

  .topbar-left span:nth-child(2) {
    display: none;
  }

  .page-header-stage {
    max-width: 220px;
    max-height: 220px;
  }
}

/* ============================================================
   Responsive: mobile → tablet → laptop → large (to ~27")
   ============================================================ */

/* Large desktop / 27" monitors */
@media (min-width: 1400px) {
  :root {
    --container: 1320px;
    --nav-h: 7rem;
  }

  .brand-logo img { height: 100px; }
  .footer-brand img { height: 92px; }

  .hero-stage { max-height: min(620px, 68vh); }
  .section-title { font-size: clamp(2.4rem, 2.6vw, 3.5rem); }
}

@media (min-width: 1800px) {
  :root {
    --container: 1480px;
  }

  .hero-brand { font-size: clamp(3.5rem, 4vw, 6rem); }
  .hero-brand span.block { font-size: clamp(3rem, 3.6vw, 5.25rem); }
  .hero-stage { max-height: min(680px, 65vh); }
  .stage-3d { max-width: 480px; max-height: 480px; }
}

/* Small laptop — keep desktop menu but tighten */
@media (min-width: 1100px) and (max-width: 1280px) {
  :root { --nav-h: 5.75rem; }

  .brand-logo img { height: 72px; }

  .nav-links { gap: 0; }
  .nav-links a {
    padding: 0.4rem 0.55rem;
    font-size: 0.82rem;
  }
  .nav-cta { padding: 0.45rem 0.9rem !important; }
}

/* Tablet + below — stacked layouts */
@media (max-width: 991px) {
  :root {
    --nav-h: 5.5rem;
    --zig: 40px;
  }

  .brand-logo img { height: 72px; }
  .footer-brand img { height: 72px; }

  .section {
    padding: clamp(3.25rem, 8vw, 5rem) 0;
  }

  .zigzag-top {
    padding-top: calc(clamp(3.25rem, 8vw, 5rem) + var(--zig));
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 1.25rem) 0 2rem;
  }

  .hero-stage {
    width: min(340px, 78vw);
    max-height: 340px;
  }

  .hero-float-label,
  .stage-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .hero-meta { gap: 1.25rem 1.75rem; }
  .hero-meta strong { font-size: 1.35rem; }

  .hero-actions .btn-vista,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-media {
    aspect-ratio: 16 / 10;
    max-height: 380px;
  }

  .mid-3d .stage-3d {
    width: min(300px, 70vw);
    max-height: 300px;
  }

  .folio-item:nth-child(n) {
    grid-column: span 6;
    min-height: 220px;
  }

  .products-row { grid-template-columns: 1fr; }

  .quote-form { padding: 1.35rem; }
}

/* Phablet */
@media (max-width: 767px) {
  :root {
    --nav-h: 5rem;
    --zig: 28px;
  }

  .brand-logo img { height: 64px; }

  .container-xl,
  .nav-inner,
  .hero-grid {
    width: min(var(--container), 90vw);
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .section-lead { font-size: 0.98rem; }

  .services-grid { grid-template-columns: 1fr; }

  .folio-item:nth-child(n) {
    grid-column: span 12;
    min-height: 210px;
  }

  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-space .mini-planet.p2 { display: none; }
  .hero-space .star.s8,
  .hero-space .star.s11,
  .hero-space .star.s12 { display: none; }

  .marquee-wrap { padding: 0.75rem 0; }
  .marquee-track span { font-size: 0.8rem; }
}

/* Mobile */
@media (max-width: 575px) {
  :root { --nav-h: 4.5rem; }

  .brand-logo img { height: 56px; }
  .footer-brand img { height: 60px; }

  .btn-vista,
  .btn-ghost {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-brand { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .hero-brand span.block { font-size: clamp(2rem, 11vw, 2.75rem); }
  .hero-headline {
    font-size: 1.05rem;
    margin: 1rem 0 1.35rem;
  }

  .hero-stage {
    width: min(280px, 82vw);
    max-height: 280px;
  }

  .hero-meta {
    gap: 1rem 1.25rem;
    justify-content: space-around;
  }

  .hero-meta strong { font-size: 1.2rem; }
  .hero-meta span { font-size: 0.75rem; }

  .about-badge {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.85rem 0.95rem;
  }

  .service-item { padding: 1.25rem 1.15rem; }
  .service-item h3 { font-size: 1.05rem; }

  .product-panel { min-height: 260px; padding: 1.35rem; }

  .contact-layout { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cursor-glow { display: none; }
}

/* Very small phones */
@media (max-width: 379px) {
  .brand-logo img { height: 48px; }
  :root { --nav-h: 4.15rem; }

  .hero-actions .btn-vista,
  .hero-actions .btn-ghost {
    max-width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
}

/* Short landscape phones */
@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 0.75rem) 0 1.25rem;
  }

  .hero-stage {
    max-height: 200px;
    width: min(220px, 40vw);
  }

  .hero-space .mini-planet { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .hero-space .star,
  .hero-space .mini-planet,
  .hero-orb,
  .stage-orb {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html { scroll-behavior: auto; }
}
