:root {
  --navy: #0F2747;
  --navy-deep: #050E1A;
  --navy-mid: #163A66;
  --blue: #2E6BFF;
  --blue-deep: #1B4FD6;
  --teal: #20B8A7;
  --teal-deep: #149687;
  --graphite: #3B4350;
  --stone: #D9DEE5;
  --soft: #F7F9FB;
  --white: #ffffff;
  --line: rgba(15, 39, 71, 0.1);
  --line-soft: rgba(217, 222, 229, 0.85);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1220px;
  --header-h: 86px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background:
    radial-gradient(1200px 520px at 100% -10%, rgba(46, 107, 255, 0.06), transparent 55%),
    radial-gradient(900px 420px at -10% 30%, rgba(32, 184, 167, 0.05), transparent 50%),
    var(--soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 .4em;
}
p { margin: 0 0 1em; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
  background: rgba(247, 249, 251, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-header.is-home {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-header.is-home.is-scrolled {
  background: rgba(5, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 40px rgba(5, 14, 26, 0.28);
}
.site-header:not(.is-home).is-scrolled {
  background: rgba(247, 249, 251, 0.97);
  box-shadow: 0 10px 30px rgba(15, 39, 71, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.25rem;
}
.brand-logo {
  position: relative;
  display: block;
  width: 56px;
  height: 52px;
  flex-shrink: 0;
}
.brand-logo img {
  position: absolute;
  left: 0;
  top: 0;
  height: 52px;
  width: auto;
  transition: opacity .3s var(--ease);
}
.brand-logo .logo-light { opacity: 0; pointer-events: none; }
.brand-logo .logo-dark { opacity: 1; }
.site-header.is-home .brand-logo .logo-dark { opacity: 0; }
.site-header.is-home .brand-logo .logo-light { opacity: 1; pointer-events: auto; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--stone);
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--navy);
}
.site-header.is-home .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  margin: 5px auto;
}
.site-nav { display: flex; align-items: center; gap: 1.45rem; }
.site-nav a {
  position: relative;
  color: var(--graphite);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-header.is-home .site-nav a:not(.btn) { color: rgba(255, 255, 255, 0.84); }
.site-header.is-home .site-nav a:not(.btn):hover,
.site-header.is-home .site-nav a.is-active:not(.btn) { color: #fff; }
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav a:not(.btn):hover::after,
.site-nav a.is-active:not(.btn)::after { transform: scaleX(1); }

a.project-tile, a.unit-tile, a.agent-tile, a.post-tile, a.feature-project { color: inherit; }
a.project-tile:hover, a.unit-tile:hover, a.agent-tile:hover, a.post-tile:hover, a.feature-project:hover { color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.6rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.2) 48%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .65s var(--ease);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(46, 107, 255, 0.3);
}
.btn-primary:hover { background: var(--blue-deep); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(15, 39, 71, 0.35);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-sm { padding: .65rem 1.05rem; font-size: .68rem; }

/* Hero — Vimeo video */
.hero-video .hero-video-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-deep);
  pointer-events: none;
}
.hero-video .hero-video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  max-width: none;
}
.hero-video .hero-veil {
  background:
    linear-gradient(180deg, rgba(8, 18, 36, 0.5) 0%, rgba(8, 18, 36, 0.12) 32%, rgba(8, 18, 36, 0.2) 52%, rgba(8, 18, 36, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 18, 36, 0.78) 0%, rgba(8, 18, 36, 0.42) 34%, transparent 68%);
}
.hero-video .hero-content {
  position: absolute;
  left: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: clamp(2.4rem, 5.5vh, 3.6rem);
  top: auto;
  z-index: 4;
  width: min(calc(100% - 2.5rem), 30rem);
  max-width: 30rem;
  margin: 0;
  padding-top: 0;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  pointer-events: auto;
}
.hero-video .hero-brand {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: .9;
  margin: 0;
}
.hero-video .hero-line {
  width: 48px;
  margin: .65rem 0 .75rem;
  transform: none !important;
  animation: none !important;
}
.hero-video .hero-kicker {
  display: none; /* brand already shown above */
}
.hero-video .hero-panel h1 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  max-width: 26rem;
  margin: 0 0 .55rem;
}
.hero-video .hero-panel > p {
  max-width: 26rem;
  margin: 0 0 .95rem;
  font-size: .95rem;
  line-height: 1.55;
}
.hero-video .hero-panel {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero-video .hero-actions {
  margin-top: 0;
  gap: .7rem;
}
.hero-video .hero-actions a {
  pointer-events: auto;
}
.hero-video .hero-scroll {
  z-index: 5;
  bottom: 1.1rem;
}

/* Hero — 3D coverflow slider */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}
.hero-webgl {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hero-webgl canvas,
.hero-webgl-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.hero-stage {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  perspective-origin: 68% 42%;
  z-index: 1;
  will-change: transform;
  transform-style: preserve-3d;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-card {
  position: absolute;
  inset: 8% 6% 14% 34%;
  margin: 0;
  transform-style: preserve-3d;
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 1.35s cubic-bezier(.22, .82, .18, 1),
    opacity .9s cubic-bezier(.22, .82, .18, 1);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.hero-card-face {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(0) scale(1.08);
  overflow: hidden;
  will-change: transform, filter;
  backface-visibility: hidden;
}
.hero-card-face::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 39, 71, 0.15), transparent 45%),
    linear-gradient(to top, rgba(5, 14, 26, 0.35), transparent 40%);
  pointer-events: none;
}
.hero-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 90px) rotateY(0deg) rotateX(0deg) scale(1);
  z-index: 3;
}
.hero-card.is-active .hero-card-face {
  animation: heroKenBurns 5s cubic-bezier(.15, .7, .2, 1) forwards;
}
.hero-card.is-prev {
  opacity: .52;
  transform: translate3d(-42%, 5%, -260px) rotateY(32deg) rotateX(2deg) scale(.84);
  z-index: 2;
}
.hero-card.is-next {
  opacity: .52;
  transform: translate3d(42%, 5%, -260px) rotateY(-32deg) rotateX(2deg) scale(.84);
  z-index: 2;
}
.hero-card.is-far {
  opacity: 0;
  transform: translate3d(0, 12%, -520px) rotateY(0deg) scale(.68);
  z-index: 1;
}
@keyframes heroKenBurns {
  from { transform: translate3d(0, 0, 0) scale(1.12); }
  to { transform: translate3d(-1.5%, -1%, 0) scale(1); }
}

