/* ============================================================
   BrandCoreDigital — BrandExel-Inspired Design System
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* PRIMARY — section backgrounds (rgb 12,27,50 / 224,230,242 / 245,243,246) */
  --color-navy-deep: #0C1B2E;
  --color-cream:     #F3F3F5;
  --color-blue-pale: #DCE4EE;

  /* SECONDARY — accents and contrast */
  --color-navy-mid:  #0C1B2E;
  --color-charcoal:  #0C1B2E;

  /* DERIVED text */
  --color-text-on-dark:  #F3F3F5;
  --color-text-on-light: #0C1B2E;
  --color-text-muted-dark:  rgba(243, 243, 245, 0.6);
  --color-text-muted-light: rgba(12, 27, 46, 0.6);

  /* BORDERS */
  --color-border-on-dark:  rgba(243, 243, 245, 0.12);
  --color-border-on-light: rgba(12, 27, 46, 0.12);

  /* Legacy token aliases — re-pointed so every existing rule cascades */
  --dark:       #0C1B2E;
  --dark-2:     #0C1B2E;
  --lavender:   #F3F3F5;
  --lavender-2: #DCE4EE;
  --white:      #F3F3F5;
  --muted:      rgba(243, 243, 245, 0.6);
  /* Accent token (formerly gold) — defaults to pale blue for dark-section accents.
     Light sections override it to mid-navy via the context rule below. */
  --gold:       #DCE4EE;
  --gold-dim:   rgba(12, 27, 46, 0.6);
  --blue:       #0C1B2E;
  --border-d:   rgba(243, 243, 245, 0.12);
  --border-l:   rgba(12, 27, 46, 0.12);

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-serif:   'Poppins', system-ui, sans-serif; /* Playfair removed — fall back to Poppins */
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;
}

/* ============================================================
   ALTERNATING SECTION BACKGROUND LOOP
   Order: hero → svc-showcase → intro → stats → about → work
        → services → whatwedo → accordion → cta → contact → footer
   Pattern: navy(1) → pale-blue(2) → cream(3) → repeat
   ============================================================ */

/* --- GROUP 1: NAVY (#0C1B2E) — text in cream ---
   hero, svc-showcase, stats, services(#services), whatwedo,
   accordion, cta, contact, footer */
#hero,
#svc-showcase,
#stats,
#services,
.whatwedo-section,
.accordion-section,
.cta-section,
#contact,
.footer {
  background: #0C1B2E;
  color: #F3F3F5;
  --white:    #F3F3F5;
  --muted:    rgba(243, 243, 245, 0.6);
  --gold:     #DCE4EE;
  --gold-dim: rgba(220, 228, 238, 0.6);
  --border-d: rgba(243, 243, 245, 0.12);
}

/* --- GROUP 2: CREAM (#F3F3F5) — text in navy ---
   intro, about */
#intro,
#about {
  background: #F3F3F5;
  color: #0C1B2E;
  --white:    #0C1B2E;
  --muted:    rgba(12, 27, 46, 0.4);
  --gold:     #0C1B2E;
  --gold-dim: rgba(12, 27, 46, 0.6);
  --border-d: rgba(12, 27, 46, 0.12);
}

/* --- GROUP 3: PALE BLUE (#DCE4EE) — text in navy ---
   selected works */
#work {
  background: #DCE4EE;
  color: #0C1B2E;
  --white:    #0C1B2E;
  --muted:    rgba(12, 27, 46, 0.5);
  --gold:     #0C1B2E;
  --gold-dim: rgba(12, 27, 46, 0.6);
  --border-d: rgba(12, 27, 46, 0.12);
}

/* Stats cards — pale-blue tiles on navy section */
#stats .stat-card {
  background: #DCE4EE;
  color: #0C1B2E;
}
#stats .stat-card .stat-number { color: #0C1B2E !important; }
#stats .stat-card .stat-label  { color: rgba(12, 27, 46, 0.6) !important; }

/* ── Global headline override: Poppins for display text ── */
h1, h2, h3,
.pl-logo, .hero-word, .scs-title, .scs-sub, .svc-title, .svc-stat-big,
.cta-heading, .footer-logo-big, .about-heading, .intro-text,
.contact-heading, .wwd-heading, .acc-name, .stat-number,
.gs-num {
  font-family: var(--font-display);
  font-weight: 800;
}
.hero-word, .footer-logo-big, .pl-logo { font-weight: 900; }

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip; /* clip is stronger than hidden — no scroll context created */
}
/* Lenis adds these classes — disable native smooth-scroll so Lenis owns it */
html.lenis, html.lenis body { height: auto; }
html.lenis-smooth { scroll-behavior: auto !important; }
html.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis-stopped { overflow: clip; }
html.lenis-scrolling iframe { pointer-events: none; }

/* Contact-form submit-button error shake */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  50%      { transform: translateX(6px);  }
  75%      { transform: translateX(-4px); }
}

/* GPU compositor hints for heavy scroll-tied elements */
.hero-card, .work-row, .svc-panel, .stat-card,
.scs-photo, .scs-video, .marquee-inner-outline {
  will-change: transform;
  transform: translateZ(0);
}
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--white);
  overflow-x: clip;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: none; }
