@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("fonts/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07070b;
  --bg-soft: #11111a;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7f3ff;
  --muted: #b8b1c8;
  --accent: #b9ff5f;
  --pink: #ff4fd8;
  --cyan: #57e8ff;
  --violet: #8d68ff;
  --radius: 30px;
  --max: 1320px;
}

body.light-mode {
  --bg: #f4f0e8;
  --bg-soft: #e9e2d7;
  --card: rgba(0, 0, 0, 0.045);
  --card-strong: rgba(0, 0, 0, 0.08);
  --line: rgba(0, 0, 0, 0.16);
  --text: #080808;
  --muted: #4e4b47;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  background: #000;
  color: var(--text);
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  overflow-x: hidden;
}

body.light-mode {
  background:
    radial-gradient(circle at 18% 18%, rgba(80, 210, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 8%, rgba(255, 78, 190, 0.18), transparent 24rem),
    radial-gradient(circle at 62% 72%, rgba(130, 92, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8f4ec 0%, #eee7dd 48%, #f7f3ec 100%);
}

body::before {
  display: none;
}

body.light-mode::before {
  background:
    radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.18) 64%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.035), transparent 42%, rgba(255, 255, 255, 0.32));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.noise {
  display: none;
}

body.light-mode .noise {
  display: none;
}

.ambient-lights {
  position: absolute;
  left: 0;
  top: 100svh;
  z-index: 0;
  width: 100%;
  bottom: 8rem;
  height: auto;
  overflow: hidden;
  pointer-events: none;
}

.ambient-lights span {
  display: none;
}

.ambient-lights::before,
.ambient-lights::after {
  content: "";
  position: absolute;
  inset: -10vh -14vw;
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.35;
  will-change: transform;
}

.ambient-lights::before {
  background:
    linear-gradient(90deg, rgba(220, 40, 150, 0.28) 0%, rgba(140, 25, 75, 0.14) 30%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(ellipse 72vw 170vh at -10% 30%, rgba(220, 100, 190, 0.22), rgba(200, 35, 120, 0.12) 42%, transparent 82%);
  animation: lightLeakDrift 34s ease-in-out infinite alternate;
}

.ambient-lights::after {
  background:
    linear-gradient(270deg, rgba(80, 120, 220, 0.3) 0%, rgba(45, 85, 170, 0.16) 30%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(ellipse 74vw 168vh at 110% 36%, rgba(130, 165, 245, 0.22), rgba(65, 100, 210, 0.13) 44%, transparent 84%);
  animation: lightLeakDrift 40s ease-in-out infinite alternate-reverse;
}

body.light-mode .ambient-lights {
  display: none;
}

.background-glass {
  display: none;
}

body.light-mode .background-glass {
  display: none;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 22rem),
    #000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.66) 72%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.72));
}

.loader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: brightness(0.56) contrast(1.14) saturate(0.66) blur(1.2px);
  transform: scale(1.04);
}

.hero-copy {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.is-entered {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker,
.hero-title,
.hero-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.is-entered .hero-kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

.hero-copy.is-entered .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-copy.is-entered .hero-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

.loader-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  width: min(19rem, 62vw);
}

.logo-split {
  position: relative;
  width: min(14rem, 52vw);
  aspect-ratio: 8000 / 2194;
  filter: drop-shadow(0 18px 42px rgba(255, 255, 255, 0.08));
  animation: loaderLogo 1.2s ease-in-out infinite alternate;
  --split-pos: 28%;
}

.logo-half {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}

.logo-half img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  pointer-events: none;
}

.logo-left {
  left: 0;
  width: 100%;
  overflow: visible;
  z-index: 1;
}

.logo-right {
  right: 0;
  opacity: 0;
  pointer-events: none;
}

.logo-right img {
  transform: translateX(calc(var(--split-pos) * -1));
}

.logo-left.is-split {
  width: var(--split-pos);
  overflow: hidden;
}

.logo-right.is-split {
  opacity: 1;
  pointer-events: auto;
  width: calc(100% - var(--split-pos));
  overflow: hidden;
}

.cut-flash {
  position: absolute;
  left: calc(var(--split-pos) - 0.75rem);
  top: -1rem;
  bottom: -1rem;
  width: 1.5rem;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.75), rgba(255,255,255,0.2) 40%, transparent 65%);
}

.logo-left.is-split ~ .cut-flash {
  animation: cutFlashBang 0.6s ease-out forwards;
}

.cut-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent 5%, rgba(255,255,255,0.85) 20%, #fff 38%, #fff 62%, rgba(255,255,255,0.85) 80%, transparent 95%);
  box-shadow:
    0 0 20px rgba(255,255,255,0.6),
    0 0 50px rgba(255,255,255,0.25),
    0 0 80px rgba(200,170,255,0.12);
  transform: scaleY(0) translateZ(0);
  opacity: 0;
  transform-origin: top;
  z-index: 1;
  pointer-events: none;
}

.logo-left.is-split .cut-line {
  animation: cutLineFlash 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.logo-left.is-split {
  animation: splitLeft 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.logo-right.is-split {
  animation: splitRight 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader-bar {
  position: relative;
  transition: opacity 0.4s ease;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.loader-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #fff, rgba(255, 255, 255, 0.35));
  animation: loaderBar 1.8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 1.45rem;
  z-index: 20;
  width: min(calc(100% - 2rem), var(--max));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transform: translateX(-50%) translateY(-4rem);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, top 0.35s ease, padding 0.35s ease;
}

.site-header.is-revealed {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.site-header::after {
  content: "";
  position: fixed;
  left: 50%;
  top: -1.45rem;
  z-index: -1;
  width: 100vw;
  height: 6.4rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.88) 58%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 1;
  transform: translateX(-50%);
  backdrop-filter: blur(18px) saturate(1.12);
  transition: opacity 0.35s ease, height 0.35s ease;
}

body.light-mode .site-header::after {
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.96), rgba(248, 244, 236, 0.9) 58%, rgba(248, 244, 236, 0.24) 100%);
}

.site-header.is-scrolled {
  top: 0.8rem;
}

.site-header.is-scrolled::after {
  height: 6.2rem;
  opacity: 1;
}

.site-header.is-scrolled .brand {
  transform: translateY(-1px) scale(0.94);
}

.site-header.is-scrolled .site-nav {
  background: rgba(0, 0, 0, 0.78);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1rem 3.2rem rgba(0, 0, 0, 0.48),
    0 0 2.2rem rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .header-cta {
  transform: translateY(-1px) scale(0.96);
}

.site-header::before {
  display: none;
}

.brand,
.site-nav,
.header-actions,
.social-links,
.header-cta {
  position: relative;
  z-index: 2;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  font-weight: 800;
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 0.8rem 1.6rem rgba(0, 0, 0, 0.58));
  transition: transform 0.35s ease;
}

.brand::before {
  content: "";
  position: absolute;
  left: -0.6rem;
  top: 50%;
  z-index: -1;
  width: 12.4rem;
  height: 3.8rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(20px);
  opacity: 0.5;
  transform: translateY(-50%);
  pointer-events: none;
}

.brand-logo {
  display: block;
  width: 9.6rem;
  height: auto;
  filter: drop-shadow(0 0 0.78rem rgba(255, 255, 255, 0.22)) drop-shadow(0 0.35rem 1rem rgba(255, 255, 255, 0.08));
}

body.light-mode .brand::before {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1), transparent 68%);
  opacity: 0.34;
}