/* Premium GSAP mode — layout unchanged, transforms owned by JS */
.hero.is-premium .hero-card {
  transition: none;
  animation: none;
}
.hero.is-premium .hero-card.is-active .hero-card-face {
  animation: none;
}
.hero.is-premium .hero-content {
  animation: none;
  opacity: 1;
  transform: none;
}
.hero.is-premium .hero-line {
  animation: none;
  transform: scaleX(1);
}
.hero.is-premium .hero-panel.is-active {
  animation: none;
}
.hero.is-premium .hero-stage,
.hero.is-premium .hero-veil,
.hero.is-premium .hero-content {
  will-change: transform;
}
.hero.is-premium .hero-dot.is-active::after {
  animation: none;
  width: 0;
  opacity: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(5, 14, 26, 0.88) 0%, rgba(15, 39, 71, 0.72) 34%, rgba(15, 39, 71, 0.28) 58%, rgba(46, 107, 255, 0.12) 100%),
    radial-gradient(720px 380px at var(--light-x, 78%) var(--light-y, 18%), rgba(46, 107, 255, 0.18), transparent 62%),
    radial-gradient(640px 360px at 12% 88%, rgba(32, 184, 167, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 5.5rem;
  max-width: 700px;
  padding-top: calc(var(--header-h) + 1rem);
  opacity: 0;
  transform: translateY(36px);
  animation: riseIn 1s var(--ease) forwards .12s;
}
.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .94;
  color: #fff;
  will-change: transform, filter, opacity;
}
.hero-brand span { display: block; color: #fff; }
.hero-brand span:last-child { color: var(--blue); }
.hero-line {
  width: 64px;
  height: 3px;
  margin: 1.2rem 0 1.3rem;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  animation: growX .85s var(--ease) forwards .55s;
}
.hero-kicker {
  margin: 0 0 .55rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}
.hero-panel h1 {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 32ch;
  margin: 0 0 .8rem;
  will-change: filter, opacity, transform;
}
.hero-panel > p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 40ch;
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}
.hero-panel {
  display: none;
}
.hero-panel.is-active {
  display: block;
  animation: panelIn .55s var(--ease) both;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.9rem;
}
.hero-controls {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1.75rem;
}
.hero-nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 39, 71, 0.35);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.hero-nav:hover {
  border-color: var(--blue);
  background: rgba(46, 107, 255, 0.22);
  transform: translateY(-1px);
}
.hero-dots {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.hero-dot {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  overflow: hidden;
  transition: width .45s cubic-bezier(.22, .82, .18, 1), background .35s ease;
}
.hero-dot.is-active {
  width: 36px;
  background: rgba(255, 255, 255, 0.16);
}
.hero-dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  animation: heroProgress var(--hero-autoplay, 6s) linear forwards;
  transform-origin: left center;
}
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  overflow: hidden;
}
.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-scroll i {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-card, .hero-card.is-active, .hero-panel.is-active, .hero-scroll i, .hero-dot.is-active::after, .hero-card-face, .hero-card.is-active .hero-card-face {
    animation: none !important;
    transition: none !important;
  }
  .hero-atmosphere { display: none; }
}

