/**
 * Main Stylesheet
 * Modern UI Redesign - White Lab
 * 
 * This file imports the core design system modules and contains
 * component-specific styles.
 */

/* ========================================
   Core Design System
   ======================================== */

@import url('./core/variables.css');
@import url('./core/reset.css');
@import url('./core/typography.css');
@import url('./core/utilities.css');

/* ========================================
   Effects
   ======================================== */

@import url('./effects/animations.css');
@import url('./effects/transitions.css');
@import url('./effects/backgrounds.css');

/* ========================================
   Component Styles
   ======================================== */

@import url('./components/header.css');
@import url('./components/hero.css');
@import url('./components/cards.css');
@import url('./components/gallery.css');
@import url('./components/forms.css');
@import url('./components/footer.css');

main {
  padding-bottom: 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 15, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled {
  background: rgba(6, 10, 15, 0.92);
  border-bottom-color: rgba(55, 208, 190, 0.25);
}

.nav-wrap {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  position: relative;
  width: 11.8rem;
  height: 3.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
  box-shadow: none;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -42% -18%;
  background:
    radial-gradient(circle at 28% 46%, rgba(55, 208, 190, 0.26), transparent 56%),
    radial-gradient(circle at 72% 56%, rgba(116, 229, 255, 0.22), transparent 60%);
  filter: blur(16px);
  opacity: 0.82;
  animation: brandLogoAura 5.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.brand-mark::after {
  display: none;
}

.brand-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 9px rgba(116, 229, 255, 0.22));
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.018);
  filter: saturate(1.08);
}

.brand:hover .brand-mark img {
  transform: scale(1.026);
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 13px rgba(116, 229, 255, 0.4));
}

.brand:hover .brand-mark::before {
  opacity: 1;
}

@keyframes brandLogoAura {
  0% {
    transform: scale(0.96);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.96;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.68;
  }
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.26rem;
  padding: 0.24rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-links a {
  color: #a9bfd2;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.nav-links a.is-active {
  color: #0b1f1d;
  background: linear-gradient(105deg, rgba(55, 208, 190, 0.94), rgba(116, 229, 255, 0.88));
  box-shadow: 0 8px 18px rgba(55, 208, 190, 0.26);
}

.nav-links a::after {
  display: none;
}

.call-btn {
  border: 1px solid rgba(55, 208, 190, 0.42);
  border-radius: 999px;
  padding: 0.55rem 0.86rem;
  text-decoration: none;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
  color: #c3fff8;
  background: linear-gradient(120deg, rgba(55, 208, 190, 0.24), rgba(55, 208, 190, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.call-btn:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: rgba(116, 229, 255, 0.7);
  color: #f0fffd;
  box-shadow: 0 10px 20px rgba(55, 208, 190, 0.24);
}

.section {
  margin-top: 1.3rem;
}

.section-head {
  margin-bottom: 0.8rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3.1vw, 2.6rem);
  text-transform: uppercase;
}

.section-head p {
  margin: 0.56rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-head-tight {
  margin-bottom: 0.65rem;
}

/* ========================================
   Component Styles
   ======================================== */

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

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRunline {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes heroScan {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(140%);
  }
}

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

@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(1);
  }
  50% {
    opacity: 0.54;
    transform: scale(1.08);
  }
}

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

@keyframes softBlink {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(55, 208, 190, 0);
  }
  50% {
    box-shadow: 0 0 0.9rem rgba(55, 208, 190, 0.14);
  }
}

@keyframes tileSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes radarSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes trustShift {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}



.hero {
  margin-top: 0.95rem;
}

.hero-scene {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.9rem;
  background:
    radial-gradient(circle at 8% 10%, rgba(55, 208, 190, 0.2), transparent 40%),
    radial-gradient(circle at 92% 10%, rgba(116, 229, 255, 0.16), transparent 42%),
    linear-gradient(165deg, rgba(10, 15, 22, 0.97), rgba(5, 8, 13, 0.98));
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.52);
  isolation: isolate;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(116, 229, 255, 0.05) 70%, transparent);
  background-size: 200% 200%;
  animation: heroGradientShift 8s ease-in-out infinite;
}