img { max-width: 100%; }
::selection { background: rgba(220, 228, 238,0.25); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Section colors ── */
.section-dark  { background: var(--dark);     color: var(--white); }
.section-light { background: var(--lavender); color: var(--dark);  }


/* ── Shared typography ── */
.section-overline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.gold-text    { color: var(--gold); }
.gold-italic  {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  color: var(--gold);
}
/* Glow on dark sections to make the pale-blue accent pop against navy */
.section-dark .gold-italic,
.hero-section .gold-italic,
#svc-showcase .gold-italic,
.services-detailed .gold-italic,
.accordion-section .gold-italic,
.contact-section .gold-italic,
.footer .gold-italic {
  text-shadow: 0 0 30px rgba(220, 228, 238, 0.3);
}

/* ── Reveal animation base ── */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pl-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pl-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(243, 243, 245,0.06);
}
.pl-circle.c1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.pl-circle.c2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.pl-circle.c3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(220, 228, 238,0.08); }
.pl-content {
  text-align: center;
  z-index: 1;
}
.pl-logo {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
  /* letter spans need overflow clip */
}
/* Individual letter wrappers for splash animation */
.pl-lw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.pl-li {
  display: inline-block;
}
.pl-tagline {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1.2vw, 0.78rem);
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.pl-bar-wrap {
  width: clamp(240px, 40vw, 400px);
  height: 1px;
  background: rgba(243, 243, 245,0.1);
  margin: 0 auto 24px;
  overflow: hidden;
}
.pl-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transform-origin: left;
}
.pl-bottom {
  display: flex;
  justify-content: space-between;
  width: clamp(240px, 40vw, 400px);
  margin: 0 auto;
}
.pl-loading-text, .pl-counter {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.pl-counter { color: var(--gold); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor-outer {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(243, 243, 245, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
#cursor-inner {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
body:not(.has-cursor) #cursor-outer,
body:not(.has-cursor) #cursor-inner { display: none; }

/* Hide cursor entirely in light sections (about) */
body.cursor-light #cursor-inner,
body.cursor-light #cursor-outer { opacity: 0; pointer-events: none; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed;
  left: 0; top: 0;
  height: 100vh;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 400;
  border-right: 1px solid rgba(243, 243, 245,0.06);
  mix-blend-mode: difference;
}
.sidebar-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.35);
  transition: color 0.3s;
  white-space: nowrap;
}
.sidebar-text:hover { color: var(--gold); }
.sidebar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #DCE4EE;
  box-shadow: 0 0 10px rgba(220, 228, 238,0.6);
  animation: sidebar-pulse 2s ease-in-out infinite;
}
@keyframes sidebar-pulse {
  0%,100% { box-shadow: 0 0 10px rgba(220, 228, 238,0.6); }
  50%      { box-shadow: 0 0 20px rgba(220, 228, 238,0.9), 0 0 35px rgba(220, 228, 238,0.3); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 44px; right: 0;
  z-index: 500;
  padding: 0;
  transition: background 0.4s;
}
#nav.scrolled { background: rgba(12, 27, 46,0.95); backdrop-filter: blur(16px); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px 22px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-img { height: 60px; width: auto; object-fit: contain; }
.nav-logo-clip {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
/* Per-letter wrapper — clips the sliding letter */
.nlw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
/* The letter itself — slides in/out within .nlw */
.nli {
  display: inline-block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(220, 228, 238,0.4);
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── Hamburger button ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 600;
  flex-shrink: 0;
}
.nh-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger.open .nh-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .nh-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open .nh-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu fullscreen overlay ──────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 490;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  clip-path: circle(0% at calc(100% - 34px) 34px);
  transition: clip-path 0.55s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}
.mobile-menu.open {
  clip-path: circle(160% at calc(100% - 34px) 34px);
  pointer-events: all;
}
.mm-link {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 11vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(243, 243, 245,0.07);
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.2s, opacity 0.4s, transform 0.4s;
}
.mobile-menu.open .mm-link { opacity: 1; transform: none; }
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: 0.3s; }
.mm-link:hover { color: var(--gold); }
.mm-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(220, 228, 238,0.5);
  padding: 14px 28px;
  border-radius: 4px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.35s, transform 0.4s 0.35s, border-color 0.2s;
}
.mobile-menu.open .mm-cta { opacity: 1; transform: none; }
.mm-cta:hover { border-color: var(--gold); }
.mm-footer {
  position: absolute;
  bottom: 32px; left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: calc(100vh + 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-left: 44px;
}

/* Tilted cards */
.hero-card {
  position: absolute;
  width: 220px;
  min-height: 170px;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0; /* hidden until GSAP places & reveals them */
  cursor: none;
  z-index: 1;
}
.hero-headline { position: relative; z-index: 10; }
.card-inner {
  padding: 28px 24px;
  height: 100%;
  background: rgba(12, 27, 46, 0.38);
  border: 1px solid rgba(243, 243, 245,0.1);
  border-radius: 14px;
}
.card-stat {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.card-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.card-sub {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-cards-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Card positions & rotations */
/* Rotations handled by GSAP in initHeroReveal — no CSS transform here */
/* Four-corner card layout — no cards in center column where headline lives */
.card-1 { top: 10%; left: 4%;    background: linear-gradient(rgba(12, 27, 46,0.52),rgba(12, 27, 46,0.62)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80&fit=crop') center/cover; }
.card-2 { top: 8%;  right: 4%;   background: linear-gradient(rgba(12, 27, 46,0.52),rgba(12, 27, 46,0.62)), url('https://images.unsplash.com/photo-1547658719-da2b51169166?w=800&q=80&fit=crop') center/cover; }
.card-3 { bottom: 12%; left: 6%; background: linear-gradient(rgba(12, 27, 46,0.52),rgba(12, 27, 46,0.62)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80&fit=crop') center/cover; }
.card-4 { bottom: 10%; right: 5%;background: linear-gradient(rgba(12, 27, 46,0.52),rgba(12, 27, 46,0.62)), url('https://images.unsplash.com/photo-1542744095-291d1f67b221?w=800&q=80&fit=crop') center/cover; }

/* Hero headline */
.hero-headline {
  text-align: center;
  position: relative;
  z-index: 4;
  user-select: none;
}
.hero-line-wrap {
  overflow: hidden;
  line-height: 0.9;
  margin-bottom: 4px;
}
.hero-word {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(110%);
  will-change: transform;
  line-height: 0.9;
}
.hero-word.hw-compact {
  font-size: clamp(2rem, 5.2vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--gold);
}
.hero-star {
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 4px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-bar {
  width: 50px;
  height: 1px;
  background: rgba(243, 243, 245,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-bar-inner {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-bar-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-bar-anim {
  0%   { left: -100%; }
  50%  { left: 0%;    }
  100% { left: 100%;  }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 44px;
}
.intro-inner { text-align: center; position: relative; z-index: 2; }
.iw-wrap  { display: inline-block; overflow: hidden; vertical-align: bottom; }
.iw-inner { display: inline-block; }
.intro-text {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 32px;
  text-transform: lowercase;
}
.v-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.v-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.intro-dot {
  width: 8px; height: 8px;
  background: var(--dark);
  border-radius: 50%;
  margin: 0 auto 24px;
}
.intro-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(12, 27, 46,0.45);
  position: relative;
  z-index: 2;
}

/* Version tag */
.intro-version {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(12, 27, 46,0.3);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Scattered watermark words */
.intro-wm {
  position: absolute;
  font-family: var(--font-sans);
  font-size: clamp(6rem, 12vw, 13rem);
  font-weight: 900;
  color: rgba(12, 27, 46,0.04);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}
.wm-1 { top: 8%;    left: -4%;  transform: rotate(-30deg); }
.wm-2 { top: 45%;   right: -6%; transform: rotate(45deg);  }
.wm-3 { bottom: 14%; left: 8%;  transform: rotate(-15deg); }
.wm-4 { top: 28%;   left: 28%; transform: rotate(60deg);  }

/* ============================================================
   SERVICES SHOWCASE — Pinned auto-cycling
   ============================================================ */
#svc-showcase {
  height: 100vh;
  width: 100%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  /* ScrollTrigger will pin this */
}

/* Lavender accent bar */
.scs-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: var(--lavender);
  z-index: 3;
}

/* Decorative geometric SVG */
.scs-geo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Flowing ambient lines */
.fl-wrapper {
  position: absolute;
  inset: 0;
  overflow: clip; /* clip (not hidden) so rotation can't push content sideways */
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  animation: fl-rotate 120s linear infinite;
  transform-origin: center center;
}
@keyframes fl-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.fl-svg {
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
  will-change: transform;
}

/* Rotating badge — positioned between left and right columns */
.scs-badge {
  position: absolute;
  top: 50%;
  left: calc(45% - 60px); /* sits at the boundary of left/right columns */
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  z-index: 10;
  animation: scs-badge-spin 10s linear infinite;
}
.scs-badge-svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.scs-badge-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  fill: rgba(243, 243, 245,0.45);
  text-transform: uppercase;
}
.scs-badge-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.3rem;
  color: rgba(243, 243, 245,0.5);
  animation: scs-badge-spin-rev 10s linear infinite;
}
@keyframes scs-badge-spin     { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes scs-badge-spin-rev { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Service counter */
.scs-counter {
  position: absolute;
  top: 56px; /* below accent bar */
  left: calc(44px + 60px); /* sidebar + padding */
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(243, 243, 245,0.3);
  z-index: 5;
}

/* Main two-column area */
.scs-main {
  position: absolute;
  inset: 0;
  top: 40px; /* below accent bar */
  display: grid;
  grid-template-columns: 45% 55%;
  padding: 80px 64px 64px calc(44px + 64px); /* account for sidebar */
  z-index: 4;
  pointer-events: none; /* overlay, children get pointer events back */
}

/* Left column — service text */
.scs-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 80px;
  pointer-events: auto;
}
.scs-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.3);
  margin-bottom: 32px;
}
.scs-text-wrap {
  overflow: visible;
}
.scs-title {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0;
}
.scs-sub {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0;
}

/* Right column — photo cards */
.scs-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  pointer-events: auto;
}
.scs-photo {
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(12, 27, 46,0.55);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.scs-photo-t { flex: 6; } /* ~60% height */
.scs-photo-b { flex: 3.5; } /* ~35% height */

/* Video background inside top photo card */
.scs-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.scs-video.active { opacity: 1; }

/* Dark gradient overlay — visible only when video is active */
.scs-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 27, 46,0.22), rgba(12, 27, 46,0.58));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.scs-video.active ~ .scs-video-overlay { opacity: 1; }

/* Photo card inner content */
.scs-photo-label {
  position: absolute;
  top: 18px; left: 20px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.5);
}
.scs-photo-stat {
  position: absolute;
  bottom: 40px; left: 20px;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.scs-photo-info {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.35);
}
/* ── Video frame decorations ─────────────────────────────── */
.scs-frame-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.scs-photo-t.has-video .scs-frame-deco { opacity: 1; }

/* Corner brackets */
.sfd-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(243, 243, 245,0.75);
  border-style: solid;
  animation: corner-pulse 3s ease-in-out infinite;
}
.sfd-tl { top: 12px;    left: 12px;    border-width: 1.5px 0 0 1.5px; }
.sfd-tr { top: 12px;    right: 12px;   border-width: 1.5px 1.5px 0 0; animation-delay: 0.75s; }
.sfd-bl { bottom: 12px; left: 12px;    border-width: 0 0 1.5px 1.5px; animation-delay: 1.5s;  }
.sfd-br { bottom: 12px; right: 12px;   border-width: 0 1.5px 1.5px 0; animation-delay: 2.25s; }

@keyframes corner-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.08); }
}