body.light-mode .brand-logo {
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.12));
}

.brand-byline {
  position: relative;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateY(0.06rem);
  text-shadow: 0 0 0.75rem rgba(255, 255, 255, 0.34), 0 0.5rem 1.4rem rgba(0, 0, 0, 0.75);
}

body.light-mode .brand-byline {
  color: #050505;
  text-shadow: 0 0.5rem 1.4rem rgba(255, 255, 255, 0.8);
}

body.light-mode .brand-byline::before {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52), transparent);
}

.brand-byline::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.05rem;
  margin-right: 0.78rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  vertical-align: -0.24rem;
}

.site-nav {
  justify-self: center;
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.28rem;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 1.2rem 3.8rem rgba(0, 0, 0, 0.34),
    0 0 2.4rem rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.light-mode .site-nav {
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(0, 0, 0, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1.2rem 3.8rem rgba(0, 0, 0, 0.1);
}

body.light-mode .site-nav a::before {
  background: rgba(0, 0, 0, 0.07);
}

body.light-mode .site-nav a::after {
  background: #050505;
  box-shadow: 0 0 0.85rem rgba(0, 0, 0, 0.24);
}

body.light-mode .site-nav a:hover {
  color: #000;
  text-shadow: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  left: 0.5rem;
  right: 0.5rem;
  top: 4.5rem;
  z-index: 19;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 0.5rem;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1.4rem 3.2rem rgba(0, 0, 0, 0.6),
    0 0 2rem rgba(255, 255, 255, 0.06);
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(-0.5rem) scale(0.97);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease;
  visibility: hidden;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.mobile-nav a {
  display: block;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(4px);
}

body.light-mode .mobile-nav {
  background: rgba(248, 244, 236, 0.95);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1.4rem 3.2rem rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-nav a {
  color: rgba(0, 0, 0, 0.72);
}

body.light-mode .mobile-nav a:hover,
body.light-mode .mobile-nav a:active {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
}

.site-nav a {
  position: relative;
  display: block;
  height: 2.6rem;
  border-radius: 999px;
  padding: 0 1.12rem;
  overflow: hidden;
  line-height: 2.6rem;
  text-align: center;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.38rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.85rem rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateX(-50%) translateY(0.35rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: #fff;
  transform: translateY(-2px);
  text-shadow: 0 0 1rem rgba(255, 255, 255, 0.45);
}

.site-nav a:hover::before,
.site-nav a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.site-nav a:hover::after {
  transform: translateX(-50%) translateY(0);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.theme-toggle {
  position: relative;
  order: 3;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0.7rem 1.8rem rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle svg {
  position: absolute;
  z-index: 2;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.09);
}

body.light-mode .theme-toggle {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: #050505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 0.7rem 1.8rem rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle .moon-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.social-links a {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0.7rem 1.8rem rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

body.light-mode .social-links a {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.54);
  color: #050505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 0.7rem 1.8rem rgba(0, 0, 0, 0.1);
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0;
  transform: translateY(35%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-links svg {
  position: relative;
  z-index: 1;
  width: 1.42rem;
  height: 1.42rem;
  fill: currentColor;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0.8rem 2rem rgba(0, 0, 0, 0.3), 0 0 1.4rem rgba(255, 255, 255, 0.12);
}

.social-links a:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.contact-form button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #fff, #d9d9d9 48%, #fff),
    #fff;
  color: #050505;
  font-weight: 800;
  padding: 0.88rem 1.18rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  position: relative;
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 104, 204, 0.34);
  border-radius: 999px;
  padding: 0.92rem 1.55rem;
  background:
    linear-gradient(90deg, rgba(255, 104, 204, 0.12), rgba(255, 255, 255, 0.035), rgba(123, 77, 255, 0.1)),
    rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 0.7rem 2rem rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 1.9rem rgba(255, 104, 204, 0.08);
  transition: transform 0.25s ease, box-shadow 0.35s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.light-mode .header-cta {
  border-color: rgba(255, 104, 204, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 104, 204, 0.12), rgba(255, 255, 255, 0.035), rgba(123, 77, 255, 0.1)),
    rgba(0, 0, 0, 0.54);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0.7rem 2rem rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 1.9rem rgba(255, 104, 204, 0.08);
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: -60% -35%;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 104, 204, 0.42) 42%, rgba(255, 255, 255, 0.36) 50%, rgba(123, 77, 255, 0.38) 58%, transparent 100%);
  filter: blur(16px);
  opacity: 0.38;
  transform: translateX(-72%);
  animation: ctaSweep 3.8s ease-in-out infinite;
  pointer-events: none;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 1;
  pointer-events: none;
}

.header-cta {
  isolation: isolate;
}

.header-cta::first-letter {
  position: relative;
}

.header-cta {
  white-space: nowrap;
}

.header-cta {
  text-shadow: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 147, 221, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 104, 204, 0.18), rgba(255, 255, 255, 0.055), rgba(123, 77, 255, 0.16)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 0.85rem 2.4rem rgba(0, 0, 0, 0.3),
    0 0 2.4rem rgba(255, 104, 204, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.header-cta:hover::before {
  opacity: 0.62;
  animation-duration: 1.8s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(185, 255, 95, 0.18);
}

.mobile-header-cta {
  display: none;
}

.menu-toggle {
  display: none;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0.7rem 1.8rem rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
  width: 2.7rem;
  height: 2.7rem;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0.8rem 2rem rgba(0, 0, 0, 0.3),
    0 0 1.4rem rgba(255, 255, 255, 0.1);
}

.menu-toggle-inner {
  position: relative;
  width: 1.1rem;
  height: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.menu-toggle-inner span {
  display: block;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, width 0.4s ease;
  transform-origin: center;
}

.menu-toggle-inner span:nth-child(1) {
  width: 100%;
  align-self: flex-start;
}

.menu-toggle-inner span:nth-child(2) {
  width: 60%;
  align-self: flex-start;
}

.menu-toggle-inner span:nth-child(3) {
  width: 30%;
  align-self: flex-start;
}

.menu-toggle.is-open .menu-toggle-inner span:nth-child(1) {
  width: 0.55rem;
  transform: translateY(0.285rem) rotate(-35deg);
  transform-origin: left center;
}

.menu-toggle.is-open .menu-toggle-inner span:nth-child(2) {
  width: 100%;
  align-self: flex-start;
}

.menu-toggle.is-open .menu-toggle-inner span:nth-child(3) {
  width: 0.55rem;
  transform: translateY(-0.285rem) rotate(35deg);
  transform-origin: left center;
}

body.light-mode .menu-toggle {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: #050505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 0.7rem 1.8rem rgba(0, 0, 0, 0.1);
}

.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8rem 0 8rem;
  overflow: hidden;
}

.hero.section-shell {
  width: 100%;
  max-width: none;
}

.hero-video {
  position: absolute;
  inset: 0 auto auto 50%;
  z-index: 0;
  width: 100vw;
  height: 100svh;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateX(-50%);
  opacity: 0;
  filter: none;
  transition: opacity 0.9s ease;
}

.hero-video.is-visible {
  opacity: 1;
}

body.light-mode .hero-video {
  opacity: 0.82;
  filter: brightness(0.92) contrast(1.03);
}

body.light-mode .hero-video.is-visible {
  opacity: 0.82;
}

.hero-dim {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22) 78%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 100%);
  opacity: var(--hero-dim, 0);
  transition: opacity 0.08s linear;
}

body.light-mode .hero-dim {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22) 78%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 4rem), var(--max));
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.25rem;
  transform: translateY(calc(var(--hero-smooth, 0) * 7rem)) scale(calc(1 - (var(--hero-smooth, 0) * 0.045)));
  opacity: calc(1 - (var(--hero-smooth, 0) * 0.72));
  filter: blur(calc(var(--hero-smooth, 0) * 5px));
  transition: opacity 0.08s linear, filter 0.08s linear, transform 0.08s linear;
}