.hero-gridline {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 56px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 56px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
}

.hero-pointer-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  background: radial-gradient(circle at var(--hero-glow-x, 52%) var(--hero-glow-y, 38%), rgba(55, 208, 190, 0.26), transparent 36%);
  transition: background-position 0.16s ease;
}

.hero-ambient {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.8;
}

.hero-ambient-a {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  top: -4rem;
  background: rgba(55, 208, 190, 0.2);
}

.hero-ambient-b {
  width: 12rem;
  height: 12rem;
  right: -3rem;
  top: 3rem;
  background: rgba(116, 229, 255, 0.19);
}

.hero-ambient-c {
  width: 10rem;
  height: 10rem;
  right: 22%;
  bottom: -5rem;
  background: rgba(74, 135, 255, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0.72rem;
  align-items: stretch;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background:
    radial-gradient(circle at 92% 6%, rgba(55, 208, 190, 0.11), transparent 40%),
    linear-gradient(165deg, rgba(17, 25, 36, 0.95), rgba(9, 13, 20, 0.95));
  box-shadow: var(--shadow);
  animation: heroPanelIn 0.62s ease both;
  backdrop-filter: blur(6px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.88), transparent 62%);
}

.hero-copy {
  padding: 1.25rem;
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.64rem;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #d2ddea;
  background: rgba(255, 255, 255, 0.03);
}

.hero-overline {
  margin: 0.65rem 0 0;
  color: #8eb0c9;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.hero-copy h1 {
  margin-top: 0.64rem;
  line-height: 0.86;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 8.5vw, 7.1rem);
  letter-spacing: 0.01em;
}

.hero-word {
  display: block;
}

.hero-word-outline {
  color: rgba(214, 227, 242, 0.16);
  -webkit-text-stroke: 1px rgba(202, 221, 241, 0.92);
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.hero-word-solid {
  background: linear-gradient(180deg, #f4fbff, #cae0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 52px rgba(116, 229, 255, 0.24);
}

.hero-subtitle {
  margin: 0.7rem 0 0;
  color: #c0d0df;
  line-height: 1.58;
}

.hero-proof {
  margin: 0.72rem 0 0;
  color: #d8e3ef;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-actions {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #031514;
  background: linear-gradient(98deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 30px rgba(55, 208, 190, 0.35);
  animation: softBlink 3.6s ease-in-out infinite;
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(55, 208, 190, 0.7);
  color: var(--brand);
}

.metric-row {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.metric-row article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.56rem 0.62rem;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.metric-row article:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 208, 190, 0.5);
}

.metric-row small {
  color: #9ab0c4;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.metric-row strong {
  margin-top: 0.2rem;
  display: block;
  font-size: 1.08rem;
}

.hero-media {
  padding: 0.74rem;
}

.hero-frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.2s ease;
}

.hero-radar-ring {
  position: absolute;
  left: -1rem;
  right: -1rem;
  top: -1rem;
  bottom: -1rem;
  z-index: 0;
  border-radius: 22px;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0%, rgba(55, 208, 190, 0.42), transparent 26%, transparent 78%, rgba(116, 229, 255, 0.3), transparent);
  filter: blur(16px);
  opacity: 0.32;
  animation: radarSpin 11s linear infinite;
}

.hero-visual {
  position: relative;
  min-height: 25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #090f15;
}