@keyframes riseIn { to { opacity: 1; transform: none; } }
@keyframes growX { to { transform: scaleX(1); } }
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Brand rail */
.brand-rail {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy) 40%, var(--navy-mid));
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding: .95rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.brand-rail-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 200%;
  gap: 2.5rem;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  will-change: transform;
}
.brand-rail-track span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.brand-rail-track span::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--teal);
  opacity: .75;
  flex-shrink: 0;
}
.brand-rail-track strong { color: #fff; }
.brand-rail-track em { font-style: normal; color: var(--teal); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-dark {
  position: relative;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(46, 107, 255, 0.16), transparent 55%),
    radial-gradient(700px 360px at 0% 100%, rgba(32, 184, 167, 0.1), transparent 50%),
    var(--navy-deep);
  color: rgba(255, 255, 255, 0.74);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--teal); }
.section-dark .muted { color: rgba(255, 255, 255, 0.52); }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.6); }
.section-dark .tile-meta { color: var(--blue); }
.section-dark .tile-meta span + span { color: var(--teal); }
.section-dark .tile-body h3 { color: #fff; }
.section-soft {
  background:
    linear-gradient(180deg, #EEF2F7 0%, var(--soft) 45%, #fff 100%);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  max-width: 38rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--teal-deep);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .66rem;
  margin-bottom: .95rem;
}
.section-head .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: .7rem;
}
.section-head p {
  color: #5d6775;
  font-size: 1.02rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.8vw, 2.2rem);
}

/* Featured project */
.feature-wrap {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
}
.feature-project {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  min-height: 540px;
  background: var(--navy-deep);
  overflow: hidden;
  position: relative;
}
.feature-project::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 2;
}
.feature-project-media {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.feature-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.1s var(--ease);
}
.feature-project:hover .feature-project-media img { transform: scale(1.05); }
.feature-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(5, 14, 26, 0.55));
}
.feature-project-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.4rem);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}
.feature-project-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}
.feature-project-body .eyebrow {
  color: var(--teal);
  margin-bottom: .9rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.feature-project-body h3 {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-bottom: .8rem;
}
.feature-project-body p {
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}
.feature-project-body .meta {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.feature-project .btn {
  align-self: flex-start;
  pointer-events: none;
}

/* Tiles */
.project-tile, .unit-tile, .agent-tile, .post-tile {
  display: block;
  color: inherit;
  background: transparent;
}
.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy);
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 14, 26, 0.5));
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.media-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width .45s var(--ease);
}
.project-tile:hover .media-frame::after,
.unit-tile:hover .media-frame::after,
.post-tile:hover .media-frame::after { width: 100%; }
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .4s var(--ease);
}
.project-tile:hover .media-frame img,
.unit-tile:hover .media-frame img,
.post-tile:hover .media-frame img {
  transform: scale(1.05);
  filter: saturate(1.06);
}
.project-tile:hover .media-frame::before,
.unit-tile:hover .media-frame::before { opacity: 1; }

.tile-body { padding: 1.15rem 0 0; }
.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .7rem;
  margin-bottom: .5rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue);
}
.tile-meta span + span { color: var(--teal-deep); }
.tile-body h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  margin-bottom: .3rem;
  line-height: 1.2;
}
.price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-dark .price { color: #fff; }
.muted { color: #6a7380; }

/* Units grid */
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.7rem);
}
.units-grid .unit-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 0 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color .3s var(--ease);
}
.units-grid .unit-tile:hover { border-bottom-color: rgba(46, 107, 255, 0.55); }
.units-grid .media-frame { aspect-ratio: 16 / 10; width: 100%; }
.units-grid .tile-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.units-grid .tile-body h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  overflow-wrap: anywhere;
}
.units-grid .price { margin-top: auto; padding-top: .4rem; }
.units-grid .muted { margin-bottom: 0; font-size: .9rem; }
.section-cta { margin-top: 2.5rem; }
.empty-state-dark {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.03);
}