.hero-kicker {
  margin: 0 0 1.15rem;
  color: #fff;
  font-size: clamp(0.92rem, 1.18vw, 1.16rem);
  font-weight: 900;
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0.1rem 0.22rem rgba(0, 0, 0, 0.95), 0 0.7rem 1.6rem rgba(0, 0, 0, 0.82), 0 0 1rem rgba(255, 255, 255, 0.12);
}

body.light-mode .hero-kicker {
  color: #fff;
  text-shadow: 0 0.12rem 0.35rem rgba(0, 0, 0, 0.86), 0 0.7rem 1.6rem rgba(0, 0, 0, 0.72), 0 0 1rem rgba(255, 255, 255, 0.1);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-weight: 900;
  text-wrap: balance;
}

h1 {
  max-width: 24ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
  text-transform: none;
  text-shadow: 0 0.035em 0.09em rgba(0, 0, 0, 0.96), 0 0.12em 0.32em rgba(0, 0, 0, 0.78), 0 0 2rem rgba(255, 255, 255, 0.08);
}

h1 span {
  display: block;
  letter-spacing: -0.045em;
  font-weight: 400;
  text-transform: none;
  background: linear-gradient(90deg, var(--text), var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.light-mode .hero h1 {
  color: #fff;
  text-shadow: 0 0.04em 0.12em rgba(0, 0, 0, 0.88), 0 0.12em 0.34em rgba(0, 0, 0, 0.68), 0 0 2rem rgba(255, 255, 255, 0.06);
}

body.light-mode .hero h1 span {
  background: linear-gradient(90deg, #fff, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15rem;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 1.7rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #ff4fc4 0%, #bf38ff 54%, #4bcfff 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 1rem 3rem rgba(0, 0, 0, 0.32),
    0 0 2.2rem rgba(255, 79, 196, 0.22);
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta span {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 3.2rem;
  text-transform: uppercase;
  transform: translateY(0.01em);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.light-mode .hero-cta {
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #ff4fc4 0%, #bf38ff 54%, #4bcfff 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 1rem 3rem rgba(0, 0, 0, 0.32),
    0 0 2.2rem rgba(255, 79, 196, 0.22);
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff4fc4, #4bcfff, #8b5cff, #ff4fc4);
  background-size: 260% 100%;
  opacity: 0.95;
  animation: heroCtaBorder 3.2s linear infinite;
}

.hero-cta::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -150%;
  height: 170%;
  z-index: -1;
  border-radius: 48% 52% 0 0 / 28% 34% 0 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.38), transparent 13%),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.18), transparent 11%),
    linear-gradient(115deg, #ff6ed3 0%, #d936a5 34%, #7d55ff 68%, #b94dff 100%);
  background-size: 140% 140%;
  opacity: 0;
  transform: translateY(24%) rotate(-3deg) scaleX(1.04);
  transition:
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    border-radius 0.95s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 1.1rem 3.2rem rgba(0, 0, 0, 0.36),
    0 0 3rem rgba(255, 79, 196, 0.32),
    0 0 2rem rgba(75, 207, 255, 0.2);
}

.hero-cta:hover::after {
  opacity: 1;
  transform: translateY(-88%) rotate(0deg) scaleX(1.02);
  border-radius: 58% 42% 0 0 / 22% 30% 0 0;
  animation: liquidShift 3.2s ease-in-out infinite alternate;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.038em;
  font-weight: 900;
  text-shadow: 0 0.08em 0.24em rgba(0, 0, 0, 0.48), 0 0 1.6rem rgba(255, 255, 255, 0.055);
}

h3 {
  font-size: clamp(1.5rem, 2.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 900;
  text-shadow: 0 0.08em 0.22em rgba(0, 0, 0, 0.42);
}

p,
li,
label,
input,
textarea {
  font-weight: 400;
  letter-spacing: 0.005em;
}

.logo-wall span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
  transform: translateY(calc(var(--hero-smooth, 0) * 5rem));
  opacity: calc(1 - (var(--hero-smooth, 0) * 0.82));
}

.hero-orb-one {
  right: 10%;
  top: 23%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, var(--pink), transparent 66%);
}

.hero-orb-two {
  left: 48%;
  top: 18%;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, var(--cyan), transparent 66%);
  animation-delay: -3s;
}

.about,
.contact {
  position: relative;
  padding: 7rem 0;
}

.about,
.contact {
  display: block;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}

@media (min-width: 1100px) {
  .about.section-shell {
    width: min(calc(100% - 2rem), calc(var(--max) * 1.35));
  }
  .about-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 921px) {
  .about-card {
    aspect-ratio: 9 / 18;
  }
}

.about-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --card-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1.4rem 3.8rem rgba(0, 0, 0, 0.22);
  --card-glow: ;
  box-shadow: var(--card-shadow), var(--card-glow);
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  aspect-ratio: 9 / 16;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  padding: 1px;
  background: linear-gradient(140deg, rgba(80, 255, 118, 0.3), transparent 34%, rgba(255, 78, 190, 0.25), transparent 72%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-card-tint-red {
  --card-glow: 0 0 2.6rem rgba(255,60,60,0.13);
}

.about-card-tint-red::after {
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(255,60,60,0.1) 58%, rgba(255,60,60,0.18) 100%),
    linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.85) 100%);
}

