/* =====================================================
   Venza — design tokens
   ===================================================== */
:root {
  --bg: #0a0d12;
  --bg-2: #070b1d;
  --bg-blue: #1b2340;
  --bg-blue-2: #243858;
  --bg-blue-3: #3f4b60;
  --bg-blue-4: #3f6097;
  --text: #ffffff;
  --text-muted: #d2d2d2;
  --text-dim: #8e8e8e;
  --text-faint: #848484;
  --accent: #f1a300;
  --accent-2: #ffac00;
  --green: #1e9d7f;
  --neutral: #d9d9d9;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 200px;

  --maxw: 1312px;
  --pad: 64px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

/* =====================================================
   Reset
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* =====================================================
   Layout helpers
   ===================================================== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.center {
  display: flex;
  justify-content: center;
}
.center-text {
  text-align: center;
}
.weight-light {
  font-weight: 300;
}
.weight-bold {
  font-weight: 700;
}
.accent {
  color: var(--accent);
}
.accent-text {
  color: var(--accent);
}

/* =====================================================
   Typography
   ===================================================== */
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
  margin: 0 0 16px;
}
.h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}
.display {
  font-size: clamp(72px, 10vw, 148px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 96px;
  font-weight: 300;
}
.display-md {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 0;
  text-align: center;
  max-width: 1190px;
  margin-inline: auto;
}
.display-md strong {
  font-weight: 700;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-blue);
  padding: 22px 36px;
  font-size: 18px;
  box-shadow: 0 14px 40px -16px rgba(241, 163, 0, 0.6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn--projects-cta {}
.btn--projects-cta .btn__arrow {
  display: inline-block;
  margin-left: 10px;
}
.btn--lg {
  padding: 28px 32px;
  font-size: 20px;
}
.btn--xl {
  padding: 32px 48px;
  font-size: 24px;
}

/* =====================================================
   Navbar (Apple-style glass)
   ===================================================== */
.navbar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(1200px, calc(100% - 32px));
  border-radius: 999px;
  /* Apple liquid glass */
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0.04) 40%,
      rgba(255, 255, 255, 0.07) 100%
    );
  -webkit-backdrop-filter: saturate(200%) blur(32px) brightness(1.08);
  backdrop-filter: saturate(200%) blur(32px) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 8px 40px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.18);
  transition: top 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar {
    background: rgba(10, 13, 18, 0.92);
  }
}
.navbar.is-scrolled {
  top: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset,
    0 16px 48px rgba(0, 0, 0, 0.38),
    0 2px 10px rgba(0, 0, 0, 0.22);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  position: relative;
}
.navbar__logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 29px;
  width: auto;
  display: block;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar__links li {
  display: flex;
}
.navbar__links a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
  width: max-content;
  position: relative;
  transition: color 0.2s ease;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.navbar__links a.is-active {
  color: #fff;
}
.navbar__links a:hover::after {
  transform: scaleX(1);
}
.navbar__cta {
  background: var(--accent);
  color: #1b2340;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -1px;
  text-decoration: none;
  padding: 20px 24px;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.navbar__cta:hover {
  transform: translateY(-1px);
  background: #d49000;
  box-shadow: 0 0 20px 4px rgba(241, 163, 0, 0.35);
}

/* Hamburger button — hidden on desktop */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Open state */
.navbar.is-open .navbar__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.is-open .navbar__burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar.is-open .navbar__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown menu */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-radius: 24px;
  background: rgba(12, 16, 32, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  backdrop-filter: saturate(180%) blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.navbar__dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.navbar__dropdown ul li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.navbar__dropdown ul li:last-child a {
  border-bottom: none;
}
.navbar__dropdown ul li a:hover,
.navbar__dropdown ul li a.is-active {
  color: var(--accent);
}
.navbar__cta--mobile {
  display: block;
  text-align: center;
  margin-top: 8px;
  width: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
}
.navbar.is-open .navbar__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
  min-height: 1080px;
}
.nav {
  display: flex;
  justify-content: center;
  padding: 24px var(--pad);
  position: relative;
  z-index: 3;
}
.nav__logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 1200px;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(
    ellipse 60% 45% at 50% 35%,
    black 50%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 60% 45% at 50% 35%,
    black 50%,
    transparent 75%
  );
  opacity: 0.45;
}