/* Manifesto */
.manifesto {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
  color: #fff;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 340px at 18% 28%, rgba(46, 107, 255, 0.32), transparent 60%),
    radial-gradient(560px 300px at 86% 72%, rgba(32, 184, 167, 0.2), transparent 55%),
    url("../brand/hero-bg.svg") center / cover;
  opacity: .38;
}
.manifesto::after {
  content: "MV";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(9rem, 24vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  line-height: 1;
}
.manifesto .container { position: relative; z-index: 1; }
.manifesto h2 {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  max-width: 15ch;
  margin: 0 auto 1.1rem;
}
.manifesto p {
  max-width: 36ch;
  margin: 0 auto 1.9rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  font-weight: 300;
}
.manifesto-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-visual {
  position: relative;
  min-height: 480px;
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-mid) 48%, rgba(46, 107, 255, 0.88));
  overflow: hidden;
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../brand/hero-bg.svg") 55% center / cover;
  opacity: .48;
  mix-blend-mode: soft-light;
}
.split-visual::after {
  content: "";
  position: absolute;
  left: 11%;
  top: 13%;
  width: 56%;
  height: 64%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.split-visual .glow {
  position: absolute;
  right: -12%;
  bottom: -12%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(32, 184, 167, 0.42), transparent 65%);
}