.about-card-tint-green {
  --card-glow: 0 0 2.6rem rgba(80,220,60,0.13);
}

.about-card-tint-green::after {
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(80,220,60,0.1) 58%, rgba(80,220,60,0.18) 100%),
    linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.85) 100%);
}

.about-card-tint-yellow {
  --card-glow: 0 0 2.6rem rgba(255,220,50,0.13);
}

.about-card-tint-yellow::after {
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(255,220,50,0.1) 58%, rgba(255,220,50,0.18) 100%),
    linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.85) 100%);
}

.about-card-tint-purple {
  --card-glow: 0 0 2.6rem rgba(141,104,255,0.13);
}

.about-card-tint-purple::after {
  background:
    radial-gradient(ellipse at center, transparent 22%, rgba(141,104,255,0.1) 58%, rgba(141,104,255,0.18) 100%),
    linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.85) 100%);
}

.about-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.28);
  --card-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 2rem 5rem rgba(0, 0, 0, 0.34), 0 0 3rem rgba(80, 255, 118, 0.12);
  box-shadow: var(--card-shadow), var(--card-glow);
}

.about-card:hover .about-card-body {
  background: rgba(255, 255, 255, 0.09);
}

.about-card-body {
  position: relative;
  z-index: 3;
  padding: 1.8rem 1.8rem 2.2rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 var(--radius) var(--radius);
}

.about-card-body h3 {
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.about-card-featured .about-card-body h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.about-card-body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.7;
  letter-spacing: 0.025em;
  font-weight: 400;
}

.about-scroll-hint {
  display: none;
}

.stats {
  padding: 2rem 0 5rem;
}

@media (min-width: 921px) {
  .stats.section-shell {
    width: min(calc(100% - 2rem), calc(var(--max) * 1.8));
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.stats-card {
  aspect-ratio: 16 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.25);
}

.stats-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.4vw, 3rem);
  background:
    radial-gradient(circle at 10% 85%, rgba(37, 211, 102, 0.1), transparent 20rem),
    radial-gradient(circle at 90% 10%, rgba(225, 48, 108, 0.12), transparent 22rem),
    radial-gradient(circle at 50% 55%, rgba(75, 207, 255, 0.07), transparent 30rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  background-size: 180% 180%, 160% 160%, 220% 220%, 100% 100%;
  background-position: 10% 95%, 92% 8%, 50% 55%, 0% 0%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1.4rem 3.8rem rgba(0, 0, 0, 0.22);
  animation: contactPanelAura 9s ease-in-out infinite;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  padding: 1px;
  background: linear-gradient(120deg, rgba(37, 211, 102, 0.38), transparent 28%, rgba(225, 48, 108, 0.4), transparent 72%);
  opacity: 0.52;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.contact-glow {
  position: absolute;
  left: 50%;
  top: 20%;
  z-index: 0;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12), rgba(225, 48, 108, 0.1), transparent 52%);
  filter: blur(50px);
  opacity: 0.38;
  animation: contactGlowDrift 7s ease-in-out infinite;
  transform: translateX(-50%);
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: min(100%, 62rem);
  margin-inline: auto;
}






.about::before,
.services::before,
.projects::before,
.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(calc(100vw - 2rem), var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-50%);
}

.about::before {
  width: 100vw;
  height: 3px;
  background: linear-gradient(90deg, transparent 4%, rgba(255, 104, 204, 0.78), rgba(75, 207, 255, 0.68), transparent 96%);
  box-shadow: 0 0 1.2rem rgba(255, 104, 204, 0.22), 0 0 1.4rem rgba(75, 207, 255, 0.16);
}

.contact-copy p {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.72;
  text-shadow: 0 0.08em 0.18em rgba(0, 0, 0, 0.38);
}

.services,
.projects,
.clients {
  position: relative;
  padding: 6rem 0;
}

.services,
.projects {
  margin-top: 1rem;
}

.projects.section-shell {
  width: 100%;
  max-width: none;
  padding-inline: 1rem;
}

.projects .section-heading-centered {
  margin-bottom: 2rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 3.4rem;
}

.section-heading-centered::before,
.section-heading-centered::after {
  content: "";
  flex: 1;
  max-width: 18rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24));
}

.section-heading-centered::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent);
}

.section-heading-centered h2 {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 1.4rem rgba(255, 255, 255, 0.04);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-top: 0.6rem;
  margin-bottom: 3rem;
}

.section-heading-centered h2::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent, var(--pink), var(--cyan), var(--violet), transparent, var(--pink), transparent);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: headingBorderRotate 4s linear infinite;
  pointer-events: none;
}

.section-heading-centered h2::after {
  content: "";
  position: absolute;
  inset: -0.6rem;
  z-index: -2;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(8px);
  opacity: 0.6;
  pointer-events: none;
}

@keyframes headingBorderRotate {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

body.light-mode .section-heading-centered::before,
body.light-mode .section-heading-centered::after {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18));
}

body.light-mode .section-heading-centered::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent);
}

body.light-mode .section-heading-centered h2 {
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 1.4rem rgba(0, 0, 0, 0.04);
}

body.light-mode .section-heading-centered h2::after {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.06), transparent 60%);
}

body.light-mode .about-card-body {
  background: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.25);
}

body.light-mode .about-card-body p {
  color: rgba(0, 0, 0, 0.8);
}

.services-list {
  display: none;
}

.services-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-tab {
  --tab-rgb: 255, 104, 204;
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 12rem;
  gap: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem 1.2rem;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 1rem 2.6rem rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-tab[data-service="video"] { --tab-rgb: 80, 255, 118; }
.service-tab[data-service="asesoria"] { --tab-rgb: 255, 218, 65; }
.service-tab[data-service="branding"] { --tab-rgb: 156, 96, 255; }
.service-tab[data-service="ads"] { --tab-rgb: 255, 63, 86; }
.service-tab[data-service="motion"] { --tab-rgb: 255, 78, 190; }
.service-tab[data-service="community"] { --tab-rgb: 255, 139, 45; }

.service-tab::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--tab-rgb), 0.42) 34%, rgba(255, 255, 255, 0.16) 52%, transparent 72%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 0.35s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  width: 1.8rem;
  height: 2px;
  border-radius: 999px;
  background: rgb(var(--tab-rgb));
  box-shadow: 0 0 1rem rgba(var(--tab-rgb), 0.58);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.35);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-tab svg {
  position: relative;
  z-index: 1;
  width: 2.9rem;
  height: 2.9rem;
  fill: currentColor;
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.service-tab span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 0.6rem;
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.service-tab:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--tab-rgb), 0.62);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--tab-rgb), 0.16), transparent 9rem),
    rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 1.1rem 2.7rem rgba(0, 0, 0, 0.2), 0 0 1.8rem rgba(var(--tab-rgb), 0.18);
}