/* Horizontal edge lines — top and bottom, animate width in */
.sfd-hline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(243, 243, 245,0.35), transparent);
  animation: hline-breathe 4s ease-in-out infinite;
}
.sfd-hline-top { top: 0;    width: 70%; animation-delay: 0s;   }
.sfd-hline-bot { bottom: 0; width: 55%; animation-delay: 2s;   }

@keyframes hline-breathe {
  0%, 100% { opacity: 0.4; width: 60%; }
  50%       { opacity: 0.8; width: 80%; }
}

/* Scan line — sweeps top to bottom continuously */
.sfd-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(243, 243, 245,0.08) 20%,
    rgba(243, 243, 245,0.45) 50%,
    rgba(243, 243, 245,0.08) 80%,
    transparent 100%
  );
  animation: scan-sweep 6s linear infinite;
  pointer-events: none;
}

@keyframes scan-sweep {
  0%   { top: 0%;   opacity: 0;   }
  5%   { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0;   }
}

/* REC indicator — top right */
.sfd-rec {
  position: absolute;
  top: 12px;
  right: 36px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(243, 243, 245,0.6);
  animation: rec-blink 2s ease-in-out infinite;
}
.sfd-rec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #DCE4EE;
  animation: rec-dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes rec-blink {
  0%, 45%, 55%, 100% { opacity: 1;   }
  50%                { opacity: 0.3; }
}
@keyframes rec-dot-pulse {
  0%, 45%, 55%, 100% { opacity: 1; transform: scale(1);    }
  50%                { opacity: 0; transform: scale(0.6); }
}

