:root {
  --bg: #06070a;
  --bg-soft: #0c0f14;
  --panel: rgba(255, 255, 255, .06);
  --panel-strong: rgba(255, 255, 255, .1);
  --text: #f5f7fb;
  --muted: #b5becf;
  --line: rgba(255, 255, 255, .12);
  --accent: #d8c3a5;
  --accent-2: #8eb8ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, .35);
  --radius: 24px;
  --max: 1240px;
  --nav-h: 84px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

.txc {
  margin-top: 5%;
  text-align: center !important;
  font-size: 13px;
  color: rgb(182, 182, 182);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(142, 184, 255, .12), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(216, 195, 165, .10), transparent 28%),
    linear-gradient(180deg, #090b10 0%, #06070a 40%, #090b10 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.noise,
.gradient-orb,
.scanlines,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.noise {
  opacity: .045;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="1.1" numOctaves="2" stitchTiles="stitch"/></filter><rect width="140" height="140" filter="url(%23n)" opacity=".7"/></svg>');
  mix-blend-mode: soft-light;
}

.scanlines {
  opacity: .08;
  background: repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, .08),
      rgba(255, 255, 255, .08) 1px,
      transparent 1px,
      transparent 3px);
}

.gradient-orb::before,
.gradient-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
  animation: floatOrb 16s ease-in-out infinite;
}

.gradient-orb::before {
  width: 420px;
  height: 420px;
  background: rgba(142, 184, 255, .28);
  top: 8%;
  left: 8%;
}

.gradient-orb::after {
  width: 360px;
  height: 360px;
  background: rgba(216, 195, 165, .26);
  right: 8%;
  top: 24%;
  animation-delay: -7s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1)
  }

  50% {
    transform: translate3d(20px, -30px, 0) scale(1.08)
  }
}

.cursor-glow {
  background: radial-gradient(300px 300px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .06), transparent 55%);
  transition: background .12s linear;
}

.site {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 1280px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(8, 10, 15, .55);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .28);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .86rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, .05);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
}

.brand-mark::after {
  inset: 14px;
  background: radial-gradient(circle, rgba(255, 255, 255, .7) 0, rgba(255, 255, 255, .1) 35%, transparent 60%);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: .95rem;
  transition: .25s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text)
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1)
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--text);
  place-items: center;
  cursor: pointer;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #dde4f2;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.35);
    opacity: .6
  }
}

.hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: .92;
  letter-spacing: -.04em;
  max-width: 10.5ch;
  text-wrap: balance;
}

.hero h1 .soft {
  color: #c7cedb
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  border: 1px solid rgba(255, 255, 255, .12);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px)
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .05));
  box-shadow: 0 12px 35px rgba(0, 0, 0, .22);
  color: var(--text);
}

.btn-secondary {
  background: rgba(255, 255, 255, .03)
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 720px;
}

.meta-card {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .025));
  backdrop-filter: blur(12px);
}

.meta-k {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.meta-v {
  font-size: .92rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.floating-card,
.reel-card,
.floating-badge {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.reel-card {
  inset: 42px 0 76px 70px;
  border-radius: 34px;
  overflow: hidden;
}

.reel-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, .06));
  transform: scale(2);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1.16)
  }
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(6, 7, 10, .95), transparent);
}

.reel-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
}

.reel-top,
.reel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 10, 15, .48);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
  color: #ecf1f8;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f45b69;
  box-shadow: 0 0 14px #f45b69
}

.reel-title {
  max-width: 320px;
}

.reel-title strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.reel-title span {
  color: #d4dcea;
  line-height: 1.6;
  font-size: .98rem;
}

.play-button {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  position: relative;
  animation: floatButton 3.6s ease-in-out infinite;
}

.play-button::before {
  content: "";
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

@keyframes floatButton {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.floating-card {
  width: 260px;
  left: 0;
  bottom: 28px;
  border-radius: 24px;
  padding: 18px;
  animation: cardBob 5.4s ease-in-out infinite;
  z-index: 2;
}

.floating-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .94rem;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
  margin-top: 14px;
}

.waveform span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8edf8, rgba(142, 184, 255, .4));
  animation: wave 1.4s ease-in-out infinite;
}

.waveform span:nth-child(1) {
  height: 22px;
  animation-delay: .1s
}