.service-tab.is-active {
    transform: translateY(-2px);
    border-color: rgba(var(--tab-rgb), 0.86);
    background:
      radial-gradient(circle at 50% -10%, rgba(var(--tab-rgb), 0.22), transparent 8rem),
      rgba(255, 255, 255, 0.065);
    color: #fff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(var(--tab-rgb), 0.18),
      0 1rem 2.8rem rgba(0, 0, 0, 0.2),
      0 0 2.2rem rgba(var(--tab-rgb), 0.22);
    animation: serviceTabGlow 3s ease-in-out infinite;
  }

.service-tab:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.service-tab.is-active::before {
  opacity: 0;
  transform: translateX(-70%);
}

.service-tab:hover::after,
.service-tab.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.service-tab:hover svg {
  transform: translateY(-0.1rem) scale(1.025);
  filter: drop-shadow(0 0 0.65rem rgba(255, 255, 255, 0.11));
}

.service-tab.is-active svg {
  transform: translateY(-0.06rem);
  filter: drop-shadow(0 0 0.8rem rgba(255, 255, 255, 0.13));
}

.service-detail {
  --detail-rgb: 80, 255, 118;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(1.55rem, 3.2vw, 2.65rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(var(--detail-rgb), 0.26), transparent 19rem),
    radial-gradient(circle at 88% 0%, rgba(var(--detail-rgb), 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028));
  background-size: 135% 135%, 125% 125%, 100% 100%;
  background-position: 0% 0%, 100% 0%, 0% 0%;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1.6rem 4rem rgba(0, 0, 0, 0.26),
    0 0 2.5rem rgba(var(--detail-rgb), 0.13);
  animation: servicePanelAura 9s ease-in-out infinite;
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-detail[data-accent="video"] { --detail-rgb: 80, 255, 118; }
.service-detail[data-accent="asesoria"] { --detail-rgb: 255, 218, 65; }
.service-detail[data-accent="branding"] { --detail-rgb: 156, 96, 255; }
.service-detail[data-accent="ads"] { --detail-rgb: 255, 63, 86; }
.service-detail[data-accent="motion"] { --detail-rgb: 255, 78, 190; }
.service-detail[data-accent="community"] { --detail-rgb: 255, 139, 45; }

.service-detail::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  padding: 1px;
  background: linear-gradient(120deg, rgba(var(--detail-rgb), 0.95), rgba(var(--detail-rgb), 0.44), transparent 58%);
  opacity: 0.78;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.service-detail::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: -6rem;
  width: clamp(18rem, 38vw, 30rem);
  height: clamp(18rem, 38vw, 30rem);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 34%, rgba(var(--detail-rgb), 0.36), transparent 46%),
    radial-gradient(circle at 74% 68%, rgba(var(--detail-rgb), 0.18), transparent 42%),
    conic-gradient(from 90deg, transparent, rgba(var(--detail-rgb), 0.15), transparent 42%);
  filter: blur(34px);
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: serviceColorDrift 6.5s linear infinite;
}

.service-detail.is-changing {
  opacity: 0;
  transform: translateY(0.8rem) scale(0.985);
}

.service-detail:not(.is-changing) .service-detail-copy,
.service-detail:not(.is-changing) .service-benefits,
.service-detail:not(.is-changing) .service-panel-cta {
  animation: serviceDetailIn 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-detail:not(.is-changing) .service-benefits {
  animation-delay: 0.08s;
}

.service-detail:not(.is-changing) .service-panel-cta {
  animation-delay: 0.14s;
}

@keyframes serviceDetailIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes servicePanelAura {
  0%,
  100% {
    background-position: 0% 0%, 100% 0%, 0% 0%;
  }

  45% {
    background-position: 18% 22%, 88% 18%, 0% 0%;
  }

  72% {
    background-position: 6% 34%, 96% 30%, 0% 0%;
  }
}

@keyframes serviceColorDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  30% {
    transform: translate3d(-4rem, 2.4rem, 0) rotate(95deg) scale(1.04);
  }

  65% {
    transform: translate3d(-1.3rem, 4.2rem, 0) rotate(210deg) scale(0.96);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(360deg) scale(1);
  }
}

@keyframes contactPanelAura {
  0%,
  100% {
    background-position: 10% 95%, 92% 8%, 50% 55%, 0% 0%;
  }

  20% {
    background-position: 26% 82%, 76% 22%, 42% 60%, 0% 0%;
  }

  40% {
    background-position: 14% 68%, 86% 34%, 56% 48%, 0% 0%;
  }

  60% {
    background-position: 32% 88%, 68% 14%, 44% 64%, 0% 0%;
  }

  80% {
    background-position: 8% 76%, 88% 28%, 52% 42%, 0% 0%;
  }
}

@keyframes contactGlowDrift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateX(-38%) translateY(-2.4rem) scale(1.08);
    opacity: 0.48;
  }

  55% {
    transform: translateX(-62%) translateY(1.8rem) scale(0.92);
    opacity: 0.38;
  }

  80% {
    transform: translateX(-44%) translateY(-0.6rem) scale(1.04);
    opacity: 0.44;
  }
}

.service-detail-copy,
.service-benefits,
.service-panel-cta {
  position: relative;
  z-index: 1;
}

.service-detail-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail h3 {
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  margin-bottom: 0.9rem;
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.service-detail-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
}

.service-benefits {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-benefits li {
  position: relative;
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0.9rem 1rem 0.9rem 2.9rem;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-benefits li::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: rgb(var(--detail-rgb));
  box-shadow: 0 0 1.2rem rgba(var(--detail-rgb), 0.72);
}

.service-panel-cta {
  justify-self: end;
  margin-top: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column: span 3;
  gap: 1.5rem;
  align-items: stretch;
  min-height: 24rem;
  border: 1px solid rgba(var(--service-rgb), 0.28);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--service-rgb), 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025) 42%, rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1.4rem 4rem rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.service-card:nth-child(1) { --service-rgb: 142, 255, 92; }
.service-card:nth-child(2) { --service-rgb: 75, 207, 255; }
.service-card:nth-child(3) { --service-rgb: 255, 219, 87; }
.service-card:nth-child(4) { --service-rgb: 159, 104, 255; }
.service-card:nth-child(5) { --service-rgb: 255, 76, 99; }
.service-card:nth-child(6) { --service-rgb: 255, 104, 204; }

.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 28%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--service-rgb), 0.72);
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--service-rgb), 0.28), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.014));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 1.6rem 4.4rem rgba(0, 0, 0, 0.28),
    0 0 2.6rem rgba(var(--service-rgb), 0.12);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p,
.project-card p {
  max-width: 58rem;
  color: rgba(247, 243, 255, 0.78);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 1.86;
  text-shadow: 0 0.08em 0.18em rgba(0, 0, 0, 0.34);
}

.service-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  font-weight: 400;
  letter-spacing: 0.018em;
  line-height: 1.92;
}




.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.person-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(16px);
}