/* Diagonal stripe accent — right edge of photo */
.scs-photo-stripe {
  position: absolute;
  z-index: 3;
  top: 0; right: 0;
  width: 56px; height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(243, 243, 245,0.045) 0px, rgba(243, 243, 245,0.045) 1px,
    transparent 1px, transparent 8px
  );
}

/* ── "What we do" transition overlay ─────────────────────── */
.scs-wwd {
  position: absolute;
  inset: 0;
  top: 40px; /* below accent bar */
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
}
.scs-wwd.visible { pointer-events: auto; }

/* Faint horizontal band of "team photo" texture */
.scs-wwd-band {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 220px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(90deg,
      rgba(243, 243, 245,0.015) 0px, rgba(243, 243, 245,0.015) 1px,
      transparent 1px, transparent 40px),
    repeating-linear-gradient(180deg,
      rgba(243, 243, 245,0.015) 0px, rgba(243, 243, 245,0.015) 1px,
      transparent 1px, transparent 40px);
  opacity: 0.3;
  pointer-events: none;
}

/* Giant stroke-only text behind */
.scs-wwd-stroke {
  font-family: var(--font-sans);
  font-size: clamp(5rem, 15vw, 18rem);
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1px rgba(243, 243, 245,0.18);
  color: transparent;
  line-height: 1;
  position: absolute;
  pointer-events: none;
  white-space: nowrap;
}

/* Solid "What we do" title */
.scs-wwd-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* "our service" button */
.scs-wwd-btn {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  position: relative;
  z-index: 2;
  transition: background 0.25s, color 0.25s;
  pointer-events: auto;
}
.scs-wwd-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   ROTATING BADGE
   ============================================================ */