/* Agents */
.agent-tile { position: relative; overflow: hidden; }
.agent-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--stone);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.agent-tile:hover .agent-photo {
  transform: scale(1.035);
  filter: saturate(1.05);
}
.agent-tile h3 { margin-top: 1rem; font-size: 1.35rem; }
.agent-tile .muted {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Forms / inner pages */
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--stone);
  background: #fff;
  font: inherit;
  color: var(--graphite);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 107, 255, 0.14);
}
textarea { min-height: 130px; resize: vertical; }
.alert {
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border-left: 3px solid;
  background: #fff;
}
.alert-success { border-color: var(--teal); color: #0f6e64; }
.alert-error { border-color: #c0392b; color: #8f1f1f; }

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(2.8rem, 5.5vw, 4.2rem)) 0 clamp(2.2rem, 3.5vw, 3rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(860px 340px at 100% -10%, rgba(46, 107, 255, 0.1), transparent 55%),
    radial-gradient(640px 260px at 0% 100%, rgba(32, 184, 167, 0.07), transparent 50%),
    linear-gradient(180deg, #E8EEF5, var(--soft));
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  max-width: 14ch;
}
.breadcrumb {
  font-size: .7rem;
  letter-spacing: .12em;
  color: #6a7380;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.breadcrumb a { color: inherit; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.6rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec strong {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #7a8492;
  margin-bottom: .28rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.side-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.6rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  box-shadow: 0 20px 50px rgba(15, 39, 71, 0.06);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: 1rem;
}
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* İlan galerisi */
.listing-gallery { margin-bottom: 1.5rem; }
.listing-gallery-main {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--stone);
  box-shadow: 0 18px 48px rgba(15, 39, 71, 0.1);
}
.listing-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}
.listing-gallery-main:hover img { transform: scale(1.02); }
.listing-gallery-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(7, 21, 37, 0.72);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.listing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: .55rem;
  margin-top: .65rem;
}
.listing-gallery-grid .gallery-trigger {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--stone);
  transition: border-color .2s ease, transform .2s ease;
}
.listing-gallery-grid .gallery-trigger:hover,
.listing-gallery-grid .gallery-trigger.is-active {
  border-color: var(--blue);
  transform: translateY(-1px);
}
.listing-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}
.lightbox[hidden] { display: none !important; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 26, 0.92);
  backdrop-filter: blur(8px);
}
.lightbox-stage {
  position: relative;
  z-index: 2;
  width: min(92vw, 1180px);
  max-height: 88vh;
  display: grid;
  place-items: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
body.is-lightbox-open { overflow: hidden; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.filters > * { flex: 1; min-width: 150px; }
.filters .btn { flex: 0; align-self: end; }
.empty-state {
  padding: 3.2rem 1rem;
  text-align: center;
  color: #6a7380;
  border: 1px dashed var(--stone);
  grid-column: 1 / -1;
}
.prose { max-width: 70ch; }
.prose h3 { margin-top: 1.5rem; font-size: 1.45rem; }

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(900px 380px at 0% 0%, rgba(46, 107, 255, 0.14), transparent 55%),
    radial-gradient(700px 320px at 100% 100%, rgba(32, 184, 167, 0.1), transparent 50%),
    linear-gradient(180deg, #071525 0%, var(--navy-deep) 38%, #0c213c 100%);
  color: rgba(255, 255, 255, 0.68);
  padding: 0;
  margin-top: 3.5rem;
  overflow: hidden;
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 52%, #5EC8FF 100%);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem 2.25rem;
  padding: 3.75rem 0 3.25rem;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1.35rem;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 64px;
}
.footer-tagline {
  max-width: 34ch;
  margin: 0 0 1.1rem;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}
.footer-parent {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.35rem;
  padding: .35rem .7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
}
.footer-parent::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(32, 184, 167, 0.18);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 .9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.footer-social a:hover {
  border-color: rgba(46, 107, 255, 0.55);
  color: #fff !important;
  background: rgba(46, 107, 255, 0.16);
}
.site-footer h4 {
  position: relative;
  color: #fff;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1.35rem;
  padding-bottom: .85rem;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.footer-nav-col a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: .95rem;
  transition: color .22s var(--ease), transform .22s var(--ease);
}
.footer-nav-col a:hover {
  color: #fff !important;
  transform: translateX(3px);
}
.footer-contact-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.footer-contact-list li {
  display: grid;
  gap: .2rem;
}
.footer-contact-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.footer-contact-list span:last-child,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: .92rem;
  line-height: 1.55;
}
.footer-contact-list a:hover { color: var(--teal) !important; }
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff !important;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .04em;
  box-shadow: 0 10px 28px rgba(46, 107, 255, 0.28);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s var(--ease);
}
.footer-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(46, 107, 255, 0.34);
}
.footer-brands-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}
.footer-brands-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.35rem 0 1.4rem;
  text-align: center;
}
.footer-brands-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 0;
}
.footer-brands img {
  height: 24px;
  width: auto;
  opacity: .88;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.footer-brands img:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.22);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.15rem;
}
.footer-copy {
  font-size: .76rem;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, 0.48);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  line-height: 0;
  opacity: .92;
  transition: opacity .22s var(--ease);
}
.footer-credit:hover { opacity: 1; }
.footer-credit img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 180px;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .units-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .grid-3, .footer-main, .detail-grid, .split, .feature-project, .units-grid { grid-template-columns: 1fr; }
  .footer-main { gap: 2.25rem; padding: 2.75rem 0 2.5rem; }
  .footer-brands { gap: .85rem 1.35rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .footer-credit { margin-left: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.3rem;
    gap: .1rem;
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-home .site-nav {
    background: rgba(5, 14, 26, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
  .site-header:not(.is-home) .site-nav { background: rgba(247, 249, 251, 0.98); }
  .site-nav.is-open { display: flex; }
  .site-header.is-home .site-nav a:not(.btn) { color: rgba(255, 255, 255, 0.88) !important; }
  .site-header:not(.is-home) .site-nav a:not(.btn) { color: var(--graphite) !important; }
  .site-nav a { padding: .75rem 0; }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .btn { width: 100%; margin-top: .5rem; }
  .hero { align-items: end; }
  .hero-video .hero-content {
    left: 1.15rem;
    right: 1.15rem;
    width: auto;
    max-width: none;
    bottom: 2.4rem;
  }
  .hero-video .hero-brand { font-size: clamp(1.7rem, 9vw, 2.3rem); }
  .hero-video .hero-panel > p { font-size: .9rem; }
  .hero-stage { perspective-origin: 50% 35%; }
  .hero-card {
    inset: 12% 4% 42% 4%;
  }
  .hero-card.is-prev,
  .hero-card.is-next {
    opacity: .28;
    transform: translate3d(0, 8%, -280px) rotateY(0deg) scale(.9);
  }
  .hero-content {
    margin-bottom: 2.2rem;
    padding-top: calc(var(--header-h) + 1.4rem);
    max-width: 100%;
  }
  .hero-brand { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-scroll { display: none; }
  .hero-controls { margin-top: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .split-visual { min-height: 280px; }
  .feature-project { min-height: 0; }
  .feature-project-media { min-height: 260px; aspect-ratio: 16 / 10; }
  .brand-rail {
    overflow: hidden;
    padding: .85rem 0;
  }
  .brand-rail-track {
    font-size: .68rem;
    letter-spacing: .12em;
    gap: 1.5rem;
  }
  .brand-rail-track span {
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .brand-rail-track { animation: none; }
}