.project-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 1rem 2.6rem rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-video:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1.2rem 3.2rem rgba(0, 0, 0, 0.24);
}

.project-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  margin-bottom: 1rem;
  padding: 1.2rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.48);
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.person-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 60% 25%, rgba(255, 255, 255, 0.18), transparent 32%),
    var(--card);
}

.person-card span {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #050507;
  font-weight: 900;
}

.person-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.45rem;
}

.person-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.logo-wall span {
  display: grid;
  min-height: 8rem;
  place-items: center;
  border-radius: 24px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: contactCardBreathe 5.5s ease-in-out infinite;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 70% 10%, var(--contact-glow), transparent 14rem),
    linear-gradient(120deg, transparent 0%, var(--contact-sweep) 44%, transparent 70%);
  opacity: 0.55;
  transform: translateX(-56%);
  animation: contactSweep 6s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-card {
  --contact-glow: rgba(37, 211, 102, 0.24);
  --contact-sweep: rgba(37, 211, 102, 0.24);
}

.instagram-card {
  --contact-glow: rgba(225, 48, 108, 0.28);
  --contact-sweep: rgba(225, 48, 108, 0.22);
}

.instagram-card {
  animation-delay: -2.2s;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-icon {
  position: relative;
  left: auto;
  top: auto;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  animation: contactIconFloat 4.8s ease-in-out infinite, contactIconGlow 3s ease-in-out infinite;
}

.whatsapp-card .contact-icon {
  --icon-glow: rgba(37, 211, 102, 0.3);
}

.instagram-card .contact-icon {
  --icon-glow: rgba(225, 48, 108, 0.35);
}

@keyframes contactIconGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0 0 1.4rem var(--icon-glow);
  }
}

.instagram-card .contact-icon {
  animation-delay: -1.8s;
}

.contact-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #fff;
}

.contact-card small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-inline: -0.07em;
}

.contact-card strong {
  font-family: "Neue Montreal", Arial, system-ui, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-align: center;
}

.contact-card p {
  max-width: 25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--contact-border);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.28), 0 0 2.2rem var(--contact-glow);
}

.whatsapp-card:hover {
  --contact-border: rgba(37, 211, 102, 0.5);
}

.instagram-card:hover {
  --contact-border: rgba(225, 48, 108, 0.55);
}

.instagram-card:hover::before {
  background:
    radial-gradient(circle at 70% 10%, rgba(225, 48, 108, 0.26), transparent 14rem),
    linear-gradient(120deg, transparent 0%, rgba(245, 96, 64, 0.18) 34%, rgba(225, 48, 108, 0.24) 46%, rgba(131, 58, 180, 0.2) 58%, transparent 76%);
}

.contact-card:hover::before {
  opacity: 1;
  transform: translateX(44%);
}

@keyframes contactCardBreathe {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 1.4rem rgba(255, 255, 255, 0.015);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 1rem 3.4rem rgba(0, 0, 0, 0.22), 0 0 3rem var(--contact-glow);
  }
}

@keyframes serviceTabGlow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(var(--tab-rgb), 0.18),
      0 1rem 2.8rem rgba(0, 0, 0, 0.2),
      0 0 1.8rem rgba(var(--tab-rgb), 0.18);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 0 0 1px rgba(var(--tab-rgb), 0.28),
      0 1rem 3.2rem rgba(0, 0, 0, 0.22),
      0 0 3.2rem rgba(var(--tab-rgb), 0.32);
  }
}

@keyframes contactIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.25rem); }
}

@keyframes contactSweep {
  0%, 100% { transform: translateX(-56%); }
  50% { transform: translateX(-44%); }
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.4rem 0 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 104, 204, 0.38), rgba(75, 207, 255, 0.32), transparent);
  transform: translateX(-50%);
}

.site-footer::after {
  display: none;
}

.site-footer p {
  color: #fff;
}

body.light-mode .site-footer {
  color: rgba(0, 0, 0, 0.74);
}

body.light-mode .site-footer p {
  color: rgba(0, 0, 0, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }
.delay-5 { transition-delay: 0.52s; }
.delay-6 { transition-delay: 0.62s; }

@keyframes loaderLogo {
  from { opacity: 0.72; transform: translateY(0) scale(0.98); }
  to { opacity: 1; transform: translateY(-0.25rem) scale(1); }
}

@keyframes splitLeft {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    filter: blur(0px);
  }
  25% {
    filter: blur(0px);
  }
  100% {
    transform: translateY(10vh) rotate(2.5deg);
    opacity: 0;
    filter: blur(3px);
  }
}

@keyframes splitRight {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    filter: blur(0px);
  }
  25% {
    filter: blur(0px);
  }
  100% {
    transform: translateY(-10vh) rotate(-2.5deg);
    opacity: 0;
    filter: blur(3px);
  }
}

@keyframes cutLineFlash {
  0% {
    opacity: 0;
    transform: scaleY(0) scaleX(2);
    box-shadow:
      0 0 20px rgba(255,255,255,0.6),
      0 0 50px rgba(255,255,255,0.25),
      0 0 80px rgba(200,170,255,0.12);
  }
  4% {
    opacity: 0;
    transform: scaleY(0.05) scaleX(1);
  }
  7% {
    opacity: 1;
    transform: scaleY(0.15) scaleX(1.4);
    box-shadow:
      0 0 50px rgba(255,255,255,0.95),
      0 0 90px rgba(255,255,255,0.6),
      0 0 130px rgba(200,170,255,0.35);
  }
  12% {
    transform: scaleY(1) scaleX(1);
    box-shadow:
      0 0 50px rgba(255,255,255,0.95),
      0 0 90px rgba(255,255,255,0.6),
      0 0 130px rgba(200,170,255,0.35);
  }
  20% {
    box-shadow:
      0 0 20px rgba(255,255,255,0.6),
      0 0 50px rgba(255,255,255,0.25),
      0 0 80px rgba(200,170,255,0.12);
  }
  100% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes cutFlashBang {
  0% {
    opacity: 0;
    transform: scaleY(0.3) scaleX(0.5);
  }
  5% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  15% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scaleY(2) scaleX(0.3);
  }
}