.hero-visual img,
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 76% 10%, rgba(255, 255, 255, 0.13), transparent 30%),
    linear-gradient(160deg, transparent 0%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-scanline {
  position: absolute;
  inset: -120% 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(55, 208, 190, 0.22), transparent);
  animation: heroScan 5.2s linear infinite;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-signals {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero-signals span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.27rem 0.54rem;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #d0dcea;
  background: rgba(255, 255, 255, 0.03);
}

.hero-console {
  margin-top: 0.68rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.34rem;
}

.hero-console article {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.44rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-console article::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.45rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(55, 208, 190, 0.9);
  box-shadow: 0 0 0.65rem rgba(55, 208, 190, 0.35);
}

.hero-console small {
  display: block;
  margin-left: 0.62rem;
  font-size: 0.59rem;
  color: #94abc0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-console strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-float {
  position: absolute;
  z-index: 4;
  max-width: 12.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 0.5rem 0.56rem;
  background: rgba(6, 10, 15, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  animation: floatBob 3.5s ease-in-out infinite;
}

.hero-float small {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92a8bd;
}

.hero-float strong {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.93rem;
  text-transform: uppercase;
}

.hero-float span {
  display: block;
  margin-top: 0.12rem;
  color: #c6d5e2;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-float-a {
  left: -0.8rem;
  bottom: 1rem;
}

.hero-float-b {
  right: -0.8rem;
  top: 1.1rem;
  animation-delay: 1.2s;
}

.hero-runline {
  position: relative;
  z-index: 1;
  margin-top: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(55, 208, 190, 0.04));
}

.hero-runline span {
  display: block;
  width: max-content;
  min-width: 200%;
  padding: 0.4rem 0;
  white-space: nowrap;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #c7d8e8;
  font-weight: 800;
  animation: heroRunline 14s linear infinite;
}

.hero-trust-strip {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.34rem;
}

.hero-trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.36rem 0.42rem;
  color: #bacedf;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-align: center;
  animation: trustShift 5.2s ease-in-out infinite;
  animation-delay: var(--trust-delay, 0s);
}

.hero-trust-strip span:nth-child(2) {
  --trust-delay: 0.8s;
}

.hero-trust-strip span:nth-child(3) {
  --trust-delay: 1.6s;
}

.hero-trust-strip span:nth-child(4) {
  --trust-delay: 2.4s;
}

.landing {
  --section-offset: 6.2rem;
  display: flex;
  flex-direction: column;
}

.landing > section[id] {
  order: var(--section-order, 0);
  scroll-margin-top: var(--section-offset);
}

.hero-liquid {
  margin-top: 0.95rem;
}

.hero-liquid-shell {
  --hero-stick-top: calc(4.2rem + 1rem);
  --hero-media-height: clamp(31rem, calc(100vh - 6.8rem), 44rem);
  display: grid;
  grid-template-areas: "hero-stage";
  position: relative;
  min-height: clamp(42rem, 92vh, 52rem);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(165deg, rgba(9, 14, 20, 0.24), rgba(5, 9, 14, 0.36));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.hero-liquid-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at var(--hero-glow-x, 56%) var(--hero-glow-y, 36%), rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(255, 255, 255, 0.03) 67%, transparent 100%);
}

.hero-liquid-media-rail {
  grid-area: hero-stage;
  position: sticky;
  top: var(--hero-stick-top);
  z-index: 0;
  height: var(--hero-media-height);
  margin: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 55px rgba(0, 0, 0, 0.4);
}

.hero-liquid-media {
  position: relative;
  width: 100%;
  height: 100%;
  background: #08111a;
}

.hero-liquid-media img,
.hero-liquid-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.hero-liquid-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 14%, rgba(55, 208, 190, 0.18), transparent 37%),
    linear-gradient(165deg, rgba(6, 10, 16, 0.03), rgba(3, 7, 12, 0.2));
  transition: background 0.45s ease;
}

.hero-liquid-gridline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 68px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 68px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

.hero-liquid-orb {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  animation: orbPulse 8.6s ease-in-out infinite;
}

.hero-liquid-orb-a {
  width: 14rem;
  height: 14rem;
  left: -3.6rem;
  top: -2rem;
  background: rgba(116, 229, 255, 0.26);
}