.rotating-badge {
  position: absolute;
  width: 130px; height: 130px;
  animation: badge-spin 12s linear infinite;
  cursor: none;
}
.badge-dark  .badge-text     { fill: rgba(12, 27, 46,0.6); }
.badge-light .badge-text-light { fill: rgba(243, 243, 245,0.5); }
.badge-svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.badge-text, .badge-text-light {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-center-icon, .badge-center-icon-light {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.3rem;
  animation: badge-spin-reverse 12s linear infinite;
}
.badge-center-icon       { color: rgba(12, 27, 46,0.6); }
.badge-center-icon-light { color: rgba(243, 243, 245,0.5); }
@keyframes badge-spin          { to { transform: rotate(360deg);  } }
@keyframes badge-spin-reverse  { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Intro badge — small bottom-left accent */
.intro-section .rotating-badge {
  bottom: 8%;
  left: 6%;
  width: 90px;
  height: 90px;
  z-index: 1;
}
/* About badge position */
.badge-about {
  bottom: -20px;
  right: 40px;
  width: 110px; height: 110px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.stats-geo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.stats-inner { position: relative; z-index: 2; }
.stats-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--color-navy-deep);
  color: var(--color-cream);
  border-radius: 20px;
  padding: 48px 24px 32px;
  text-align: center;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.stat-card .stat-number { line-height: 1; margin-bottom: 8px; }
.stat-card .stat-number { color: var(--color-cream) !important; }
.stat-card .stat-label  { color: rgba(243, 243, 245, 0.6) !important; }
.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 160px 0;
  position: relative;
  overflow-x: clip;
}
.about-section > .container {
  max-width: 1380px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.about-heading em { font-size: 1.1em; }
.about-body {
  font-size: 1.05rem;
  color: rgba(12, 27, 46, 0.75);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.about-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(12, 27, 46, 0.8);
}
.pillar-icon { display: none; }
.ah-line { display: block; }
.ah-char { display: inline-block; }

.about-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.globe-wrap { position: relative; overflow: visible; }

/* ── Cobe WebGL dotted globe ─────────────────────────────── */
.globe-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.globe-container::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 228, 238, 0.25) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
#globe-canvas {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* ── Globe stats strip ────────────────────────────────────── */
.globe-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 520px;
  margin-top: 24px;
  border-top: 1px solid rgba(12, 27, 46, 0.2);
  padding-top: 20px;
}
.gs-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 20px;
}
.gs-item-bordered {
  border-left: 1px solid rgba(12, 27, 46, 0.15);
  padding-left: 20px;
  padding-right: 20px;
}
.gs-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.gs-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}

/* Background floating particles */
.about-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ap-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(12, 27, 46, 0.3);
  opacity: 1;
}

/* ============================================================
   SELECTED WORKS
   ============================================================ */
.works-section {
  padding: 100px 0 120px;
  overflow-x: clip;
}
.works-inner { position: relative; }
.works-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-l);
  margin-bottom: 0;
}
.works-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(12, 27, 46,0.45);
}
.works-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(12, 27, 46,0.4);
}
.work-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-l);
  cursor: none;
  overflow: hidden;
  transition: padding-left 0.4s;
}
.work-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 27, 46,0.04);
  opacity: 0;
  transition: opacity 0.3s;
}
.work-row:hover::before { opacity: 1; }
.work-row:hover { padding-left: 16px; }
.work-preview {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  width: 180px; height: 110px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0C1B2E, rgba(23, 49, 79, 0.85));
  border: 1px solid rgba(220, 228, 238, 0.12);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: none;
}
.preview-stat {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #F3F3F5;
}
.preview-stat-2 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(243, 243, 245, 0.7);
  text-transform: uppercase;
}
.work-name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.work-row-right {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.work-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(12, 27, 46,0.45);
}
.work-year-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(12, 27, 46,0.35);
}

/* ============================================================
   SERVICES SHOWCASE PANELS
   ============================================================ */
.services-showcase { overflow: hidden; }
.svc-panel {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-d);
}
.svc-geo {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 40%;
  pointer-events: none;
  opacity: 0.6;
}
.svc-geo-right { left: auto; right: 0; }
.svc-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.svc-panel-alt .svc-panel-inner {
  direction: rtl;
}
.svc-panel-alt .svc-panel-inner > * { direction: ltr; }
.svc-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.svc-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.svc-desc {
  font-size: 1rem;
  color: rgba(243, 243, 245,0.55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 28px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.svc-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.4);
  border: 1px solid rgba(243, 243, 245,0.12);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.25s;
}
.svc-tags span:hover { border-color: var(--gold); color: var(--gold); }
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(220, 228, 238,0.35);
  padding-bottom: 4px;
  transition: all 0.25s;
}
.svc-cta:hover { gap: 14px; border-color: var(--gold); }
.svc-right { position: relative; }
.svc-visual {
  border-radius: 16px;
  padding: 40px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 243, 245,0.07);
}
.visual-1 { background: linear-gradient(135deg, rgba(12, 27, 46,0.85) 0%, rgba(12, 27, 46,0.70) 100%); }
.visual-2 { background: linear-gradient(135deg, rgba(12, 27, 46,0.85) 0%, rgba(12, 27, 46,0.70) 100%); }
.visual-3 { background: linear-gradient(135deg, rgba(12, 27, 46,0.85) 0%, rgba(12, 27, 46,0.70) 100%); }
.svc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: brightness(0.6) saturate(0.8);
  border-radius: 16px;
  transition: opacity 0.5s ease;
}
.svc-visual:hover .svc-img { opacity: 0.28; }
.svc-stat-big {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.svc-stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 243, 245,0.4);
}
/* Diagonal stripe accent */
.svc-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 60px;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(243, 243, 245,0.04) 0px,
    rgba(243, 243, 245,0.04) 1px,
    transparent 1px,
    transparent 8px
  );
}
.svc-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
}

/* ============================================================
   WHAT WE DO + MARQUEE
   ============================================================ */