@keyframes loaderBar {
  from { transform: translateX(-105%); }
  to { transform: translateX(230%); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2rem, -1.5rem, 0) scale(1.08); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes ctaAura {
  to { background-position: 220% 50%; }
}

@keyframes ctaSweep {
  0%, 18% { transform: translateX(-72%); opacity: 0.18; }
  48% { opacity: 0.46; }
  82%, 100% { transform: translateX(72%); opacity: 0.2; }
}

@keyframes heroCtaGlow {
  to { transform: rotate(360deg); }
}

@keyframes heroCtaBorder {
  to { background-position: 260% 50%; }
}

@keyframes liquidShift {
  from {
    background-position: 0% 45%;
    border-radius: 58% 42% 0 0 / 22% 30% 0 0;
  }
  to {
    background-position: 100% 55%;
    border-radius: 42% 58% 0 0 / 30% 22% 0 0;
  }
}

@keyframes lightLeakDrift {
  from { transform: translate3d(-2vw, -1vh, 0) scale(1); }
  to { transform: translate3d(2vw, 2vh, 0) scale(1.04); }
}

@keyframes lightLeakDriftPink {
  0% { transform: translate3d(-5vw, -2vh, 0) scale(1) rotate(-1deg); }
  45% { transform: translate3d(3vw, 3vh, 0) scale(1.06) rotate(1deg); }
  100% { transform: translate3d(7vw, -1vh, 0) scale(1.1) rotate(-0.5deg); }
}

@keyframes lightLeakDriftBlue {
  0% { transform: translate3d(5vw, 2vh, 0) scale(1.02) rotate(1deg); }
  50% { transform: translate3d(-3vw, -3vh, 0) scale(1.08) rotate(-1deg); }
  100% { transform: translate3d(-7vw, 1vh, 0) scale(1.12) rotate(0.5deg); }
}

@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.7; width: 26%; }
  50% { opacity: 1; width: 34%; }
}

@keyframes mobileCtaGlow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0.5rem 1.4rem rgba(0, 0, 0, 0.28), 0 0 1.2rem rgba(75, 207, 255, 0.12), 0 0 0.6rem rgba(255, 79, 196, 0); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0.5rem 1.4rem rgba(0, 0, 0, 0.28), 0 0 2rem rgba(75, 207, 255, 0.2), 0 0 1rem rgba(255, 79, 196, 0.1); }
}