/* Big circle (planet) — sits at the bottom of the hero */
.hero__circle {
  position: absolute;
  left: 50%;
  top: 57.8%;
  transform: translateX(-50%);
  width: clamp(600px, 178vw, 2561px);
  pointer-events: none;
  z-index: 1;
}
.hero__circle img {
  width: 100%;
  height: auto;
  display: block;
}
/* Glow arc above the circle — approximates the Figma shadow SVG */
.hero__circle-shadow {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, 0);
  width: clamp(600px, 170vw, 2435px);
  height: 48%;
  background: radial-gradient(
    ellipse 60% 60% at 50% 100%,
    rgba(120, 180, 255, 0.55) 0%,
    rgba(70, 130, 230, 0.22) 40%,
    transparent 70%
  );
  mix-blend-mode: plus-lighter;
  filter: blur(18px);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 var(--pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cccccc;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: center;
}
.hero__title {
  font-size: clamp(16px, 9vw, 120px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  font-weight: 700;
  margin: 0 0 56px;
  text-align: center;
  width: 100%;
}
.hero__title .weight-light {
  font-weight: 300;
}

/* Clients strip */
.clients {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  overflow: hidden;
  padding: 32px 0;
  opacity: 0.75;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}
.clients__list {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  animation: clients-scroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.clients__list li {
  display: flex;
  align-items: center;
  padding: 0 36px;
  flex-shrink: 0;
}
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clients:hover .clients__list {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .clients__list { animation: none; }
}
.client-logo {
  height: 86px;
  width: auto;
  max-width: 264px;
  min-width: 40px;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.client-logo:hover {
  opacity: 1;
}
.client-logo--xs {
  height: 46px;
  max-width: 144px;
}
.client-logo--sm {
  height: 62px;
  max-width: 192px;
}
.client-logo--md {
  height: 86px;
  max-width: 264px;
}
.client-logo--lg {
  height: 106px;
  max-width: 360px;
}
.client-logo--xl {
  height: 125px;
  max-width: 408px;
}
.client-logo--wide {
  padding: 0 24px;
}

.about {
  padding: 260px 0 120px;
}
.about__inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

/* Left column: eyebrow + heading */
.about__left {
  flex: 0 0 275px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}
.about__eyebrow {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #656565;
  margin: 0;
  line-height: 1.4;
}
.about__heading {
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

/* Center: video container */
.about__video-wrap {
  flex: 0 0 420px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* Tall aspect ratio: ~2:1 height */
  aspect-ratio: 420 / 849;
  background: #0a0d12;
  cursor: pointer;
}
.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}
.about__play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55));
}
.about__play-btn svg {
  width: 100px;
  height: 100px;
}
.about__play-btn:hover {
  transform: scale(1.08);
}
.about__play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
/* Darken overlay when paused so play button stands out */
.about__video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  border-radius: 24px;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.about__video-wrap.is-playing::before {
  opacity: 0;
}

/* Right column: body text */
.about__text {
  flex: 0 0 340px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: -0.04em;
  align-self: center;
}
.about__text strong {
  color: #fff;
  font-weight: 600;
}

/* =====================================================
   Projects (sticky stacking — poch.studio style)
   The whole .case is sticky at top:0. Each subsequent case has a
   higher z-index, so as the user scrolls down it slides up and
   covers ("eats") the previous case entirely. Backgrounds are
   opaque so the overlap is seamless.
   ===================================================== */
.projects {
  padding: 80px 64px 0;
  position: relative;
}
.projects > .display {
  margin-bottom: 96px;
}
.cases {
  position: relative;
  /* Provides the scroll runway for all the sticky cases. */
}
.case {
  position: sticky;
  top: 0;
  padding: 80px 0;
  background: var(--bg);
  z-index: var(--i, 1);
}
.case:last-child {
  /* last case has no follower — no extra runway needed */
}
/* Scroll runway for all but the last case:
   after the content fills the viewport, the user gets ~50vh of
   additional scroll before the next case slides in and covers it. */