.hero-liquid-orb-b {
  width: 16rem;
  height: 16rem;
  right: -4rem;
  bottom: -3rem;
  background: rgba(55, 208, 190, 0.25);
  animation-delay: 1.5s;
}

.hero-liquid-track {
  grid-area: hero-stage;
  position: relative;
  z-index: 4;
  display: grid;
  align-content: start;
  gap: 0.62rem;
  padding: clamp(2rem, 6vh, 3.6rem) 1rem 1rem;
  pointer-events: none;
}

.hero-glass-card {
  position: relative;
  width: min(64rem, 100%);
  margin: 0 auto;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: clamp(0.9rem, 1.6vw, 1.2rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.03)),
    linear-gradient(175deg, rgba(7, 12, 18, 0.14), rgba(5, 9, 14, 0.06));
  backdrop-filter: blur(10px) saturate(1.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 10px 22px rgba(0, 0, 0, 0.16);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-liquid-window {
  border-color: rgba(116, 229, 255, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero-liquid-window-grid {
  margin-top: 0.76rem;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0.5rem;
}

.hero-liquid-window .hero-metrics {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.hero-liquid-window .hero-metric {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  padding: 0.56rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-liquid-window .hero-metric-value {
  font-size: clamp(1.2rem, 2.7vw, 2.05rem);
  line-height: 1;
  color: #ddf6f4;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-liquid-window .hero-metric-label {
  margin-top: 0.3rem;
  color: #a8bfd1;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-liquid-window .hero-console {
  margin-top: 0;
}

.hero-liquid-window .hero-trust-strip {
  margin-top: 0.7rem;
}

.hero-liquid-window .hero-trust-strip span {
  background: rgba(255, 255, 255, 0.03);
}

.hero-liquid-mini-grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.hero-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  padding: 0.52rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-mini-card small {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9cb2c5;
}

.hero-mini-card strong {
  margin-top: 0.18rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-mini-card p {
  margin: 0.22rem 0 0;
  color: #c5d5e2;
  font-size: 0.72rem;
  line-height: 1.38;
}

.hero-liquid-runline {
  position: relative;
  width: min(64rem, 100%);
  margin: 0 auto;
  z-index: 5;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.hero-liquid-runline span {
  display: block;
  width: max-content;
  min-width: 200%;
  padding: 0.42rem 0;
  white-space: nowrap;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d4e3f0;
  animation: heroRunline 14s linear infinite;
}

.studio-block .container {
  position: relative;
  z-index: 1;
}

.studio-stack {
  display: grid;
  grid-template-columns: 1fr;
}

.studio-single {
  width: 100%;
}

.section-process .service-flow-expanded {
  margin-top: 0.7rem;
}

.section-materials .material-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0.68rem;
}

.studio {
  position: relative;
  overflow: hidden;
}

.studio-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-orb {
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.42;
  animation: orbPulse 7s ease-in-out infinite;
}

.studio-orb-a {
  left: -3.8rem;
  top: 1rem;
  background: rgba(55, 208, 190, 0.36);
}

.studio-orb-b {
  right: -3.6rem;
  bottom: -2rem;
  background: rgba(116, 229, 255, 0.3);
  animation-delay: 1.6s;
}

.studio-main,
.studio-side {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 0.86rem;
  background:
    radial-gradient(circle at 90% 4%, rgba(55, 208, 190, 0.08), transparent 35%),
    linear-gradient(170deg, rgba(14, 21, 30, 0.96), rgba(8, 13, 20, 0.96));
  background-size: 140% 140%;
  animation: cardGradient 10s ease-in-out infinite;
}

.service-flow {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.38rem;
}

.service-flow article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.service-flow article:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 208, 190, 0.5);
}

.service-flow span {
  display: inline-flex;
  min-width: 1.7rem;
  justify-content: center;
  border: 1px solid rgba(55, 208, 190, 0.54);
  border-radius: 5px;
  color: var(--brand);
  padding: 0.08rem 0.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-flow p {
  margin: 0.3rem 0 0;
  color: #cad7e4;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.service-grid-modern {
  margin-top: 0.58rem;
}

.service-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background:
    radial-gradient(circle at 90% 0%, rgba(55, 208, 190, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(17, 25, 35, 0.94), rgba(9, 14, 20, 0.94));
  padding: 0.68rem;
  min-height: 9.2rem;
  opacity: 1;
  transform: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background-size: auto;
  animation: none;
}

.service-card:hover {
  transform: none;
  --lift-y: -3px;
  border-color: rgba(55, 208, 190, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.service-card:active {
  transform: none;
}

.service-card:hover .service-card-icon,
.service-card:active .service-card-icon {
  transform: none;
}

.service-card h3 {
  font-size: 0.87rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0.42rem 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.83rem;
}

.service-card a {
  position: absolute;
  top: 0.58rem;
  right: 0.58rem;
  left: auto;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55rem;
  padding: 0.18rem 0.48rem;
  border: 1px solid rgba(55, 208, 190, 0.42);
  border-radius: 999px;
  background: rgba(55, 208, 190, 0.1);
  color: var(--brand);
  text-decoration: none;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.service-card a::after {
  content: none;
}

.service-card:hover a {
  color: #e8f8ff;
  border-color: rgba(116, 229, 255, 0.68);
  background: rgba(116, 229, 255, 0.12);
}

.studio-side h3 {
  font-size: clamp(1.22rem, 2.2vw, 1.85rem);
  text-transform: uppercase;
}

.studio-side > p {
  margin: 0.58rem 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.about-list {
  margin-top: 0.64rem;
  display: grid;
  gap: 0.34rem;
}

.about-list span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.45rem 0.54rem;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.79rem;
  color: #d4e0ec;
}

.material-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.34rem;
}

.material-list article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.45rem 0.54rem;
  background: rgba(255, 255, 255, 0.02);
}

.material-list strong {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.material-list p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.36;
}

.media-cinema {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.05rem 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(55, 208, 190, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(8, 12, 17, 0.98), rgba(6, 9, 14, 0.98));
}

.media-cinema-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinema-orb {
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.34;
}

.cinema-orb-a {
  right: -5rem;
  top: -5rem;
  background: rgba(55, 208, 190, 0.42);
}

.cinema-orb-b {
  left: -5rem;
  bottom: -6rem;
  background: rgba(116, 229, 255, 0.36);
}

.media-toolbar {
  position: relative;
  z-index: 1;
  margin: 0 0 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.media-filter {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #cedae7;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.media-filter:hover,
.media-filter.active {
  border-color: rgba(55, 208, 190, 0.75);
  color: var(--brand);
  transform: translateY(-1px);
}

.media-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 4.9rem;
  grid-auto-flow: dense;
  gap: 0.46rem;
}

.media-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #080d13;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.media-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.16;
  transform: translateX(-130%);
  animation: tileSweep 9s linear infinite;
  animation-delay: var(--tile-delay, 0s);
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 52%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), transparent 38%, transparent 65%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.media-tile-hero {
  grid-column: span 5;
  grid-row: span 4;
}

.media-tile-wide {
  grid-column: span 4;
  grid-row: span 3;
}

.media-tile-tall {
  grid-column: span 3;
  grid-row: span 4;
}

.media-tile-mini {
  grid-column: span 3;
  grid-row: span 2;
}

.media-tile-shape-a {
  border-radius: 18px 10px 20px 8px;
  --lift-rotate-z: -0.35deg;
}

.media-tile-shape-b {
  border-radius: 10px 20px 8px 18px;
  --lift-rotate-z: 0.42deg;
}

.media-tile-shape-c {
  border-radius: 16px 12px 22px 6px;
  --lift-rotate-z: -0.28deg;
}

.media-tile-shape-d {
  border-radius: 9px 19px 9px 19px;
  --lift-rotate-z: 0.3deg;
}

.media-tile-shape-e {
  border-radius: 22px 7px 16px 12px;
  --lift-rotate-z: -0.22deg;
}

.media-tile-shape-f {
  border-radius: 12px 18px 10px 20px;
  --lift-rotate-z: 0.24deg;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.media-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.46rem 0.52rem;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 14, 0.72));
}

.media-tile figcaption span,
.media-tile figcaption small {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 8, 12, 0.56);
  backdrop-filter: blur(6px);
  padding: 0.12rem 0.4rem;
  color: #e1ebf5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.media-tile figcaption span {
  font-size: 0.6rem;
}

.media-tile figcaption small {
  font-size: 0.57rem;
  font-weight: 800;
}

.media-tile:hover {
  --lift-y: -3px;
  border-color: rgba(55, 208, 190, 0.55);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  filter: saturate(1.05);
}

.media-tile:hover::after {
  opacity: 1;
}

.media-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.05);
}

.media-tile:nth-child(2n)::before {
  animation-delay: calc(var(--tile-delay, 0s) - 2.4s);
}

.media-tile:nth-child(3n)::before {
  animation-delay: calc(var(--tile-delay, 0s) - 5.1s);
}

.media-tile.is-hidden {
  display: none;
}

.reel-strip {
  position: relative;
  z-index: 1;
  margin-top: 0.52rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 1fr);
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.reel-item {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  overflow: hidden;
  background: #0a121a;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.reel-item:hover {
  --lift-y: -2px;
  border-color: rgba(55, 208, 190, 0.56);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.reel-item video {
  display: block;
  width: 100%;
}

.finale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.finale {
  position: relative;
  overflow: hidden;
}

.finale-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.finale-orb {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.36;
  animation: orbPulse 8s ease-in-out infinite;
}

.finale-orb-a {
  left: -3rem;
  top: -2rem;
  background: rgba(55, 208, 190, 0.35);
}

.finale-orb-b {
  right: -2.8rem;
  bottom: -3.2rem;
  background: rgba(116, 229, 255, 0.28);
  animation-delay: 2s;
}

.finale-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 0.9rem;
  background: linear-gradient(170deg, rgba(14, 21, 30, 0.96), rgba(8, 12, 18, 0.96));
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.finale-card:hover {
  --lift-y: -2px;
  border-color: rgba(55, 208, 190, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.finale-card h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.95rem);
  text-transform: uppercase;
}

.contact-card p {
  margin: 0.34rem 0;
  color: var(--muted);
}

.contact-card a {
  color: #d8e5f0;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--brand);
}

.contact-links {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.34rem;
}

.contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.contact-links a:hover {
  border-color: rgba(55, 208, 190, 0.62);
  color: var(--brand);
}

.faq-list {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.4rem;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.62rem 0.72rem;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.faq-list details:hover {
  border-color: rgba(55, 208, 190, 0.5);
  background: rgba(55, 208, 190, 0.06);
}

.faq-list summary {
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.faq-list p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.54;
  font-size: 0.84rem;
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(55, 208, 190, 0.1), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(116, 229, 255, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(6, 10, 15, 0.96), rgba(4, 7, 11, 0.98));
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55, 208, 190, 0.55), transparent);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 1.1rem 0 0.95rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.56rem;
}

.footer-block {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(8px);
  padding: 0.78rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.footer-block:hover {
  border-color: rgba(55, 208, 190, 0.38);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.footer-block h4 {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-brand p {
  margin: 0;
  color: #b9cad8;
  font-size: 0.81rem;
  line-height: 1.42;
}

.footer-brand,
.footer-contact,
.footer-map,
.footer-social {
  max-width: none;
  min-width: 0;
}

.footer-contact,
.footer-map,
.footer-social {
  gap: 0.42rem;
}

.contact-list,
.map-links,
.social-links {
  display: grid;
  gap: 0.36rem;
}

.contact-item,
.map-link,
.social-link,
.coordinates {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: #c7d7e4;
  font-size: 0.76rem;
  line-height: 1.36;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.contact-item:hover,
.map-link:hover,
.social-link:hover {
  border-color: rgba(55, 208, 190, 0.6);
  background: rgba(55, 208, 190, 0.08);
  color: #e8f6ff;
  transform: none;
}

.contact-item::before,
.map-link::before,
.social-link::before {
  display: none;
}

.contact-icon,
.map-icon,
.social-icon {
  flex: 0 0 auto;
  color: #82e4d6;
}

.coordinates {
  color: #9cb1c2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.footer-brand h4 {
  color: #f0faff;
}

.footer-social h4,
.footer-contact h4,
.footer-map h4 {
  color: #d9e8f5;
}

.source-chip-list {
  margin-top: 0.42rem;
  display: grid;
  gap: 0.32rem;
}

.source-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.source-chip:hover {
  border-color: rgba(55, 208, 190, 0.6);
}

.source-chip-label {
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #d5e2ee;
  font-weight: 800;
}

.source-chip-domain {
  font-size: 0.68rem;
  color: #8fa3b7;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0.78rem 0 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  color: #9fb2c3;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-note a {
  color: #c8f4ff;
  text-decoration: underline;
  text-decoration-color: rgba(122, 242, 255, 0.55);
  text-underline-offset: 0.16em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-note a:hover {
  color: #f0fdff;
  text-decoration-color: rgba(122, 242, 255, 0.95);
}

.service-layout {
  margin-top: 1.1rem;
}

.service-page {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(170deg, rgba(14, 21, 30, 0.96), rgba(8, 12, 18, 0.96));
}

.breadcrumb-line {
  margin: 0.56rem 0 0;
  color: #a6b9cc;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumb-line a {
  color: #d3dfeb;
  text-decoration: none;
}

.breadcrumb-line a:hover {
  color: var(--brand);
}

.service-lead {
  margin: 0.72rem 0 0;
  color: #d3dfec;
  font-size: 1rem;
}

.service-description {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-tags {
  margin-top: 0.68rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-tags span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.25rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #cad7e3;
}

.service-tags-large {
  margin-bottom: 0.5rem;
}

.service-media-section {
  margin-top: 1.1rem;
}

.service-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-media-item {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 15, 22, 0.88);
}

.service-media-item img,
.service-media-item video {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #070c12;
}

.service-media-item figcaption {
  padding: 0.45rem 0.56rem 0.52rem;
  font-size: 0.78rem;
  color: #c8d7e6;
}

.mobile-cta {
  display: none;
}



@media (max-width: 1100px) {
  .brand-mark {
    width: 10.2rem;
    height: 2.82rem;
  }

  .service-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .studio-grid,
  .finale-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 5.3rem);
  }

  .hero-frame {
    transform: none;
  }

  .hero-float {
    display: none;
  }

  .hero-visual {
    min-height: 19rem;
  }

  .hero-console,
  .hero-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust-strip span:last-child {
    grid-column: 1 / -1;
  }

  .service-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 4.5rem;
  }

  .media-tile-hero,
  .media-tile-wide,
  .media-tile-tall,
  .media-tile-mini {
    grid-column: span 3;
    grid-row: span 2;
  }

  .media-tile {
    --lift-rotate-z: 0deg;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-block {
    grid-column: span 1;
  }

  .nav-links {
    gap: 0.18rem;
    padding: 0.2rem;
  }

  .nav-links a {
    padding: 0.34rem 0.48rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 760px) {
  main {
    padding-bottom: calc(6.1rem + env(safe-area-inset-bottom, 0px));
  }

  .brand {
    padding: 0;
  }

  .brand-mark {
    width: 8.9rem;
    height: 2.44rem;
    border-radius: 0;
  }

  .mobile-menu-toggle {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 12, 18, 0.78);
    backdrop-filter: blur(8px);
    z-index: 80;
  }

  .mobile-menu-toggle span {
    width: 1.05rem;
  }

  .nav-links {
    position: fixed;
    left: 0.72rem;
    right: 0.72rem;
    top: auto;
    bottom: calc(4.95rem + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 0.45rem;
    padding: 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(7, 12, 18, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 46px rgba(2, 7, 14, 0.52);
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 70;
  }

  .nav-links.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.62rem 0.45rem;
    font-size: 0.69rem;
    letter-spacing: 0.04em;
  }

  .call-btn {
    font-size: 0.68rem;
    padding: 0.5rem 0.66rem;
    min-height: 2.42rem;
  }

  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, 0.38);
    backdrop-filter: blur(2px);
    z-index: 60;
  }

  .hero-copy,
  .hero-media,
  .hero-scene,
  .studio-main,
  .studio-side,
  .finale-card,
  .service-page {
    padding: 0.78rem;
    border-radius: 10px;
  }

  .service-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 16rem;
  }

  .hero-runline span {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    animation-duration: 12s;
  }

  .hero-console,
  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-trust-strip span {
    font-size: 0.58rem;
  }

  .metric-row,
  .service-flow,
  .service-grid,
  .contact-links,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-block {
    grid-column: 1 / -1;
  }

  .media-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 5.8rem;
  }

  .media-tile-hero,
  .media-tile-wide,
  .media-tile-tall,
  .media-tile-mini {
    grid-column: span 1;
    grid-row: span 1;
  }

  .media-tile figcaption small {
    display: none;
  }

  .reel-strip {
    grid-auto-columns: minmax(13.5rem, 84vw);
  }

  .footer-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-cta {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 16px;
    background: rgba(7, 11, 16, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
    padding: 0.48rem;
  }

  .mobile-cta a {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    text-decoration: none;
    text-align: center;
    padding: 0.62rem 0.4rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.02);
    color: #dce7f2;
  }

  .mobile-cta .mobile-cta-call {
    border-color: rgba(55, 208, 190, 0.6);
    color: var(--brand);
  }

  .mobile-cta .mobile-cta-case {
    border-color: rgba(116, 229, 255, 0.5);
    color: #c9f4ff;
    background: rgba(116, 229, 255, 0.08);
  }
}

@media (max-width: 1100px) {
  .hero-liquid-shell {
    min-height: auto;
    padding: 0.74rem 0.74rem 0.82rem;
  }

  .hero-liquid-media-rail {
    position: relative;
    top: auto;
    height: clamp(19rem, 58vh, 27rem);
    margin: 0 0 0.5rem;
  }

  .hero-liquid-track {
    position: relative;
    inset: auto;
    margin-top: -2.1rem;
    display: grid;
    gap: 0.5rem;
    pointer-events: auto;
  }

  .hero-glass-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .hero-liquid-runline {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.2rem;
  }

  .section-materials .material-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-liquid-shell {
    padding: 0.56rem;
    border-radius: 12px;
  }

  .hero-liquid-media-rail {
    height: clamp(15rem, 52vh, 22rem);
    border-radius: 11px;
  }

  .hero-liquid-track {
    margin-top: -1.3rem;
    gap: 0.42rem;
  }

  .hero-glass-card {
    border-radius: 10px;
    padding: 0.74rem;
  }

  .hero-liquid-window .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-liquid-window-grid {
    grid-template-columns: 1fr;
  }

  .hero-liquid-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-liquid-runline span {
    font-size: 0.6rem;
    letter-spacing: 0.09em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark::before {
    animation: none;
  }

  .brand,
  .brand-mark,
  .brand-mark img {
    transition-duration: 0.01ms !important;
  }
}