.whatwedo-section {
  padding: 100px 0 0;
  overflow: hidden;
}
.wwd-overline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.wwd-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 64px;
}
.marquee-outer {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}
.marquee-track-outline { display: flex; }
.marquee-inner-outline {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-outline 22s linear infinite;
  will-change: transform;
}
.outline-word {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(220, 228, 238,0.55);
  color: transparent;
  padding: 0 20px;
  line-height: 1;
  transition: color 0.2s;
}
.outline-word:hover { color: rgba(220, 228, 238,0.15); }
.outline-star {
  color: var(--gold);
  font-size: clamp(1rem, 2.5vw, 2.5rem);
  padding: 0 4px;
}
@keyframes marquee-outline {
  0%   { transform: translateX(0);    }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES ACCORDION
   ============================================================ */
.accordion-section {
  padding: 80px 0 120px;
  border-top: 1px solid var(--border-d);
  overflow-x: clip;
}
.accordion-list { width: 100%; }
.accordion-item {
  border-bottom: 1px solid var(--border-d);
  overflow: hidden;
}
.accordion-header {
  display: grid;
  grid-template-columns: 60px 1fr 200px 60px;
  align-items: center;
  padding: 28px 0;
  cursor: default;
  transition: padding-left 0.3s;
}
.accordion-header:hover { padding-left: 8px; }
.acc-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(243, 243, 245,0.25);
  letter-spacing: 0.1em;
}
.acc-name {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.accordion-item.open .acc-name { color: var(--gold); }
.acc-desc-short {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
  padding-right: 20px;
}
.acc-toggle {
  width: 44px; height: 44px;
  border: 1px solid rgba(243, 243, 245,0.15);
  border-radius: 50%;
  color: rgba(243, 243, 245,0.5);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  justify-self: end;
}
.accordion-item.open .acc-toggle {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
  content: '↗';
}
.accordion-body {
  height: 0;
  overflow: hidden;
}
.accordion-body-inner {
  padding: 0 0 32px 60px;
}
.accordion-body-inner p {
  font-size: 0.95rem;
  color: rgba(243, 243, 245,0.5);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 20px;
}
.acc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.acc-pills span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(220, 228, 238,0.3);
  padding: 7px 16px;
  border-radius: 100px;
  transition: background 0.2s;
}
.acc-pills span:hover { background: rgba(220, 228, 238,0.08); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-d);
}
.cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(220, 228, 238, 0.28);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.cta-inner { position: relative; z-index: 2; }
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.2vw, 0.82rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 52px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(243, 243, 245,0.25);
  padding: 18px 44px;
  border-radius: 100px;
  transition: all 0.4s;
}
.cta-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  gap: 20px;
}

/* ============================================================
   CONTACT — MAD LIBS
   ============================================================ */
.contact-section {
  padding: 120px 0 100px;
  border-top: 1px solid var(--border-d);
  overflow-x: clip;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(243, 243, 245,0.6);
}
.ci-mono {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 56px;
  margin-top: 2px;
}
.contact-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border-d);
  padding-bottom: 20px;
}
.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
  position: relative;
  transition: color 0.25s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.tab-btn.active { color: var(--white); }
.tab-btn.active::after { width: 100%; }
.tab-btn:hover { color: var(--white); }

/* Mad-libs form */
.madlibs-form { width: 100%; }
.madlib-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: rgba(243, 243, 245,0.7);
  margin-bottom: 32px;
  line-height: 1.5;
}
.ml-input {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(220, 228, 238,0.4);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  padding: 4px 2px;
  outline: none;
  transition: border-color 0.25s;
  min-width: 180px;
  width: clamp(180px, 18vw, 260px);
}
.ml-input-wide { width: clamp(240px, 24vw, 340px); min-width: 240px; }
.ml-input::placeholder { color: rgba(243, 243, 245,0.25); }
.ml-input:focus { border-color: var(--gold); }
.ml-select {
  background: transparent;
  color: var(--white);
  cursor: pointer;
  width: auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%230C1B32' d='M6 9L1 4h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}