.case:not(:last-child) {
  padding-bottom: 60px;
}
.projects__end {
  /* Spacer so the last case can settle before the CTA shows up. */
  height: 4vh;
}
.projects .center {
  position: relative;
  z-index: 50;
  background: var(--bg);
  padding: 0 0 200px;
  margin-top: 48px;
}
@media (prefers-reduced-motion: reduce) {
  .case {
    position: static;
    min-height: 0;
    transform: none;
    opacity: 1;
    padding: 60px 0;
  }
}
.case__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.tags {
  display: flex;
  gap: 8px;
}
.tag {
  background: var(--bg-blue-3);
  color: #fff;
  font-size: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: -0.04em;
}
.chip {
  background: #fff;
  color: var(--bg);
  font-size: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  letter-spacing: -0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(255,255,255,0.3);
}
.case__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-bottom: 56px;
  align-items: start;
}
.case__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 420px;
}
.case__title strong {
  font-weight: 700;
}
.case__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}
.case__copy p {
  margin: 0;
}
.case__gallery {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}
.case__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: case-marquee var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
}
.case:nth-child(even) .case__track {
  /* Alternate direction so neighbouring cases move opposite ways. */
  animation-direction: reverse;
}
.case__gallery:hover .case__track {
  animation-play-state: paused;
}
.case__track .case__img {
  width: 313px;
  height: 380px;
  flex-shrink: 0;
}
@keyframes case-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .case__track { animation: none; }
}
@media (max-width: 640px) {
  .case__track .case__img { width: 240px; height: 290px; }
}
.case__img {
  width: 313px;
  height: 380px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: #1a1f2e;
  position: relative;
  overflow: hidden;
}
.case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case__img--green {
  background: var(--green);
}
.case__img--green::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}
.case__img--1 { background: linear-gradient(135deg, #2b1a0a, #5a3a1a); }
.case__img--2 { background: linear-gradient(135deg, #3b2415, #7a4423); }
.case__img--3 { background: linear-gradient(135deg, #1a2435, #2b3a55); }
.case__img--4 { background: linear-gradient(135deg, #1f2a44, #3a5078); }
.case__img--5 { background: linear-gradient(135deg, #4a5b76, #2d3a52); }
.case__img--6 { background: linear-gradient(135deg, #1a2535, #2c3e58); }
.case__img--7 { background: linear-gradient(135deg, #261712, #4a2b20); }
.case__img--8 { background: linear-gradient(135deg, #1c1410, #3a261c); }
.case__img--9 { background: linear-gradient(135deg, #2c1f15, #4d3320); }
.case__img--10 { background: linear-gradient(135deg, #1a1410, #2e2218); }

/* =====================================================
   Photo Carousel (Audiovisual)
   ===================================================== */
.fotoc {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.fotoc__slides {
  position: absolute;
  inset: 0;
}
.fotoc__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fotoc__slide.is-active {
  opacity: 1;
}
.fotoc__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.18) 66%,
      rgba(0,0,0,0.55) 100%
    );
  pointer-events: none;
  z-index: 1;
}
.fotoc__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 84px 64px 82px;
  pointer-events: none;
}
.fotoc__topbar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.fotoc__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.fotoc__brand span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.fotoc__brand strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.fotoc__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.fotoc__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 580px;
  pointer-events: auto;
}
.fotoc__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0;
}
.fotoc__sub {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0;
}
.fotoc__text .btn--primary {
  align-self: flex-start;
  font-size: 15px;
  padding: 18px 32px;
  box-shadow: none;
  margin-top: 24px;
}
.fotoc__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  pointer-events: auto;
}
.fotoc__nav--mobile {
  display: none;
}
.fotoc__nav--desktop {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  align-self: flex-end;
  flex-shrink: 0;
}
.fotoc__arrow {
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  filter: none;
}
.fotoc__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fotoc__arrow:hover,
.fotoc__arrow:active {
  transform: scale(1.08);
  opacity: 0.85;
  filter: none;
}

/* Bottom fade: subtle blend into dark background below */
.fotoc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(10,13,18,0.55));
  pointer-events: none;
  z-index: 3;
}

/* =====================================================
   Bridge (logo between carousel and why section)
   ===================================================== */
/* 3 scroll phases:
   1. Logo (sticky) scrolls up toward the slogan SVG
   2. They meet — glow bursts — logo pauses visually
   3. .why (z-index 100) rises and covers the logo */
.bridge {
  position: relative;
  z-index: 10;
  height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slogan SVG — absolute, centered at 52% of bridge height */
.bridge__slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  opacity: 0.30;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Center wrapper for glow + logo */
.bridge__sticky {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient blue glow — dimly on at rest, brightens on hover */
.bridge__glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(63, 96, 151, 0.55) 0%,
    rgba(36, 56, 88, 0.25) 50%,
    transparent 75%
  );
  filter: blur(80px);
  opacity: 0.2;
  transform: scale(1);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.bridge__glow.is-burst {
  opacity: 1;
  transform: scale(1.55);
}

/* Gold burst glow — only on hover */
.bridge__burst {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(241, 163, 0, 0.80) 0%,
    rgba(241, 163, 0, 0.30) 38%,
    transparent 65%
  );
  filter: blur(60px);
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.bridge__burst.is-burst {
  opacity: 0.9;
  transform: scale(1);
}

.bridge__logo {
  position: relative;
  z-index: 2;
  width: min(72vh, 760px);
  max-width: 90vw;
  display: block;
  cursor: default;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
}

@media (prefers-reduced-motion: reduce) {
  .bridge__glow,
  .bridge__burst { transition: none; }
}

/* =====================================================
   Why Venza
   ===================================================== */
.why {
  position: relative;
  z-index: 100;
  background: linear-gradient(
    180deg,
    var(--bg-blue-4) 0%,
    var(--bg-blue-2) 45%,
    rgba(10, 13, 18, 0) 100%
  );
  padding: 280px 0 120px;
  margin-top: 0;
}
.why__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 60px;
}
.why__text {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--text-muted);
  margin: 0;
}

.cards__wrapper {
  position: relative;
  margin-bottom: 160px;
}
.cards__scrollbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.cards__scroll-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.cards__scroll-btn:hover {
  color: var(--accent);
}
.cards__scroll-btn svg {
  width: 20px;
  height: 20px;
}
.cards__track-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.cards__track-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  width: 20%;
  transition: width 0.2s ease;
}
.cards__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 4;
}
.cards__nav--prev {
  left: -24px;
}
.cards__nav--next {
  right: -24px;
}
.cards__nav:hover {
  color: var(--accent);
}
.cards__nav svg {
  width: 28px;
  height: 28px;
}
.cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cards::-webkit-scrollbar {
  display: none;
}
.card {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-height: 460px;
  flex: 0 0 380px;
  scroll-snap-align: start;
}
.card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md, 16px);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__media img,
.card__media svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.card__copy {
  font-size: 15px;
  line-height: 1.45;
  color: var(--neutral);
  letter-spacing: -0.02em;
  margin: 0;
}

/* Differentials */
.diff__head {
  margin-bottom: 64px;
}
.diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 96px;
}
.diff__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diff__item {
  position: relative;
  width: 100%;
  border: 1px solid #314469;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.diff__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.diff__item.is-active {
  background: #070b1d;
}
/* Rolling golden border on hover — a thin highlight that keeps traveling around the card */
.diff__border {
  position: absolute;
  inset: -1.5px;
  border-radius: 17.5px;
  pointer-events: none;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(241, 163, 0, 0.15) 40deg,
    var(--accent) 70deg,
    #ffe7a8 85deg,
    #fff7d6 90deg,
    #ffe7a8 95deg,
    var(--accent) 110deg,
    rgba(241, 163, 0, 0.15) 140deg,
    transparent 180deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  filter: drop-shadow(0 0 6px rgba(241, 163, 0, 0.55));
}
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes diff-spin {
  to { --angle: 360deg; }
}
.diff__item:hover .diff__border {
  opacity: 1;
  animation: diff-spin 3s linear infinite;
}
.diff__item:hover {
  z-index: 2;
}
.diff__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9a9a9a;
  margin-bottom: 2px;
  transition: color 0.25s ease;
}
.diff__item.is-active .diff__icon {
  color: var(--accent);
}
.diff__icon svg,
.diff__icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(0) invert(60%);
  transition: filter 0.25s ease;
}
.diff__item.is-active .diff__icon svg,
.diff__item.is-active .diff__icon img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(103%);
}
.diff__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  transition: color 0.25s ease;
}
.diff__item.is-active .diff__title {
  color: var(--accent);
}
.diff__copy {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #9a9a9a;
  margin: 0;
  transition: color 0.25s ease;
}
.diff__item.is-active .diff__copy {
  color: #adadad;
}
.diff__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 100%;
  align-self: stretch;
  background: #0a0d12;
}
.diff__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.diff__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.diff__panel.is-active {
  opacity: 1;
  transform: scale(1);
}

/* =====================================================
   Team
   ===================================================== */
/* Team
   ===================================================== */
.team {
  padding: 220px 64px 100px;
}
.team__head {
  margin-bottom: 72px;
}
.team__head .h2 {
  font-size: 64px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.team__stage {}
.team__expanded {
  display: grid;
  grid-template-columns: 424px 1fr;
  gap: 32px;
  align-items: center;
}
.team__exp-left {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 424 / 523;
  flex-shrink: 0;
}
.team__exp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 36px;
}
.team__exp-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-end;
  height: 100%;
}
.team__exp-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.team__exp-nameblock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team__exp-name {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.team__exp-role {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #8e8e8e;
  margin: 0;
}
.team__exp-bio {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}
.team__thumbs {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.team__thumb {
  position: relative;
  width: 128px;
  height: 158px;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.team__thumb:hover { transform: scale(1.04); }
.team__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team__thumb span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  white-space: nowrap;
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials {
  padding: 120px 64px 160px;
}
.testimonials__head {
  text-align: left;
  margin-bottom: 76px;
}
.testimonials__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.testimonials__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-mark {
  width: 48px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.testimonials__aside p {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}
.testimonials__panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  overflow: hidden;
}
.testimonials__list {
  display: flex;
  gap: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial__quote {
  font-size: 18px;
  line-height: 1.4;
  color: #d8d8d8;
  letter-spacing: -0.04em;
  margin: 0;
}
.testimonial__author {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: auto;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  border: 1px solid #272727;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.author__name {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.04em;
}
.testi-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-nav__btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.testi-nav__btn:hover {
  color: var(--accent);
}
.testi-nav__btn svg {
  width: 20px;
  height: 20px;
}
.testi-nav__track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.testi-nav__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  width: 33.33%;
  transition: width 0.3s ease;
}

/* =====================================================
   CTA
   ===================================================== */
.cta {
  padding: 200px 64px;
  margin-bottom: 200px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  isolation: isolate;
}
.cta__title {
  font-size: clamp(48px, 8vw, 124px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 300;
  margin: 0;
  max-width: 1100px;
}
.cta__title strong {
  font-weight: 700;
  color: #fff;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  cursor: default;
}
.cta__title strong:hover {
  color: var(--accent);
  text-shadow:
    0 0 12px rgba(241, 163, 0, 0.45),
    0 0 30px rgba(241, 163, 0, 0.2),
    0 0 60px rgba(241, 163, 0, 0.08);
}
.cta__text {
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #929292;
  max-width: 1000px;
  margin: 0;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: linear-gradient(180deg, #f1a300 0%, #d49000 100%);
  color: #010101;
  padding: 120px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
}
.footer__logo {
  display: block;
}
.footer__logo img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0);
}
.footer__col h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.footer__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  font-size: 16px;
  line-height: 1.6;
}
.footer__lists li {
  padding: 2px 0;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.socials a img {
  width: 50px;
  height: 50px;
  display: block;
}
.footer__copy {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #282828;
  margin: 64px 0 0;
  letter-spacing: -0.02em;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1100px) {
  :root { --pad: 32px; }
  .about__inner { flex-direction: column; gap: 48px; }
  .about__left { flex: unset; width: 100%; }
  .about__video-wrap { flex: unset; width: 100%; max-width: 480px; aspect-ratio: 420 / 849; }
  .about__text { flex: unset; width: 100%; }
  .why__head,
  .case__intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .card { flex: 0 0 340px; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .diff {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .diff__media {
    min-height: 320px;
    order: -1;
  }
  .diff__item {
    padding: 40px 32px;
  }
  .diff__title { font-size: 26px; }
  .diff__copy { font-size: 18px; }
  .case__gallery { grid-template-columns: repeat(2, 1fr); }
  .navbar__links { gap: 18px; }
  .navbar__links a { font-size: 12px; }
  .navbar__inner { gap: 64px; padding: 16px 24px; }
  .navbar__cta { padding: 14px 18px; font-size: 13px; }
}
@media (max-width: 820px) {
  :root { --pad: 32px; }

  /* ── Navbar ── */
  .navbar__links { display: none; }
  .navbar__cta:not(.navbar__cta--mobile) { display: none; }
  .navbar__burger { display: flex; }
  .navbar__inner { justify-content: space-between; padding: 18px 28px; }
  .navbar { border-radius: 999px; width: calc(100% - 32px); }

  /* ── Hero ── */
  .hero { padding: 120px 0 64px; }
  .hero__title { font-size: 80px; }
  .hero__sub { font-size: 15px; }

  /* ── About ── */
  .about { padding: 80px 0 80px; }
  .about__inner { flex-direction: column; gap: 40px; align-items: center; text-align: center; }
  .about__left { flex: unset; width: 100%; align-items: center; }
  .about__video-wrap { flex: unset; width: 100%; max-width: 480px; align-self: center; }
  .about__text { flex: unset; width: 100%; font-size: 10px; text-align: center; }

  /* ── Fotoc title tablet ── */
  .fotoc__title { font-size: 42px; max-width: 520px; }

  /* ── Projects ── */
  .case__intro { grid-template-columns: 1fr; gap: 24px; }
  .case__copy { font-size: 15px; }
  .case__gallery { grid-template-columns: repeat(2, 1fr); }

  /* ── Por Que Venza ── */
  .why__head { grid-template-columns: 1fr; gap: 24px; }
  .card { flex: 0 0 300px; }

  /* ── Diferenciais ── */
  .diff { grid-template-columns: 1fr; gap: 24px; }
  .diff__media { min-height: 480px; order: -1; }
  .diff__item { padding: 28px 24px; }
  .diff__title { font-size: 22px; }
  .diff__copy { font-size: 15px; }

  /* ── Team ── */
  .team__head .h2 { font-size: 36px; }
  .team__expanded { grid-template-columns: 320px 1fr; gap: 24px; align-items: start; }
  .team__exp-left { aspect-ratio: 3 / 5; border-radius: 20px; }
  .team__exp-photo { border-radius: 20px; }
  .team__exp-name { font-size: 28px; }
  .team__exp-role { font-size: 16px; }
  .team__exp-bio { font-size: 14px; line-height: 1.6; }
  .team__thumbs { justify-content: flex-start; }
  .team__thumb { width: 110px; height: 136px; }

  /* ── Feedbacks ── */
  .testimonials__row { grid-template-columns: 1fr; gap: 32px; }
  .testimonials__aside p { font-size: 28px; }

  /* ── CTA ── */
  .btn--xl { font-size: 16px; padding: 24px 44px; }

  /* ── Footer ── */
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__lists { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  /* ─────────────────────────────────────────────────
   * Mobile scale tokens
   * eyebrow  : 10px / 0.12em
   * tag/chip : 11px / pad 6px 10px / gap 6px
   * btn std  : 13px / pad 10px 22px
   * heading  : 26px / -0.04em / lh 1.2
   * body     : 14px / lh 1.6
   * caption  : 11px
   * ─ Exceções: .hero e .cta mantêm escala própria ─
   * ───────────────────────────────────────────────── */
  :root { --pad: 20px; }

  /* ---- Navbar ---- */
  .navbar { top: 16px; width: calc(100% - 24px); }
  .navbar__inner { padding: 14px 20px; }
  .navbar__logo img { height: 24px; }

  /* ── Tokens globais ── */
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin: 0 0 10px;
  }
  .h2 {
    font-size: 32px;
    letter-spacing: -0.04em;
    line-height: 1.2;
  }
  .tag {
    font-size: 10px;
    padding: 6px 10px;
  }
  .tags { gap: 6px; }
  .chip {
    font-size: 11px;
    padding: 6px 10px;
    gap: 4px;
  }
  .btn--primary {
    font-size: 13px;
    padding: 16px 18px;
  }
  .fotoc__text .btn--primary {
    font-size: 18px;
    padding: 22px 36px;
  }
  .fotoc__nav--mobile { display: flex; }
  .fotoc__nav--desktop { display: none; }

  /* ── Fotoc mobile ── */
  .fotoc { height: 100svh; min-height: 600px; }
  .fotoc__content { padding: 40px 24px 48px; }
  .fotoc__brand span { font-size: 9px; letter-spacing: 0.1em; }
  .fotoc__brand strong { font-size: 14px; }
  .fotoc__title {
    font-size: 36px;
    letter-spacing: -0.04em;
    line-height: 1.08;
    max-width: 320px;
  }
  .fotoc__sub { font-size: 13px; line-height: 1.4; letter-spacing: -0.02em; max-width: 300px; }
  .fotoc__text .btn--primary {
    font-size: 13px;
    padding: 14px 22px;
    margin-top: 16px;
  }
  .fotoc__nav { gap: 8px; }
  .fotoc__arrow { width: 40px; height: 40px; }
  .fotoc__arrow img { width: 40px; height: 40px; }
  .btn--lg {
    font-size: 13px;
    padding: 16px 18px;
  }

  .navbar__dropdown {
    background: rgba(10, 13, 28, 0.65);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    backdrop-filter: saturate(180%) blur(40px);
  }
  .hero { min-height: auto; padding: 100px 0 64px; text-align: center; }
  .hero .display {
    font-size: 48px;
    letter-spacing: -0.06em;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .hero__title {
    font-size: 48px;
    letter-spacing: -0.06em;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .hero__sub { font-size: 13px; line-height: 1.6; }
  .hero__cta { flex-direction: column; align-items: center; gap: 16px; }
  .hero__circle img { display: none; }
  .hero__circle { width: 100%; }

  /* ── Clients ── */
  .clients { padding: 40px 0; }
  .clients__list { gap: 0; flex-wrap: nowrap; }
  .clients__list li { padding: 0 20px; }
  .client-logo { height: 48px; max-width: 168px; }
  .client-logo--sm { height: 38px; max-width: 132px; }
  .client-logo--lg { height: 68px; max-width: 216px; }

  /* ── About ── */
  .about { padding: 64px 0; }
  .about__inner { flex-direction: column; gap: 32px; }
  .about__left { flex: unset; width: 100%; }
  .about__heading { font-size: 40px; }
  .about__video-wrap { flex: unset; width: 100%; max-width: 380px; align-self: center; }
  .about__text { flex: unset; width: 100%; font-size: 14px; line-height: 1.6; }
  .about__play-btn { width: 72px; height: 72px; }
  .about__play-btn svg { width: 72px; height: 72px; }

  /* ── Projects ── */
  .projects { padding: 64px 20px; }
  .projects > .display {
    font-size: 64px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  /* Disable sticky stacking on mobile — content taller than viewport
     is inaccessible when frozen at top:0, so revert to normal flow */
  .case {
    position: static;
    padding: 40px 0 0;
    z-index: auto;
  }
  .case:not(:last-child) {
    padding-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 48px;
  }
  .case__head { flex-direction: row; gap: 12px; align-items: center; flex-wrap: wrap; }
  .case__intro { grid-template-columns: 1fr; gap: 20px; }
  .case__title { font-size: 24px; letter-spacing: -0.04em; line-height: 1.2; }
  .case__copy { grid-template-columns: 1fr; gap: 12px; font-size: 14px; line-height: 1.6; }
  .case__gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .case__img { aspect-ratio: 4 / 5; }
  .projects .center { padding: 0 0 64px; margin-top: 48px; }

  /* ── Por Que Venza ── */
  .why { padding: 64px 20px; }
  .why__head { grid-template-columns: 1fr; gap: 20px; }
  .why__text { font-size: 16px; line-height: 1.6; }
  .card { flex: 0 0 80vw; }
  .card__title { font-size: 26px; letter-spacing: -0.04em; }
  .card__body { font-size: 14px; line-height: 1.6; }
  .cards__wrapper { margin-bottom: 80px; }

  /* ── Diferenciais ── */
  .diff-section { padding: 64px 20px; }
  .diff { grid-template-columns: 1fr; gap: 0; }
  .diff__tabs { flex-direction: column; }
  .diff__item { padding: 20px 16px; gap: 8px; }
  .diff__title { font-size: 20px; letter-spacing: -0.04em; line-height: 1.2; }
  .diff__copy { font-size: 14px; line-height: 1.6; }
  .diff__media { min-height: 360px; border-radius: 12px; order: -1; margin-bottom: 32px; }

  /* ── Team ── */
  .team { padding: 64px 20px 48px; }
  .team__head { margin-bottom: 40px; }
  .team__head .h2 { font-size: 26px; letter-spacing: -0.04em; }
  .team__expanded { grid-template-columns: 1fr; gap: 24px; }
  .team__exp-left { aspect-ratio: 3 / 4; border-radius: 20px; }
  .team__exp-photo { border-radius: 20px; }
  .team__exp-right { gap: 12px !important; }
  .team__exp-info { gap: 12px; }
  .team__exp-nameblock { gap: 8px !important; }
  .team__exp-name { font-size: 26px; letter-spacing: -0.04em; line-height: 1.2; }
  .team__exp-role { font-size: 14px; line-height: 1.6; }
  .team__exp-bio { font-size: 14px; line-height: 1.6; }
  .team__thumbs { gap: 10px; }
  .team__thumb { width: 96px; height: 120px; border-radius: 10px; }

  /* ── Feedbacks ── */
  .testimonials { padding: 64px 20px 80px; }
  .testimonials__head { margin-bottom: 40px; }
  .testimonials__row { grid-template-columns: 1fr; gap: 32px; }
  .testimonials__aside p { font-size: 22px; letter-spacing: -0.04em; line-height: 1.2; }
  .quote-mark { width: 32px; }
  .testimonial__quote { font-size: 14px; line-height: 1.6; }
  .testimonial__author { gap: 10px; }
  .author__name { font-size: 13px; }

  /* ── CTA (escala própria) ── */
  .cta { padding: 80px 20px; gap: 32px; }
  .cta__title { font-size: 36px; letter-spacing: -0.05em; line-height: 1.1; }
  .cta__text { font-size: 16px; line-height: 1.6; }
  .btn--xl { font-size: 16px; padding: 22px 24px; width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer { padding: 80px 0 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__lists { grid-template-columns: 1fr 1fr; }
  .footer__copy { font-size: 11px; margin-top: 40px; }
  .socials { gap: 16px; }

  /* ── Bridge ── */
  .bridge { height: 100vh; }
  .bridge__slogan { width: 100%; }
  .bridge__logo { width: min(60vh, 380px); }
  .bridge__glow { width: 360px; height: 360px; }
  .bridge__burst { width: 300px; height: 300px; }

  /* ── Footer ── */