.waveform span:nth-child(2) {
  height: 38px;
  animation-delay: .24s
}

.waveform span:nth-child(3) {
  height: 16px;
  animation-delay: .4s
}

.waveform span:nth-child(4) {
  height: 40px;
  animation-delay: .58s
}

.waveform span:nth-child(5) {
  height: 26px;
  animation-delay: .72s
}

.waveform span:nth-child(6) {
  height: 34px;
  animation-delay: .88s
}

.waveform span:nth-child(7) {
  height: 18px;
  animation-delay: 1s
}

@keyframes wave {

  0%,
  100% {
    transform: scaleY(.75);
    opacity: .6
  }

  50% {
    transform: scaleY(1.2);
    opacity: 1
  }
}

.floating-badge {
  right: 10px;
  top: 0;
  border-radius: 20px;
  padding: 16px 18px;
  width: 220px;
  animation: cardBob 6s ease-in-out infinite reverse;
  z-index: 2;
}

.floating-badge small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.floating-badge strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.floating-badge span {
  display: block;
  margin-top: 8px;
  color: #e8edf8;
  font-size: .96rem;
  line-height: 1.55;
}

@keyframes cardBob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-size: .82rem;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.03em;
  max-width: 12ch;
}

.section-intro {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service {
  grid-column: span 4;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(142, 184, 255, .18), transparent 68%);
  transition: transform .35s ease;
}

.service:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
}

.service:hover::before {
  transform: scale(1.12)
}

.service-number {
  font-size: .85rem;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service h3 {
  margin: 18px 0 12px;
  font-size: 1.45rem;
}

.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-visual {
  margin-top: 18px;
  height: 300px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02)),
    radial-gradient(circle at 20% 30%, rgba(142, 184, 255, .22), transparent 32%),
    radial-gradient(circle at 75% 55%, rgba(216, 195, 165, .18), transparent 30%);
  position: relative;
  overflow: hidden;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  inset: auto 14px 18px 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  animation: scan 2.4s linear infinite;
}

.service-visual::after {
  inset: 24px 18px auto 18px;
  animation-duration: 3.6s;
  opacity: .5;
}

@keyframes scan {
  0% {
    transform: translateX(-20px);
    opacity: .2
  }

  50% {
    opacity: .7
  }

  100% {
    transform: translateX(20px);
    opacity: .2
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.showcase-main,
.showcase-stack article {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  overflow: hidden;
  background: #0a0d12;
  position: relative;
  min-height: 280px;
}

.showcase-main {
  min-height: 580px;
}

.poster,
.mini-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform .45s ease;
}

.showcase-main:hover .poster,
.showcase-stack article:hover .mini-poster {
  transform: scale(1.08);
}

.poster.one {
  background-image: linear-gradient(to top, rgba(6, 7, 10, .95), rgba(6, 7, 10, .12)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80')
}

.poster.two {
  background-image: linear-gradient(to top, rgba(6, 7, 10, .94), rgba(6, 7, 10, .2)), url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1200&q=80')
}

.poster.three {
  background-image: linear-gradient(to top, rgba(6, 7, 10, .94), rgba(6, 7, 10, .18)), url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1200&q=80')
}

.poster.four {
  background-image: linear-gradient(to top, rgba(6, 7, 10, .94), rgba(6, 7, 10, .18)), url('https://images.unsplash.com/photo-1487180144351-b8472da7d491?auto=format&fit=crop&w=1200&q=80')
}


.poster-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.poster-copy h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
}

.poster-copy p {
  margin: 0;
  color: #d7deeb;
  max-width: 520px;
  line-height: 1.7;
}

.tag-stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #edf1f8;
  font-size: .84rem;
  white-space: nowrap;
}

.showcase-stack {
  display: grid;
  gap: 18px;
}

.mini-copy {
  position: absolute;
  inset: auto 22px 18px 22px;
  z-index: 2;
}

.mini-copy h4 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.mini-copy p {
  margin: 0;
  color: #d6ddec;
  line-height: 1.65;
  font-size: .95rem;
}

.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.about-card,
.timeline {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  padding: 30px;
}

.about-card p,
.timeline p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
  font-size: 1.02rem;
}

.quote {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.quote strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.time-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.time-item:first-child {
  border-top: 0;
  padding-top: 0
}

.time-item small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  padding-top: 4px;
}