@keyframes mobileCtaBorder {
  0% { background-position: 0% 50%; }
  100% { background-position: 260% 50%; }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav,
  .header-actions,
  .header-cta {
    display: none;
  }

  .mobile-header-cta {
    display: inline-flex;
    grid-column: 2;
    justify-self: center;
    position: relative;
    font-family: "Neue Montreal", Arial, system-ui, sans-serif;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
      linear-gradient(135deg, #4bcfff 0%, #8d68ff 54%, #ff4fc4 100%);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    isolation: isolate;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0.5rem 1.4rem rgba(0, 0, 0, 0.28),
      0 0 1.2rem rgba(75, 207, 255, 0.12);
    animation: mobileCtaGlow 3s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
  }

  .mobile-header-cta::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, #4bcfff, #ff4fc4, #8d68ff, #4bcfff);
    background-size: 260% 100%;
    opacity: 0.5;
    animation: mobileCtaBorder 3.6s linear infinite;
  }

  .mobile-header-cta:hover {
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.25),
      0 0.6rem 1.8rem rgba(0, 0, 0, 0.34),
      0 0 1.8rem rgba(75, 207, 255, 0.2),
      0 0 1rem rgba(255, 79, 196, 0.12);
  }

  body.light-mode .mobile-header-cta {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 36%),
      linear-gradient(135deg, #4bcfff 0%, #8d68ff 54%, #ff4fc4 100%);
    color: #fff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.25),
      0 0.5rem 1.4rem rgba(0, 0, 0, 0.2),
      0 0 1.2rem rgba(75, 207, 255, 0.12);
  }

  .site-header.is-open {
    grid-template-columns: auto auto;
  }

  .site-header.is-open .mobile-header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0.4rem;
    margin-top: 0.8rem;
    padding: 0.7rem;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.78);
  }

  .site-header.is-open .header-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.7rem;
  }

  .site-header.is-open .site-nav a {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.95rem 0.8rem;
  }

  .about,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .team-grid,
  .logo-wall {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-column: span 6;
  }

  .service-card:nth-child(5) {
    grid-column: span 6;
  }

  .service-card:nth-child(6) {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  body {
    background: #07070b;
  }

  body.light-mode {
    background: #f4f0e8;
  }

  .hero {
    min-height: 78svh;
    padding: 7rem 0 6rem;
  }

  .loader-video {
    opacity: 0.7;
    filter: brightness(0.8) contrast(1.1) saturate(0.8) blur(0.6px);
  }

  .logo-split {
    width: min(9rem, 52vw);
  }

  .hero {
    background: #0a0a14;
  }

  .hero-video {
    height: 78svh;
  }

  .hero-dim {
    --hero-dim: 0.18;
    background:
      radial-gradient(circle at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12) 78%, rgba(0, 0, 0, 0.22) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 100%);
  }

  .hero-kicker {
    text-shadow: 0 0.12rem 0.35rem rgba(0, 0, 0, 0.95), 0 0.5rem 1.2rem rgba(0, 0, 0, 0.82);
  }

  .hero-copy {
    text-shadow: 0 0.08em 0.15em rgba(0, 0, 0, 0.6);
  }

  .site-header {
    width: 100%;
    left: 0;
    transform: none;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0;
    top: 0;
    padding: 0.5rem 0.5rem 0.5rem 0;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-header::after {
    height: 3.2rem;
    left: 0;
    top: 0;
    transform: none;
  }

  .site-header.is-revealed {
    transform: none;
  }

  .site-header.is-scrolled {
    top: 0.2rem;
  }

  .site-header.is-scrolled::after {
    height: 3rem;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.04rem;
    padding-left: 0.5rem;
    justify-content: center;
  }

  .brand-logo {
    width: 5.5rem;
    margin-left: 0;
    display: block;
    line-height: 0;
    filter: brightness(1.3) drop-shadow(0 0 2.6rem rgba(255, 255, 255, 0.55)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3));
  }

  .brand-byline {
    position: relative;
    display: block;
    width: 5.5rem;
    text-align: center;
    margin: 0;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    line-height: 1;
    transform: none;
    text-shadow: 0 0 1.6rem rgba(255, 255, 255, 0.6), 0 0.5rem 1.4rem rgba(0, 0, 0, 0.75);
  }

  .brand-byline::before {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 2.2rem;
    height: 2.2rem;
    grid-column: auto;
  }

  .mobile-header-cta {
    grid-column: 2;
    justify-self: start;
    margin-right: 0.3rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.5rem;
  }

  .mobile-nav {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .social-links a {
    width: 2rem;
    height: 2rem;
  }

  .social-links svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .theme-toggle {
    width: 2rem;
    height: 2rem;
  }

  .theme-toggle svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .header-cta {
    padding: 0.6rem 1rem;
    font-size: 0.55rem;
  }

  h1 {
    max-width: 18ch;
    font-size: clamp(1.6rem, 7vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-cta {
    min-width: 0;
    margin-top: 2.2rem;
    padding: 0 1rem;
  }

  .hero-cta span {
    font-size: 0.65rem;
    line-height: 2.6rem;
  }

  .about,
  .contact {
    gap: 1.5rem;
    padding: 3.5rem 0;
  }

  .about-cards {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem;
  }

  .about-cards::-webkit-scrollbar {
    display: none;
  }

  .about-card {
    flex: 0 0 calc(100% - 1rem);
    scroll-snap-align: start;
    border-radius: 18px;
  }

  .about-card::after {
    border-radius: 18px;
  }

  .about-card-body {
    padding: 1.1rem 1.2rem 1.5rem;
    gap: 0.6rem;
    border-radius: 0 0 18px 18px;
  }

  .about-card-body h3 {
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .about-card-featured .about-card-body h3 {
    font-size: clamp(1.1rem, 5.5vw, 1.45rem);
  }

  .about-card-body p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .about-scroll-hint {
    display: block;
    height: 4px;
    margin: 0.5rem auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.04);
    width: min(40%, 8rem);
  }

  .about-scroll-hint::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), #fff, rgba(255, 255, 255, 0.7));
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.25),
      0 0 28px rgba(255, 255, 255, 0.12);
    width: var(--about-thumb-w, 30%);
    left: var(--about-thumb-l, 0%);
    will-change: left, width;
  }

  .stats {
    padding: 1rem 0 3rem;
  }

  .stats-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem;
  }

  .stats-grid::-webkit-scrollbar {
    display: none;
  }

  .stats-card {
    flex: 0 0 calc(100% - 1rem);
    scroll-snap-align: start;
    aspect-ratio: 16 / 5;
    border-radius: 18px;
  }

  .stats-card img {
    object-fit: contain;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-menu {
    display: flex;
    gap: 0.6rem;
    width: calc(100% + 2rem);
    margin-inline: -1rem;
    margin-bottom: 0;
    padding: 0 1rem 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-menu::-webkit-scrollbar {
    display: none;
  }

  .services-scroll-hint {
    display: block;
    height: 5px;
    margin: 0.15rem 1rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.04);
  }

  .services-scroll-hint::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), #fff, rgba(255, 255, 255, 0.7));
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.25),
      0 0 28px rgba(255, 255, 255, 0.12);
    width: var(--thumb-w, 30%);
    left: var(--thumb-l, 0%);
    will-change: left, width;
  }

  .projects-scroll-hint {
    display: block;
    height: 4px;
    margin: 0.5rem auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.04);
    width: min(40%, 8rem);
  }

  .projects-scroll-hint::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), #fff, rgba(255, 255, 255, 0.7));
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.25),
      0 0 28px rgba(255, 255, 255, 0.12);
    width: var(--project-thumb-w, 30%);
    left: var(--project-thumb-l, 0%);
    will-change: left, width;
  }

  .stats-scroll-hint {
    display: block;
    height: 4px;
    margin: 0.5rem auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.04);
    width: min(40%, 8rem);
  }

  .stats-scroll-hint::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), #fff, rgba(255, 255, 255, 0.7));
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.25),
      0 0 28px rgba(255, 255, 255, 0.12);
    width: var(--stats-thumb-w, 30%);
    left: var(--stats-thumb-l, 0%);
    will-change: left, width;
  }

  .service-tab {
    flex: 0 0 8rem;
    min-height: 7rem;
    scroll-snap-align: start;
    padding: 1rem 0.6rem 0.8rem;
    gap: 0.6rem;
    border-radius: 18px;
  }

  .service-tab.is-active {
    transform: none;
  }

  .service-tab:hover {
    transform: none;
  }

  .service-tab svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .service-tab span {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
    min-height: 2.4rem;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem;
  }

  .service-detail-kicker {
    margin-bottom: 0;
    font-size: 0.6rem;
    padding: 0.35rem 0.5rem;
  }

  .service-detail h3 {
    max-width: 12ch;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .service-detail-copy p:last-child {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .service-benefits {
    gap: 0.4rem;
  }

  .service-benefits li {
    min-height: auto;
    border-radius: 14px;
    padding: 0.55rem 0.7rem 0.55rem 2rem;
    font-size: 0.78rem;
  }

  .service-benefits li::before {
    left: 0.7rem;
    width: 0.45rem;
    height: 0.45rem;
  }

  .service-detail .service-panel-cta {
    min-width: 0;
    padding: 0 1rem;
    justify-self: stretch;
    margin-top: 0.2rem;
  }

  .service-detail .service-panel-cta span {
    font-size: 0.6rem;
    line-height: 2.4rem;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .contact-card {
    min-height: 12rem;
    padding: 1rem;
  }

  .contact-card strong {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .contact-card p {
    font-size: 0.82rem;
  }

  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .service-card,
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: 1;
    min-height: auto;
  }

  .project-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem;
    min-height: 0;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-video {
    flex: 0 0 calc(100% - 1rem);
    scroll-snap-align: start;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.4rem 0 2rem;
    gap: 0.6rem;
  }

  .site-footer p {
    font-size: 0.7rem;
    max-width: 22rem;
  }

  .site-footer .brand {
    margin-bottom: 0;
  }

  .site-footer .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }

  .site-footer .brand-logo {
    width: 6rem;
  }

  .site-footer .brand-byline {
    width: auto;
    font-size: 0.55rem;
    text-align: center;
    transform: none;
  }

  .site-footer .brand-byline::before {
    display: none;
  }

  .ambient-lights {
    top: 0;
    bottom: 0;
    height: 100%;
  }

  .ambient-lights::before,
  .ambient-lights::after {
    opacity: 0.35;
  }

  .services {
    padding: 0 0 1.5rem;
    margin-top: 0;
  }
  .services::before {
    display: none;
  }
  .projects {
    padding: 1.5rem 0 3.5rem;
    margin-top: 0;
  }

  .section-heading-centered {
    margin-bottom: 2rem;
  }

  .section-heading-centered::before,
  .section-heading-centered::after {
    display: none;
  }

  .section-heading-centered h2 {
    padding: 0.5rem 0.85rem;
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  
  .contact-panel,
  .service-detail {
    background:
      radial-gradient(circle at 14% 10%, rgba(80, 255, 118, 0.18), transparent 16rem),
      radial-gradient(circle at 82% 20%, rgba(255, 78, 190, 0.16), transparent 18rem),
      linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  }

  .contact-panel {
    background:
      radial-gradient(circle at 10% 85%, rgba(37, 211, 102, 0.12), transparent 18rem),
      radial-gradient(circle at 90% 10%, rgba(225, 48, 108, 0.14), transparent 20rem),
      radial-gradient(circle at 50% 55%, rgba(75, 207, 255, 0.08), transparent 26rem),
      linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  }

  .service-detail {
    background:
      radial-gradient(circle at 8% 10%, rgba(var(--detail-rgb), 0.35), transparent 15rem),
      radial-gradient(circle at 88% 0%, rgba(var(--detail-rgb), 0.22), transparent 15rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  }

  .contact-card p,
  .service-detail-copy p:last-child,
  .service-benefits li {
    color: rgba(255, 255, 255, 0.76);
  }

  .contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  }

  .project-video {
    background: rgba(0, 0, 0, 0.45);
  }
}

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