.ml-select option {
  background: #0C1B2E;
  color: #F3F3F5;
  font-style: normal;
}
.ml-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px 48px;
  border: 1px solid rgba(243, 243, 245,0.2);
  border-radius: 100px;
  color: var(--white);
  transition: all 0.4s;
}
.ml-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  gap: 24px;
}
.ml-submit-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.ml-submit-arrow { font-size: 1rem; transition: transform 0.3s; }
.ml-submit:hover .ml-submit-arrow { transform: translateX(4px); }
.ml-success {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 16px;
  border: 1px solid rgba(220, 228, 238,0.25);
  border-radius: 10px;
  background: rgba(220, 228, 238,0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-d);
  overflow-x: clip;
}
.footer-inner { width: 100%; }
.footer-logo-big {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(243, 243, 245,0.06);
  margin-bottom: 40px;
  line-height: 1;
}
.footer-line {
  height: 1px;
  background: var(--border-d);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* Mobile stats strip — hidden on desktop */
.hero-mobile-stats {
  display: none;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 243, 245, 0.12);
  width: 100%;
}
.hero-mobile-stat { text-align: center; }
.hero-mobile-stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #DCE4EE;
}
.hero-mobile-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(243, 243, 245, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Mobile scroll indicator — hidden on desktop */
.scroll-indicator-mobile {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(243, 243, 245, 0.4);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-arrow-mobile {
  font-size: 1.2rem;
  margin-bottom: 6px;
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Touch / pointer: hide custom cursor on touchscreens ─── */
@media (hover: none) and (pointer: coarse) {
  #cursor-outer, #cursor-inner { display: none !important; }
}

/* ── 1024px — iPad / small laptop ─────────────────────────
   Same animations and elements as desktop — just scaled to fit */
@media (max-width: 1024px) {
  /* Container + nav */
  .container          { padding: 0 40px; }
  .nav-inner          { padding: 20px 40px 20px 28px; }
  .nav-links          { gap: 2.2rem; }

  /* Hero — scale down card size, keep fan-out animation */
  .hero-section       { padding-left: 44px; }
  .hero-word          { font-size: clamp(3rem, 11vw, 7rem); }
  .hero-word.hw-compact { font-size: clamp(1.8rem, 7vw, 4.6rem); }
  .hero-card          { width: 180px; min-height: 145px; }
  .card-inner         { padding: 22px 18px; }
  .card-stat          { font-size: 1.6rem; }
  .card-label         { font-size: 0.55rem; }
  .card-sub           { font-size: 0.66rem; }

  /* Intro */
  .intro-section      { padding: 100px 40px; min-height: 72vh; }
  .intro-text         { font-size: clamp(2.2rem, 7vw, 5rem); }

  /* Services showcase — keep pinned cycle, just tighten layout */
  .scs-main           { grid-template-columns: 48% 52%; padding: 72px 40px 56px calc(44px + 40px); }
  .scs-title,
  .scs-sub            { font-size: clamp(2.4rem, 6.5vw, 4.4rem); }
  /* "BRAND IS A IDEA GREAT" rotating badge overlaps text on tablet */
  .scs-badge          { display: none; }

  /* Stats */
  .stats-section      { padding: 96px 0; }
  .stats-cards        { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .stats-heading      { margin-bottom: 48px; }

  /* About */
  .about-section      { padding: 100px 0; }
  .about-inner        { grid-template-columns: 1fr; gap: 60px; }
  .about-heading      { font-size: clamp(2rem, 5.5vw, 3.5rem); }
  .about-right        { justify-content: center; }

  /* Works */
  .works-section      { padding: 80px 0 100px; }
  .work-name          { font-size: clamp(2rem, 6.5vw, 4.2rem); }

  /* Services panels — already stacks single-column */
  .svc-panel          { padding: 88px 0; }
  .svc-panel-inner    { grid-template-columns: 1fr; gap: 36px; }
  .svc-panel-alt .svc-panel-inner { direction: ltr; }
  .svc-title          { font-size: clamp(1.8rem, 5vw, 3.2rem); }
  .svc-visual         { min-height: 220px; padding: 32px; }
  /* Rotating badge on service cards overflows into What We Do on tablet */
  .svc-badge          { display: none; }

  /* What we do */
  .whatwedo-section   { padding: 80px 0 0; }
  .wwd-heading        { font-size: clamp(1.9rem, 5.5vw, 3.4rem); }
  .outline-word       { font-size: clamp(2.4rem, 9vw, 5.5rem); }

  /* Accordion */
  .accordion-section  { padding: 64px 0 96px; }
  .accordion-header   { grid-template-columns: 48px 1fr 60px; }
  .acc-desc-short     { display: none; }
  .acc-name           { font-size: clamp(1.1rem, 2.4vw, 1.5rem); }

  /* CTA */
  .cta-section        { padding: 120px 0; }
  .cta-heading        { font-size: clamp(2.2rem, 6vw, 4.4rem); }
  .cta-watermark      { font-size: clamp(4rem, 16vw, 14rem); }

  /* Contact */
  .contact-section    { padding: 96px 0 80px; }
  .contact-inner      { grid-template-columns: 1fr; gap: 56px; }
  .contact-heading    { font-size: clamp(2.2rem, 5.2vw, 4rem); }
  .madlib-line        { font-size: clamp(1.2rem, 2.3vw, 1.8rem); }
  .ml-input           { font-size: clamp(1.2rem, 2.3vw, 1.8rem); min-width: 180px; width: clamp(180px, 22vw, 260px); }
  .ml-input-wide      { width: clamp(240px, 28vw, 340px); min-width: 240px; }

  /* Footer */
  .footer             { padding: 48px 0 32px; }
  .footer-logo-big    { font-size: clamp(2.8rem, 10vw, 7rem); margin-bottom: 32px; }
}

/* ── 768px — tablets / large phones ─────────────────────── */
@media (max-width: 768px) {
  /* Layout base */
  .container        { padding: 0 24px; }
  .hero-section     { min-height: 100svh; min-height: -webkit-fill-available; height: 100svh; padding: 0 24px; padding-left: 0; }
  .sidebar          { display: none; }
  #nav              { left: 0; transform: translateZ(0); }
  .nav-inner        { padding: 18px 24px; }
  .nav-links        { display: none; }
  .nav-cta          { display: none; }
  .nav-hamburger    { display: flex; }

  /* Hero */
  .hero-word        { font-size: clamp(2.8rem, 13vw, 5rem); }
  .hero-card        { width: 140px !important; min-height: 110px !important; }
  .card-inner       { padding: 16px 14px; }
  .card-stat        { font-size: 1.3rem; }
  .card-label       { font-size: 0.5rem; }
  .card-sub         { font-size: 0.6rem; }
  .hero-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Services showcase — keep pinned, just scale down */
  .scs-main         { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .scs-right        { display: block; margin-top: 32px; }
  .scs-photo-b      { display: none; }
  .scs-photo-t      { height: 220px; width: 100%; border-radius: 12px; }
  .scs-badge        { width: 72px; height: 72px; left: auto; right: 24px; top: auto; bottom: 24px; }
  .scs-title,
  .scs-sub          { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .scs-counter      { top: 72px; right: 24px; }

  /* Services panels — tighten vertical rhythm on mobile */
  .svc-panel            { padding: 48px 0; }
  .svc-panel-inner      { gap: 20px; }
  .svc-num              { margin-bottom: 12px; }
  .svc-title            { margin-bottom: 14px; }
  .svc-desc             { margin-bottom: 18px; }
  .svc-tags             { margin-bottom: 20px; }
  .svc-right            { display: block; margin-top: 12px; }
  .svc-visual           { min-height: 160px; padding: 20px; }

  /* Section vertical padding trim — kills the big empty gaps */
  .stats-section,
  .whatwedo-section,
  .cta-section      { padding: 56px 0; }
  .contact-section  { padding: 32px 0 40px; }
  .intro-section    { padding: 80px 24px; min-height: 80vh; }
  .accordion-section{ padding: 48px 0 60px; }
  .works-section    { padding: 60px 0 72px; }

  /* Stats */
  .stats-cards      { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .stat-number      { font-size: 2.5rem; }
  .stats-heading    { margin-bottom: 36px; }

  /* About */
  .about-section    { padding: 60px 0; }
  .about-inner      { gap: 40px; }
  .about-right      { display: flex; justify-content: center; margin-top: 48px; }
  .globe-container  { width: 280px; height: 280px; }
  .globe-stats      { width: 300px; }
  .gs-num           { font-size: 1.3rem; }
  .gs-item-bordered { padding-left: 12px; padding-right: 8px; }

  /* Works */
  .work-preview     { display: none; }
  .work-row         { padding: 20px 0; }
  .work-row-right   { flex-direction: column; gap: 4px; }
  .work-name        { font-size: clamp(1.8rem, 8vw, 3rem); }
  .works-section .container { padding: 0 24px; }

  /* What we do */
  .wwd-heading      { font-size: clamp(1.8rem, 8vw, 3.2rem); }
  .outline-word     { font-size: clamp(2rem, 15vw, 5rem); }
  .marquee-inner-outline { animation-duration: 15s; }

  /* Accordion: enable click on touch devices */
  .accordion-header { cursor: pointer; grid-template-columns: 36px 1fr 44px; }

  /* Contact / footer */
  .contact-inner    { grid-template-columns: 1fr; gap: 48px; }
  .ml-submit        { width: 100%; justify-content: center; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* CTA */
  .cta-inner        { padding: 32px 24px; }
  .cta-heading      { font-size: clamp(2rem, 8vw, 4rem); }

  /* Footer — tighten space below submit button and above logo */
  .footer           { padding: 32px 0 24px; }
  .footer-logo-big  { margin-bottom: 20px; }

  /* Decorative — scale down on small screens */
  .svc-badge        { width: 72px; height: 72px; }
  .intro-section .rotating-badge { width: 72px; height: 72px; }
  .intro-section .badge-svg      { width: 72px; height: 72px; }
  .badge-about      { width: 72px; height: 72px; }
  .cta-watermark    { font-size: clamp(3rem, 14vw, 8rem); }

  /* Tap feedback */
  .work-row.tapped  { background: rgba(220, 228, 238, 0.05); }
  .pressed          { transform: scale(0.97); transition: transform 0.1s; }

  /* iOS fixes */
  * { -webkit-tap-highlight-color: transparent; }
}

/* ── 480px — small phones ─────────────────────────────────── */
@media (max-width: 480px) {
  .hero-word             { font-size: clamp(1.8rem, 10vw, 3.5rem); }
  .hero-word.hw-compact  { font-size: clamp(1.2rem, 6.5vw, 2.4rem); }
  .stats-cards           { grid-template-columns: 1fr 1fr; gap: 8px; }
  .madlib-line           { font-size: 1.1rem; }
  .ml-input              { font-size: 1.1rem; }
  .works-section         { padding: 60px 0 80px; }
  .accordion-section     { padding: 40px 0 80px; }
  .nav-inner             { padding: 14px 16px; }
  .nav-logo              { font-size: 0.82rem; gap: 6px; }
  .nav-logo-img          { height: 44px; }
  .pl-logo               { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .intro-text            { font-size: clamp(2.8rem, 11vw, 5rem); }
  .intro-sub             { font-size: 0.9rem; }
  .footer-logo-big       { font-size: clamp(2rem, 9vw, 4rem); }
  .svc-title             { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .svc-desc              { font-size: 0.85rem; }
  .svc-tags span         { font-size: 0.6rem; padding: 6px 10px; }
  .acc-name              { font-size: clamp(1rem, 4.5vw, 1.4rem); }
  .accordion-header      { grid-template-columns: 36px 1fr 50px; padding: 16px 0; }
}

/* ── Reduced motion: respect user OS preference ───────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
    scroll-behavior:          auto   !important;
  }
}