.time-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.time-item span {
  color: var(--muted);
  line-height: 1.65;
  font-size: .96rem;
}

.contact-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  overflow: hidden;
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 184, 255, .16), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
}

.contact-copy,
.contact-form-wrap {
  padding: 36px;
  position: relative;
  z-index: 1;
}

.contact-copy {
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.contact-copy h3 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: .95;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.contact-point small {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.contact-point strong {
  font-size: 1.05rem
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: #e6ebf6;
  font-size: .92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  font: inherit;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical
}

.field select option {
  color: #111;
  background: #fff;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}

.span-2 {
  grid-column: span 2
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.microcopy {
  color: var(--muted);
  font-size: .9rem;
  max-width: 400px;
  line-height: 1.6;
}

.footer {
  padding: 28px 0 54px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  font-size: .94rem;
}


/* ── Brands Slider (Marquee) ─────────────────────────── */

.brands-slider {
  margin-top: 56px;
  padding: 36px 0 10px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.brands-slider::before,
.brands-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brands-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.brands-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brands-slide {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  padding: 12px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.brands-slide:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.brands-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(.6) brightness(1.1);
  opacity: .7;
  transition: filter .35s ease, opacity .35s ease;
}

.brands-slide:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}


/* ── Projects Slider (Infinite Marquee) ───────────────── */

.projects-slider {
  margin-top: 56px;
  padding: 36px 0 10px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.projects-slider::before,
.projects-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.projects-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.projects-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.projects-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marqueeProjects 60s linear infinite;
}

.projects-track:hover {
  animation-play-state: paused;
}

.projects-slide {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  overflow: hidden;
  position: relative;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.projects-slide:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.projects-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.projects-slide:hover img {
  transform: scale(1.08);
}

@keyframes marqueeProjects {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@media (max-width: 820px) {
  .projects-slide {
    width: 220px;
  }

  .projects-track {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .projects-slide {
    width: 180px;
  }

  .projects-track {
    gap: 14px;
    animation-duration: 40s;
  }

  .projects-slider::before,
  .projects-slider::after {
    width: 40px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@media (max-width: 820px) {
  .brands-slide {
    width: 110px;
    height: 64px;
    padding: 10px;
  }

  .brands-track {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .brands-slide {
    width: 90px;
    height: 54px;
    padding: 8px;
  }

  .brands-track {
    gap: 18px;
  }

  .brands-slider::before,
  .brands-slider::after {
    width: 50px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {

  .hero-grid,
  .showcase-grid,
  .about-layout,
  .contact-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start
  }

  .hero-visual {
    min-height: 560px
  }

  .reel-card {
    inset: 34px 24px 92px 24px
  }

  .floating-card {
    left: 18px
  }

  .floating-badge {
    right: 26px
  }

  .services-grid .service {
    grid-column: span 6
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }
}

@media (max-width: 820px) {
  :root {
    --nav-h: 72px
  }

  .topbar {
    padding: 0 14px;
    top: 12px
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 10, 15, .94);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    transform-origin: top;
    transform: scaleY(.92);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }

  .menu-toggle {
    display: grid
  }

  .hero {
    padding-top: 128px
  }

  .hero h1 {
    max-width: 12ch
  }

  .hero-meta {
    grid-template-columns: 1fr
  }

  .services-grid .service {
    grid-column: span 12
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .span-2 {
    grid-column: span 1
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start
  }

  .poster-copy {
    flex-direction: column;
    align-items: flex-start
  }

  .tag-stack {
    justify-content: flex-start
  }

  .contact-copy,
  .contact-form-wrap,
  .about-card,
  .timeline {
    padding: 24px
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 26px), var(--max))
  }

  .brand span:last-child {
    display: none
  }

  .hero-visual {
    min-height: 460px
  }

  .reel-card {
    inset: 24px 8px 94px 8px;
    border-radius: 28px
  }

  .floating-card {
    left: 8px;
    right: 8px;
    width: auto;
    bottom: 12px
  }

  .floating-badge {
    top: -8px;
    right: 12px;
    width: 180px
  }

  .play-button {
    width: 60px;
    height: 60px
  }

  .section {
    padding: 84px 0
  }

  .showcase-main {
    min-height: 460px
  }

  .time-item {
    grid-template-columns: 1fr
  }
}