@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

:root {
  --ink-1000: #050607;
  --ink-950: #08090a;
  --ink-900: #0d0e10;
  --ink-850: #131518;
  --ink-800: #1a1c1f;
  --paper-100: #fffef9;
  --paper-90: #f4f1e9;
  --paper-80: #dedbd2;
  --paper-70: #c3c0b8;
  --paper-55: #96938d;
  --paper-45: var(--paper-55);
  --paper-35: #65635f;
  --accent: #d8d6ce;
  --accent-strong: #f1eee5;
  --accent-light: #fffef9;
  --accent-ink: #0a0b0d;

  --page: var(--ink-950);
  --surface: var(--ink-900);
  --surface-raised: var(--ink-850);
  --text: var(--paper-90);
  --text-strong: var(--paper-100);
  --muted: var(--paper-55);
  --subtle: var(--paper-35);
  --border: rgb(255 253 250 / 0.09);
  --border-strong: rgb(255 253 250 / 0.17);
  --accent-soft: rgb(216 214 206 / 0.14);
  --accent-glow: rgb(216 214 206 / 0.27);
  --focus: var(--accent-light);

  --font-display: "Manrope", Arial, sans-serif;
  --font-editorial: "Cormorant Garamond", Georgia, serif;
  --font-ui: var(--font-display);
  --rail: min(70rem, calc(100vw - 6rem));
  --section-space: clamp(6rem, 11vw, 9rem);
  --radius-xs: 0.55rem;
  --radius-sm: 0.85rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.8rem;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
  --fast: 180ms;
  --normal: 340ms;
  --slow: 760ms;

  --glass-bg: linear-gradient(145deg, rgb(27 29 32 / 0.78), rgb(8 9 10 / 0.76));
  --glass-shadow: 0 2rem 6rem rgb(0 0 0 / 0.48);
  --dock-height: 4.25rem;
  --dock-indicator-size: 3rem;
  --dock-x: 0px;
  --dock-stretch: 1;
  --dock-icon-shift: 0px;
  --dock-clearance: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: var(--page);
  color-scheme: dark;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  touch-action: pan-x pan-y pinch-zoom;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
  background:
    radial-gradient(circle at 50% 2%, rgb(216 214 206 / 0.07), transparent 30rem),
    var(--page);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-x pan-y pinch-zoom;
}

html.agenda-interaction-active {
  overflow: hidden;
  overscroll-behavior: none;
}

body.agenda-interaction-active {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

main {
  width: 100%;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(circle, rgb(255 253 250 / 0.105) 0.75px, transparent 0.85px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a, summary { touch-action: manipulation; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

:is(a, button, summary):focus-visible {
  outline: 2px solid var(--paper-100);
  outline-offset: 3px;
  box-shadow:
    0 0 0 0.2rem rgb(8 9 10),
    0 0 0 0.42rem rgb(255 254 249);
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--paper-100);
  color: var(--ink-950);
  transition: transform var(--fast) var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page-rail {
  position: relative;
  width: var(--rail);
  max-width: 100%;
  margin-inline: auto;
  border-inline: 1px dashed rgb(255 253 250 / 0.105);
}

.page-rail::before,
.page-rail::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgb(255 253 250 / 0.15) 0 3px, transparent 3px 8px);
}

.page-rail::before { top: 0; }
.page-rail::after { bottom: 0; }

.glass-panel {
  position: relative;
  border: 1px solid var(--border-strong);
  background: var(--glass-bg);
  box-shadow: inset 0 1px 0 rgb(255 253 250 / 0.07), var(--glass-shadow);
  backdrop-filter: blur(20px) saturate(118%);
  -webkit-backdrop-filter: blur(20px) saturate(118%);
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: inherit;
  background: radial-gradient(24rem circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgb(255 253 250 / 0.075), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal) ease;
}

.glass-panel:hover::after { opacity: 1; }

.floating-nav {
  position: fixed;
  top: 1.4rem;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(64rem, calc(100vw - 2rem));
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transform: translateX(-50%);
}

.nav-shell {
  position: relative;
  width: min(46rem, 100%);
  flex: 1 1 46rem;
  display: grid;
  grid-template-columns: 9rem repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: var(--dock-height);
  padding: 0.25rem;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgb(255 253 250 / 0.055), transparent 46%),
    rgb(11 11 10 / 0.78);
  box-shadow:
    0 1.25rem 3.5rem rgb(0 0 0 / 0.42),
    inset 0 1px 0 rgb(255 253 250 / 0.08),
    inset 0 -1px 0 rgb(0 0 0 / 0.56);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
  isolation: isolate;
}

.dock-direct-cta {
  position: relative;
  display: inline-grid;
  min-height: 2.85rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0 0.95rem;
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-pill);
  background: var(--accent-strong);
  box-shadow: 0 0.7rem 2rem rgb(216 214 206 / 0.12);
  color: var(--accent-ink);
  font-size: 0.7344rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--fast) var(--ease-out), background var(--fast) ease, opacity var(--fast) ease;
}

.dock-direct-cta:hover {
  transform: translateY(-2px);
  background: var(--paper-100);
}

.dock-direct-cta::after {
  position: absolute;
  inset: -0.16rem;
  border: 1px solid rgb(232 230 222 / 0.22);
  border-radius: inherit;
  box-shadow: 0 0 0 0.16rem rgb(232 230 222 / 0.06), 0 0.55rem 1.5rem rgb(216 214 206 / 0.12);
  content: "";
  opacity: 0.18;
  pointer-events: none;
  transform: scale(0.99);
  animation: dock-direct-cta-pulse 2.8s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes dock-direct-cta-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.99);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.045);
  }
}

.dock-wordmark {
  z-index: 3;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-self: start;
  padding-left: 1rem;
  color: var(--paper-90);
  font-family: var(--font-display);
  font-size: 1.122rem;
  line-height: 1;
  white-space: nowrap;
}

.dock-wordmark i { color: var(--paper-55); font-style: normal; font-weight: 400; }

.dock-item {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 1.45rem 0.9rem;
  align-content: center;
  justify-items: center;
  min-width: 0;
  min-height: 3.7rem;
  gap: 0.12rem;
  border-radius: var(--radius-pill);
  color: var(--paper-55);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: color var(--normal) ease;
}

.dock-icon {
  display: grid;
  width: 1.28rem;
  height: 1.28rem;
  place-items: center;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms var(--ease-out), color var(--normal) ease;
  will-change: transform;
}

.dock-icon svg { width: 100%; height: 100%; }

.dock-label {
  overflow: hidden;
  max-width: 100%;
  font-size: 0.6834rem;
  font-weight: 650;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: transform 420ms var(--ease-out);
}

.dock-item:hover { color: var(--paper-90); }
.dock-item.is-active { color: var(--accent-light); cursor: grab; touch-action: pan-y; }
.dock-item.is-active .dock-icon {
  color: var(--accent-ink);
  transform: translate3d(0, -0.5rem, 0) scale(1.04);
}
.dock-item.is-active .dock-label { transform: translateY(0.08rem); }

.dock-indicator {
  position: absolute;
  top: -0.35rem;
  left: 0;
  z-index: 2;
  width: var(--dock-indicator-size);
  height: var(--dock-indicator-size);
  opacity: 0;
  transform: translate3d(var(--dock-x), 0, 0) scaleX(var(--dock-stretch));
  transform-origin: center;
  pointer-events: none;
  will-change: transform;
  transition: transform 440ms var(--ease-out), opacity var(--fast) ease;
}

.liquid-dock.is-ready .dock-indicator { opacity: 1; }
.liquid-dock.is-positioning .dock-indicator,
.liquid-dock.is-dragging .dock-indicator { transition: none; }
.liquid-dock.is-dragging .dock-item.is-active .dock-icon {
  transform: translate3d(var(--dock-icon-shift), -0.5rem, 0) scale(1.04);
  transition: none;
}

.dock-indicator::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 50%;
  z-index: -2;
  width: 6rem;
  height: 5rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent-glow), rgb(216 214 206 / 0.06) 48%, transparent 72%);
  filter: blur(0.45rem);
  transform: translateX(-50%);
}

.dock-indicator::after {
  content: "";
  position: absolute;
  inset: -0.15rem;
  z-index: -1;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(0.5rem);
}

.dock-indicator-core {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(248 246 238 / 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 22%, rgb(255 253 250 / 0.86), transparent 13%),
    radial-gradient(circle at 46% 40%, var(--accent-light), var(--accent-strong) 54%, var(--accent) 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 253 250 / 0.62),
    inset 0 -0.4rem 0.75rem rgb(8 9 10 / 0.35),
    0 0.4rem 1.1rem var(--accent-glow),
    0 1.7rem 3rem rgb(216 214 206 / 0.15);
}

#topo,
#metodo,
#casos,
#contato,
#agenda,
#faq { scroll-margin-top: 6.5rem; }

.primary-button,
.secondary-button {
  display: inline-grid;
  min-height: 3.25rem;
  place-items: center;
  padding: 0 1.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.918rem;
  font-weight: 650;
  transition: transform var(--fast) var(--ease-out), border-color var(--fast) ease, background var(--fast) ease;
}

.primary-button {
  border: 1px solid var(--accent-light);
  background: var(--accent);
  box-shadow: 0 0 0 0.36rem rgb(216 214 206 / 0.09), 0 1rem 3rem rgb(216 214 206 / 0.14);
  color: var(--accent-ink);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
}

.secondary-button {
  border: 1px solid var(--border-strong);
  background: rgb(255 253 250 / 0.025);
  color: var(--paper-70);
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgb(255 253 250 / 0.3);
  background: rgb(255 253 250 / 0.055);
  color: var(--paper-90);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.7344rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--paper-70);
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  --delivery-scooter-width: 5.9rem;
  --delivery-ribbon-gap: 5.95rem;
  --delivery-tow-duration: 5s;
  position: relative;
  width: min(100%, 34rem);
  height: 5.4rem;
  margin: 0;
  overflow: clip;
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}

.delivery-ribbon-mask {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: calc(100% - var(--delivery-ribbon-gap));
  min-width: 0;
}

.delivery-ribbon {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 2.9rem;
  place-items: center;
  padding: 0.52rem 0.85rem 0.55rem 1.15rem;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0.55rem 50%);
  background: linear-gradient(110deg, rgb(216 214 206 / 0.98), var(--paper-100) 58%, rgb(216 214 206 / 0.96));
  box-shadow: 0 0.7rem 1.8rem rgb(0 0 0 / 0.24), inset 0 1px 0 rgb(255 255 255 / 0.7);
}

.delivery-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(102deg, transparent 0 0.48rem, rgb(8 9 10 / 0.025) 0.5rem 0.54rem);
  pointer-events: none;
}

.delivery-ribbon-text {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
  text-wrap: balance;
}

.delivery-scooter {
  position: absolute;
  top: 0;
  left: calc(100% - var(--delivery-scooter-width));
  z-index: 2;
  display: block;
  width: var(--delivery-scooter-width);
  height: 5.3rem;
}

.delivery-scooter::before {
  content: "";
  position: absolute;
  top: 2.46rem;
  left: -0.5rem;
  width: 0.75rem;
  height: 1px;
  background: var(--paper-80);
  box-shadow: 0 0 0.45rem rgb(255 254 249 / 0.32);
}

.delivery-scooter-art {
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--paper-100);
  filter: drop-shadow(0 0.35rem 0.5rem rgb(0 0 0 / 0.38));
}

.delivery-scooter-art * { vector-effect: non-scaling-stroke; }

.delivery-scooter-body {
  fill: var(--paper-100);
  stroke: var(--paper-100);
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.delivery-scooter-line {
  fill: none;
  stroke: var(--paper-100);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-scooter-box {
  fill: var(--paper-90);
  stroke: var(--paper-100);
  stroke-width: 1.4;
}

.delivery-scooter-box-mark {
  fill: none;
  stroke: var(--ink-950);
  stroke-width: 1;
  opacity: 0.38;
}

.delivery-scooter-wheel {
  transform-box: fill-box;
  transform-origin: center;
}

.delivery-scooter-wheel circle {
  fill: var(--ink-950);
  stroke: var(--paper-100);
  stroke-width: 2;
}

.delivery-scooter-wheel path {
  fill: none;
  stroke: var(--paper-70);
  stroke-width: 1;
}

.js .delivery-tow:not(.is-tow-complete) .delivery-ribbon-mask { clip-path: inset(0 100% 0 0); }
.js .delivery-tow:not(.is-tow-complete) .delivery-scooter {
  left: 0;
  opacity: 0;
  transform: translateX(-100%) translateY(0.12rem) rotate(-3deg);
}

.js .delivery-tow.is-towing .delivery-ribbon-mask {
  animation: delivery-ribbon-unfurl var(--delivery-tow-duration) cubic-bezier(.45, 0, .2, 1) forwards;
}

.js .delivery-tow.is-towing .delivery-scooter {
  animation: delivery-scooter-ride var(--delivery-tow-duration) cubic-bezier(.45, 0, .2, 1) forwards;
}

.js .delivery-tow.is-towing .delivery-scooter-art {
  animation: delivery-scooter-bob 250ms ease-in-out 17 alternate;
}

.js .delivery-tow.is-towing .delivery-scooter-wheel {
  animation: delivery-scooter-wheel-spin 410ms linear 10;
}

@keyframes delivery-ribbon-unfurl {
  0%, 5% { clip-path: inset(0 100% 0 0); }
  82%, 100% { clip-path: inset(0 0 0 0); }
}

@keyframes delivery-scooter-ride {
  0% {
    left: 0;
    opacity: 0;
    transform: translateX(-100%) translateY(0.12rem) rotate(-3deg);
  }
  6% { opacity: 1; }
  30% { transform: translateX(-38%) translateY(-0.08rem) rotate(1deg); }
  55% { transform: translateX(-12%) translateY(0.05rem) rotate(-0.5deg); }
  82%, 100% {
    left: calc(100% - var(--delivery-scooter-width));
    opacity: 1;
    transform: none;
  }
}

@keyframes delivery-scooter-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-0.08rem); }
}

@keyframes delivery-scooter-wheel-spin {
  to { transform: rotate(1turn); }
}

.hero {
  display: grid;
  min-height: max(48rem, 100svh);
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 8.8rem clamp(2rem, 5vw, 4.5rem) 6.2rem;
  overflow: clip;
}

.hero-glow {
  position: absolute;
  top: 8%;
  right: -10%;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(216 214 206 / 0.16), transparent 67%);
  filter: blur(2.2rem);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 3; }
.hero h1 {
  max-width: 48rem;
  margin: 1.7rem 0 0;
  line-height: 0.92;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.headline-sans,
.headline-serif { display: block; }

.headline-sans {
  color: var(--text-strong);
  font-size: clamp(3.162rem, 5.916vw, 5.61rem);
  font-weight: 520;
}

.headline-serif {
  margin-top: 0.12em;
  color: var(--paper-70);
  font-family: var(--font-editorial);
  font-size: clamp(3.06rem, 4.896vw, 4.896rem);
  font-weight: 400;
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 43rem;
  margin: 2rem 0;
  color: var(--paper-55);
  font-size: clamp(1.02rem, 1.377vw, 1.122rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero .button-row { justify-content: flex-start; }
.button-note { margin: 1rem 0 0; color: var(--subtle); font-size: 0.7344rem; }

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(29rem, 100%);
  justify-self: end;
}

.media-window {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hero-window {
  aspect-ratio: 4 / 5.15;
  transform: rotate(1.2deg);
}

.window-bar {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 3.15rem;
  border-bottom: 1px solid var(--border);
  background: rgb(7 7 6 / 0.83);
}

.window-dots {
  display: flex;
  gap: 0.34rem;
  padding-inline: 1rem;
}

.window-dots i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--paper-35);
}

.window-dots i:first-child { background: var(--accent); }
.window-title { color: var(--paper-55); font-size: 0.714rem; text-align: center; }
.window-state {
  margin-right: 0.9rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--paper-55);
  font-size: 0.5916rem;
}

.hero-poster {
  position: relative;
  height: calc(100% - 3.15rem);
  overflow: hidden;
  background: var(--surface);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0) contrast(1.06) brightness(0.78);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(5 5 4 / 0.06) 34%, rgb(5 5 4 / 0.88) 100%);
}

.visual-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 1px solid rgb(255 253 250 / 0.24);
  border-radius: 50%;
  background: rgb(11 11 10 / 0.5);
  box-shadow: 0 0 0 0.55rem rgb(255 253 250 / 0.035);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

.visual-play i {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid var(--paper-90);
}

.hero-poster figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 4;
  display: grid;
  gap: 0.25rem;
}

.hero-poster figcaption strong { color: var(--paper-100); font-size: 0.9588rem; font-weight: 600; }
.hero-poster figcaption span { color: var(--paper-55); font-size: 0.714rem; }

.floating-card {
  position: absolute;
  z-index: 5;
  width: 12rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.floating-card-left { top: 33%; left: -7.5rem; transform: rotate(-5deg); }
.floating-card-right { top: 8%; right: -5.8rem; transform: rotate(5deg); }
.card-status { display: flex; align-items: center; gap: 0.45rem; color: var(--paper-55); font-size: 0.6324rem; }
.card-status i { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0.75rem var(--accent-glow); }
.floating-card strong { display: block; margin-top: 1.35rem; color: var(--paper-90); font-size: 0.8568rem; font-weight: 550; line-height: 1.35; }
.floating-card ul { display: grid; gap: 0.65rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.floating-card li { display: grid; grid-template-columns: 1.4rem 1fr; color: var(--paper-55); font-size: 0.6324rem; }
.floating-card li span { color: var(--paper-35); font-variant-numeric: tabular-nums; }

.problem-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(24rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: auto;
  padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 4.5rem);
  border-block: 1px solid var(--border);
}

.problem-section h2 {
  font-size: clamp(2.856rem, 4.896vw, 4.692rem);
}

.problem-copy {
  display: grid;
  gap: 1.25rem;
}

.problem-copy p {
  max-width: 42rem;
  margin: 0;
  color: var(--paper-70);
  font-size: clamp(1.02rem, 1.53vw, 1.173rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.method { position: relative; }
.method-sticky { min-height: 64rem; padding: var(--section-space) clamp(2rem, 5vw, 4.5rem); }
.method-heading { position: relative; z-index: 3; }
.method-heading h2,
.case-copy h2,
.final-cta h2,
.agenda-copy h2,
.faq-heading h2 {
  margin: 1.2rem 0 0;
  color: var(--paper-100);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.043em;
  text-wrap: balance;
}

.method-heading h2 { font-size: clamp(2.754rem, 4.08vw, 3.57rem); }
.method-heading h2 em,
.case-copy h2 em,
.final-cta h2 em,
.agenda-copy h2 em,
.faq-heading h2 em {
  color: var(--paper-55);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.method-heading > p:last-child { margin: 1rem 0 0; color: var(--paper-55); font-size: 0.9384rem; }
.method-progress-dot,
.method-cta { display: none; }

.method-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(28rem, 1.55fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 4rem;
}

.method-copy-column {
  position: relative;
  min-height: 30rem;
  padding-left: 5.7rem;
}

.step-counter {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 4.2rem;
  height: 4.5rem;
  place-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-raised);
  text-align: center;
}

.step-counter span { color: var(--paper-35); font-size: 0.5916rem; }
.step-counter strong { color: var(--paper-90); font-family: var(--font-editorial); font-size: 1.785rem; font-weight: 400; line-height: 1; }
.step-line {
  position: absolute;
  top: 5.4rem;
  bottom: 5.5rem;
  left: 2.1rem;
  width: 1px;
  overflow: hidden;
  background: var(--border);
}
.step-line i {
  display: block;
  width: 100%;
  height: var(--method-progress, 0%);
  background: linear-gradient(var(--accent), var(--accent-light));
  transition: height var(--normal) var(--ease-soft);
}

.step-copy-stack { display: grid; gap: 1.3rem; }
.step-copy { position: relative; padding: 0.4rem 0 1.4rem; }
.step-copy h3 { margin: 0; color: var(--paper-90); font-size: 1.377rem; font-weight: 550; line-height: 1.1; }
.step-copy p { margin: 0.8rem 0 0; color: var(--paper-55); font-size: 0.8976rem; line-height: 1.55; }
.step-dot {
  position: absolute;
  top: 0.65rem;
  left: -3.95rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--ink-950);
  border-radius: 50%;
  background: var(--paper-35);
  box-shadow: 0 0 0 1px var(--border-strong);
}

.step-copy.is-active .step-dot { background: var(--accent-light); box-shadow: 0 0 0 1px var(--accent), 0 0 1rem var(--accent-glow); }

.method-destination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 5.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.method-destination span { grid-column: 1 / -1; color: var(--paper-35); font-size: 0.612rem; text-transform: uppercase; }
.method-destination strong { color: var(--accent-light); font-family: var(--font-editorial); font-size: 1.683rem; font-weight: 400; }
.method-destination i { color: var(--accent-light); font-size: 1.173rem; font-style: normal; }

.step-navigation {
  position: absolute;
  bottom: 4.7rem;
  left: 5.7rem;
  display: flex;
  gap: 0.6rem;
}

.step-navigation button {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform var(--fast) ease, background var(--fast) ease, border-color var(--fast) ease;
}

.step-navigation button::after {
  content: "";
  display: block;
  width: 0.34rem;
  height: 0.34rem;
  margin: auto;
  border-radius: 50%;
  background: var(--paper-35);
}

.step-navigation button:hover { transform: translateY(-2px); }
.step-navigation button.is-active { border-color: var(--accent); background: var(--accent-soft); }
.step-navigation button.is-active::after { background: var(--accent-light); }

.method-window { min-height: 30rem; }
.method-tabs { grid-template-columns: auto repeat(4, minmax(0, 1fr)); }
.method-tab {
  display: grid;
  height: 100%;
  place-items: center;
  border-left: 1px solid rgb(255 253 250 / 0.035);
  color: var(--paper-35);
  font-size: 0.6732rem;
  white-space: nowrap;
}
.method-tab.is-selected { background: rgb(255 253 250 / 0.045); color: var(--paper-70); }
.method-screens { position: relative; min-height: calc(30rem - 3.15rem); background: var(--surface); }
.method-screen { min-height: calc(30rem - 3.15rem); }
.screen-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.2rem;
  padding-inline: 1.4rem;
  border-bottom: 1px solid var(--border);
  color: var(--paper-70);
  font-size: 0.7344rem;
}
.screen-toolbar b {
  padding: 0.28rem 0.58rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--paper-35);
  font-size: 0.5916rem;
  font-weight: 500;
}

.diagnostic-board,
.structure-board,
.execution-board,
.optimize-board { min-height: calc(26.85rem - 3.2rem); }

.diagnostic-board { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 1rem; padding: 1.25rem; }
.diagnostic-focus {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at 25% 15%, var(--accent-soft), transparent 60%), var(--ink-850);
}
.diagnostic-focus span { color: var(--paper-35); font-size: 0.6528rem; }
.diagnostic-focus strong { margin-top: auto; color: var(--paper-90); font-family: var(--font-editorial); font-size: clamp(1.53rem, 2.448vw, 2.244rem); font-weight: 400; line-height: 1.05; }
.diagnostic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.diagnostic-grid span {
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgb(255 253 250 / 0.025);
  color: var(--paper-55);
  font-size: 0.714rem;
}

.structure-board { display: grid; place-content: center; padding: 2rem; text-align: center; }
.canvas-label { color: var(--paper-35); font-size: 0.6324rem; letter-spacing: 0.06em; text-transform: uppercase; }
.structure-board h3 { max-width: 34rem; margin: 1rem 0 0; color: var(--paper-90); font-size: clamp(2.142rem, 4.692vw, 4.08rem); font-weight: 500; line-height: 0.92; letter-spacing: -0.04em; }
.structure-board h3 em { color: var(--paper-55); font-family: var(--font-editorial); font-weight: 400; }
.angle-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin-top: 2rem; }
.angle-row span { padding: 0.48rem 0.9rem; border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--paper-55); font-size: 0.6732rem; }

.execution-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; padding: 1.25rem; }
.execution-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(165deg, transparent 30%, rgb(216 214 206 / 0.07)),
    var(--ink-850);
}
.execution-card span { margin-bottom: auto; color: var(--accent-light); font-family: var(--font-editorial); font-size: 2.244rem; }
.execution-card strong { color: var(--paper-90); font-size: 1.02rem; font-weight: 550; }
.execution-card small { margin-top: 0.35rem; color: var(--paper-35); font-size: 0.6426rem; }

.optimize-board { display: grid; align-content: center; gap: 0; padding: 1.5rem 2rem; }
.optimize-board > div {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  border-bottom: 1px solid var(--border);
}
.optimize-board span { color: var(--paper-35); font-size: 0.663rem; }
.optimize-board strong { color: var(--paper-70); font-size: 0.8364rem; font-weight: 520; }
.optimize-board i { width: 0.48rem; height: 0.48rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0.8rem var(--accent-glow); }
.optimize-board p { margin: 1.4rem 0 0; color: var(--paper-35); font-family: var(--font-editorial); font-size: 1.275rem; text-align: right; }

.js .method { height: 310vh; min-height: 140rem; }
.js .method-sticky { position: sticky; top: 0; height: 100svh; min-height: 48rem; overflow: hidden; }
.js .method-layout { position: absolute; inset: 20.2rem clamp(2rem, 5vw, 4.5rem) 3.2rem; margin: 0; }
.js .step-copy-stack { position: relative; }
.js .step-copy {
  position: absolute;
  inset: 0;
  transform: translateY(1.3rem);
  opacity: 0;
  pointer-events: none;
  filter: blur(0.45rem);
  transition: opacity 300ms ease, transform 520ms var(--ease-out), filter 300ms ease;
}
.js .step-copy.is-active { transform: translateY(0); opacity: 1; pointer-events: auto; filter: blur(0); }
.js .method-screens { height: calc(100% - 3.15rem); min-height: 0; overflow: hidden; }
.js .method-screen {
  position: absolute;
  inset: 0;
  min-height: 0;
  transform: translateY(1.3rem) scale(0.99);
  opacity: 0;
  pointer-events: none;
  filter: blur(0.5rem);
  transition: opacity 300ms ease, transform 520ms var(--ease-out), filter 300ms ease;
}
.js .method-screen.is-active { z-index: 2; transform: none; opacity: 1; pointer-events: auto; filter: blur(0); }
.js .diagnostic-board,
.js .structure-board,
.js .execution-board,
.js .optimize-board { height: calc(100% - 3.2rem); min-height: 0; }

@media (min-width: 45.01rem) {
  .method-cta {
    position: absolute;
    bottom: 8.45rem;
    left: 5.7rem;
    z-index: 4;
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border: 1px solid rgb(232 230 222 / 0.72);
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    box-shadow: 0 0.75rem 2rem rgb(216 214 206 / 0.16);
    color: var(--accent-ink);
    font-size: 0.7956rem;
    font-weight: 650;
    white-space: nowrap;
  }
}

@media (min-width: 45.01rem) and (max-height: 52rem) {
  .js .method-sticky { min-height: 0; }
  .js .method .method-layout {
    top: 17.75rem;
    bottom: 1.25rem;
  }
  .method-heading h2 { font-size: clamp(2.397rem, 3.57vw, 2.958rem); }
  .method-heading > p:last-child { margin-top: 0.65rem; }
  .method-copy-column,
  .method-window {
    height: 100%;
    min-height: 0;
  }
}

.cases-overview {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  min-height: auto;
  padding: clamp(5rem, 8vw, 7rem) clamp(2rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cases-overview h2,
.problem-section h2 {
  max-width: 58rem;
  margin: 0;
  color: var(--paper-100);
  font-size: clamp(2.958rem, 5.712vw, 5.406rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.043em;
  text-wrap: balance;
}

.problem-section h2 {
  font-size: clamp(2.856rem, 4.896vw, 4.692rem);
}

.cases-overview > p {
  max-width: 42rem;
  margin: 0;
  color: var(--paper-55);
  font-size: 1.02rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.case-study {
  min-height: 45rem;
  padding: var(--section-space) clamp(2rem, 5vw, 4.5rem);
  overflow: clip;
}

.case-halo {
  position: absolute;
  top: 50%;
  right: -7rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(216 214 206 / 0.24), rgb(216 214 206 / 0.06) 42%, transparent 70%);
  filter: blur(2rem);
  transform: translateY(-50%);
  pointer-events: none;
}

.case-study-reverse .case-halo { right: auto; left: -7rem; }
.case-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.6fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.case-study-reverse .case-layout {
  grid-template-columns: minmax(16rem, 0.6fr) minmax(0, 1.2fr);
}

.case-study-reverse .case-copy { order: 2; }
.case-study-reverse .case-video { order: 1; transform: rotate(1.8deg); }
.case-copy h2 { max-width: 48rem; font-size: clamp(2.958rem, 5.712vw, 5.406rem); }
.case-description {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: var(--paper-70);
  font-size: clamp(1.071rem, 1.734vw, 1.275rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.case-description .editorial-number {
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
}

.rank-growth-visual {
  --rank-growth-duration: 2.8s;
  --rank-growth-length: 520;
  position: relative;
  width: min(32rem, 100%);
  height: 11rem;
  margin-top: 2.25rem;
  isolation: isolate;
}

.rank-growth-visual::before {
  content: "";
  position: absolute;
  inset: 1.15rem 0.4rem 0.75rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 72% 38%, rgb(216 214 206 / 0.1), transparent 60%);
  filter: blur(1rem);
}

.rank-growth-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rank-growth-guide {
  fill: none;
  stroke: rgb(255 253 250 / 0.08);
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.rank-growth-trace-glow,
.rank-growth-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.rank-growth-trace-glow {
  stroke: var(--accent);
  stroke-width: 9;
  opacity: 0.12;
  filter: blur(0.35rem);
}

.rank-growth-trace {
  stroke: var(--paper-90);
  stroke-width: 2.2;
}

.rank-growth-dot {
  fill: var(--ink-950);
  stroke: var(--paper-90);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.rank-growth-dot-end {
  fill: var(--paper-100);
  filter: drop-shadow(0 0 0.55rem rgb(255 254 249 / 0.45));
}

.rank-growth-value {
  position: absolute;
  z-index: 2;
  color: var(--paper-90);
  font-family: var(--font-editorial);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.rank-growth-value-start { bottom: 0; left: 0; }
.rank-growth-value-end { top: 0; right: 0; color: var(--paper-100); }

.js .rank-growth-visual .rank-growth-trace-glow,
.js .rank-growth-visual .rank-growth-trace {
  stroke-dasharray: var(--rank-growth-length);
  stroke-dashoffset: var(--rank-growth-length);
}

.js .rank-growth-visual .rank-growth-dot-end,
.js .rank-growth-visual .rank-growth-value-end {
  opacity: 0;
}

.js .rank-growth-visual.is-visible .rank-growth-dot-end {
  animation: rank-growth-dot-arrive 560ms var(--ease-out) 2.42s forwards;
}

.js .rank-growth-visual.is-visible .rank-growth-value-end {
  animation: rank-growth-value-arrive 620ms var(--ease-out) 2.52s forwards;
}

@keyframes rank-growth-dot-arrive {
  0% { opacity: 0; transform: scale(0.2); }
  60% { opacity: 1; transform: scale(1.55); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes rank-growth-value-arrive {
  from { opacity: 0; transform: translateY(0.5rem); filter: blur(0.25rem); }
  to { opacity: 1; transform: none; filter: none; }
}

.result-flow {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  margin-top: 2.5rem;
}
.result-flow div { display: grid; gap: 0.25rem; }
.result-flow small { color: var(--paper-35); font-size: 0.6324rem; text-transform: uppercase; }
.result-flow strong { color: var(--paper-90); font-family: var(--font-editorial); font-size: clamp(1.581rem, 3.06vw, 2.703rem); font-weight: 400; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.result-flow i { padding-bottom: 0.25rem; color: var(--accent-light); font-family: var(--font-editorial); font-size: 1.785rem; font-style: normal; }
.result-period {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.36rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--paper-55);
  font-size: 0.6732rem;
}
.case-copy blockquote {
  max-width: 41rem;
  margin: 2.2rem 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--accent);
  color: var(--paper-70);
  font-family: var(--font-editorial);
  font-size: clamp(1.173rem, 2.04vw, 1.479rem);
  line-height: 1.4;
}

.case-video {
  position: relative;
  width: min(19rem, 100%);
  aspect-ratio: 9 / 15.5;
  justify-self: end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transform: rotate(-1.8deg);
  background:
    radial-gradient(circle at 50% 32%, rgb(216 214 206 / 0.16), transparent 32%),
    linear-gradient(145deg, var(--ink-800), var(--ink-1000));
}

.case-video-live {
  aspect-ratio: 9 / 16;
  background: var(--ink-1000);
  isolation: isolate;
}

.case-video-live::before { display: none; }

.case-video-player {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink-1000);
}

.video-audio-trigger {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  align-content: center;
  gap: 0.8rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--paper-100);
  cursor: pointer;
  transition: opacity var(--fast) ease;
}

.video-audio-label {
  padding: 0.48rem 0.82rem;
  border: 1px solid rgb(255 253 250 / 0.26);
  border-radius: var(--radius-pill);
  background: rgb(13 14 16 / 0.72);
  box-shadow: 0 0.75rem 2rem rgb(0 0 0 / 0.28);
  color: var(--paper-100);
  font-size: 0.7344rem;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.video-audio-trigger span {
  position: relative;
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 1px solid rgb(255 253 250 / 0.6);
  border-radius: 50%;
  background: rgb(13 14 16 / 0.58);
  box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 0.36), inset 0 1px 0 rgb(255 253 250 / 0.18);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.video-audio-trigger span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.24rem;
  border-top: 0.52rem solid transparent;
  border-bottom: 0.52rem solid transparent;
  border-left: 0.78rem solid currentColor;
}

[data-video-shell].is-audible .video-audio-trigger {
  opacity: 0;
  pointer-events: none;
}

.video-audio-trigger:focus-visible span {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.case-video-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 253 250 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 253 250 / 0.035) 1px, transparent 1px);
  background-size: 2.2rem 2.2rem;
  mask-image: radial-gradient(ellipse at center, black, transparent 78%);
}

.case-video::before {
  content: "";
  position: absolute;
  top: 11%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgb(216 214 206 / 0.25);
  border-radius: 50%;
  box-shadow: 0 0 4rem var(--accent-soft);
  transform: translateX(-50%);
}

.case-video-index {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgb(255 253 250 / 0.14);
  font-family: var(--font-editorial);
  font-size: 4.59rem;
  line-height: 1;
}

.visual-play-small { width: 3.6rem; height: 3.6rem; }
.case-video figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 3.8rem;
  left: 1.2rem;
  z-index: 4;
  display: grid;
  gap: 0.25rem;
}
.case-video figcaption strong { color: var(--paper-90); font-size: 0.8568rem; font-weight: 600; }
.case-video figcaption span { color: var(--paper-55); font-size: 0.6936rem; }
.case-video > small {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 4;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  color: var(--paper-35);
  font-size: 0.561rem;
  line-height: 1.35;
}

.more-testimonials[hidden] {
  display: none !important;
}

.more-testimonials {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 2vw, 2rem);
}

.more-testimonials-heading {
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.more-testimonials-heading .section-kicker {
  justify-content: center;
}

.more-testimonials-heading h2 {
  margin-top: 1.25rem;
  color: var(--paper-100);
  font-size: clamp(2.958rem, 5.712vw, 5.406rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.043em;
  text-wrap: balance;
}

.more-testimonials-heading > p:last-child {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  color: var(--paper-55);
  line-height: 1.65;
}

.testimonial-carousel {
  position: relative;
  display: grid;
  min-width: 0;
  gap: clamp(1rem, 2vw, 1.5rem);
  isolation: isolate;
}

.testimonial-carousel::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 4%;
  z-index: -1;
  width: min(34rem, 64vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(216 214 206 / 0.16), transparent 67%);
  filter: blur(1.5rem);
  pointer-events: none;
}

.testimonial-carousel-toolbar {
  display: flex;
  width: min(100%, 64rem);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.testimonial-watch-button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.85rem 1.7rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgb(14 15 17 / 0.84);
  box-shadow: inset 0 1px 0 rgb(255 253 250 / 0.05);
  color: var(--paper-90);
  font: 620 0.918rem/1 var(--font-ui);
  cursor: pointer;
  transition: border-color var(--fast) ease, background var(--fast) ease, transform var(--fast) ease;
}

.testimonial-watch-button:hover {
  border-color: rgb(232 230 222 / 0.58);
  background: rgb(216 214 206 / 0.15);
  transform: translateY(-1px);
}

.testimonial-watch-button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.testimonial-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.testimonial-carousel-status {
  min-width: 6.5rem;
  color: var(--paper-55);
  font-size: 0.6528rem;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.testimonial-carousel-controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgb(19 21 24 / 0.86);
  color: var(--paper-90);
  cursor: pointer;
  transition: border-color var(--fast) ease, background var(--fast) ease, color var(--fast) ease, opacity var(--fast) ease;
}

.testimonial-carousel-controls button:hover:not(:disabled) {
  border-color: rgb(232 230 222 / 0.65);
  background: rgb(216 214 206 / 0.18);
  color: var(--paper-100);
}

.more-testimonials-grid {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(41rem, 67vw, 50rem);
  min-width: 0;
  overflow: hidden;
  margin-top: -0.5rem;
  outline: none;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
}

.more-testimonials-grid:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.more-testimonial-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: clamp(18rem, 29vw, 24rem);
  aspect-ratio: 9 / 16;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 253 250 / 0.12);
  border-radius: 0.625rem;
  background: var(--ink-1000);
  box-shadow: 0 2rem 4.5rem rgb(0 0 0 / 0.58), inset 0 1px 0 rgb(255 253 250 / 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease, filter 320ms ease;
  will-change: transform, opacity;
}

.more-testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: linear-gradient(93deg, #0003 0%, #0000009e 109%, #000000b3 120%);
  opacity: 1;
  pointer-events: none;
  transition: none;
}

.more-testimonial-card.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: perspective(880px) translate(-20%, -46%) rotate(7deg) rotateX(10deg) scale(1);
}

.more-testimonial-card.is-next {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: perspective(880px) translate(-88%, -54%) rotate(-8deg) rotateX(10deg) scale(0.95);
}

.more-testimonial-card.is-hidden {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.35);
  transform: translate(-50%, -50%) scale(0.86);
}

.more-testimonial-card.is-active:focus-within {
  transform: perspective(880px) translate(-20%, -46%) rotate(7deg) rotateX(10deg) scale(1);
}

.more-testimonial-card-head {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  left: 0.85rem;
  z-index: 7;
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgb(255 253 250 / 0.12);
  border-radius: 0.625rem;
  background: rgb(8 8 7 / 0.46);
  box-shadow: inset 0 1px 0 rgb(255 253 250 / 0.06);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.more-testimonial-card-head > span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--paper-55);
  font-family: var(--font-editorial);
  font-size: 0.6732rem;
}

.more-testimonial-card-head div {
  display: grid;
  gap: 0.05rem;
}

.more-testimonial-card-head small {
  color: var(--accent-light);
  font-size: 0.5712rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.more-testimonial-card-head h3 {
  margin: 0;
  color: var(--paper-100);
  font-size: 1.1016rem;
  font-weight: 520;
  line-height: 1.05;
}

.more-testimonial-slot {
  grid-template-columns: minmax(5.5rem, 0.65fr) minmax(0, 1fr);
  align-items: center;
  min-height: 13rem;
  border: 1px dashed rgb(255 253 250 / 0.2);
  background:
    radial-gradient(circle at 20% 30%, rgb(216 214 206 / 0.13), transparent 40%),
    linear-gradient(145deg, rgb(19 21 24 / 0.86), rgb(8 9 10 / 0.94));
}

.more-testimonial-slot-media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgb(255 253 250 / 0.25);
  border-radius: calc(var(--radius-lg) * 0.7);
  background:
    linear-gradient(rgb(255 253 250 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 253 250 / 0.035) 1px, transparent 1px),
    rgb(6 6 5 / 0.8);
  background-size: 1.2rem 1.2rem;
}

.more-testimonial-slot-media span {
  position: absolute;
  top: 0.6rem;
  left: 0.65rem;
  color: var(--paper-35);
  font-size: 0.5916rem;
}

.more-testimonial-slot-media i {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.16rem;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.62rem solid var(--paper-55);
}

.more-testimonial-slot-copy {
  display: grid;
  gap: 0.45rem;
}

.more-testimonial-slot-copy small {
  color: var(--accent-light);
  font-size: 0.5916rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.more-testimonial-slot-copy h3 {
  color: var(--paper-90);
  font-size: clamp(1.122rem, 2.04vw, 1.479rem);
}

.more-testimonial-slot-copy p {
  color: var(--paper-55);
  font-size: 0.7956rem;
  line-height: 1.45;
}

.more-testimonial-copy {
  display: grid;
  gap: 0.6rem;
  padding: 0.5rem;
}

.more-testimonial-copy h3 {
  font-size: clamp(1.428rem, 2.244vw, 2.04rem);
}

.more-testimonial-copy > p:last-child {
  color: var(--paper-55);
  line-height: 1.55;
}

.more-testimonial-video,
.hero-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-1000);
  isolation: isolate;
}

.more-testimonial-video {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.hero-video-shell {
  height: calc(100% - 3.15rem);
}

.hero-video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink-1000);
}

.case-disclaimer {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 4rem auto 0;
  color: var(--paper-55);
  font-size: 0.765rem;
  line-height: 1.55;
  text-align: center;
}

.case-video-whatsapp {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(13.3rem, 100%);
  min-height: 2.75rem;
  margin: 1.25rem 0 0 auto;
  padding-inline: 1rem;
  font-size: 0.7956rem;
  isolation: isolate;
  -webkit-animation: case-whatsapp-button-pulse 1.55s ease-in-out infinite;
  animation: case-whatsapp-button-pulse 1.55s ease-in-out infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, box-shadow, filter;
}

@media (hover: hover) and (pointer: fine) {
  .case-video-whatsapp:hover {
    -webkit-animation: none;
    animation: none;
    transform: translateY(-2px) scale(1.03);
  }
}

.case-video-whatsapp::after {
  content: "";
  position: absolute;
  inset: -0.35rem;
  z-index: -1;
  border: 1px solid rgb(232 230 222 / 0.72);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  animation: case-whatsapp-pulse 1.9s ease-out infinite;
}

.case-video-whatsapp + .case-disclaimer {
  margin-top: 2rem;
}

@keyframes case-whatsapp-pulse {
  0% {
    opacity: 0.62;
    transform: scale(0.96);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes case-whatsapp-button-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 0 0.2rem rgb(216 214 206 / 0.1), 0 1rem 3rem rgb(216 214 206 / 0.15);
  }
  50% {
    transform: scale(1.06);
    filter: brightness(1.1);
    box-shadow: 0 0 0 0.75rem rgb(232 230 222 / 0.2), 0 0 2.25rem rgb(216 214 206 / 0.36);
  }
}

@keyframes case-whatsapp-accessible-pulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: 0 0 0 0.2rem rgb(216 214 206 / 0.12), 0 1rem 3rem rgb(216 214 206 / 0.16);
  }
  50% {
    filter: brightness(1.16);
    box-shadow: 0 0 0 0.8rem rgb(232 230 222 / 0.24), 0 0 2.5rem rgb(216 214 206 / 0.42);
  }
}

@keyframes case-whatsapp-accessible-ring {
  0%,
  100% { opacity: 0.12; }
  50% { opacity: 0.82; }
}

.final-cta {
  min-height: auto;
  overflow: clip;
  padding: var(--section-space) clamp(2rem, 6vw, 6rem) clamp(3.5rem, 5vw, 4.5rem);
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(44rem, 100%);
  height: 27rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(216 214 206 / 0.18), transparent 68%);
  filter: blur(2rem);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta .section-kicker { position: relative; justify-content: center; }
.final-cta h2 { position: relative; max-width: 56rem; margin-inline: auto; font-size: clamp(3.06rem, 6.324vw, 6.018rem); }
.final-cta > p:not(.section-kicker):not(.button-note) {
  position: relative;
  max-width: 39rem;
  margin: 2rem auto;
  color: var(--paper-55);
  line-height: 1.65;
}
.final-cta .button-row { position: relative; }
.final-cta > .button-note {
  position: relative;
  margin: 1rem 0 0;
  color: var(--subtle);
  font-size: 0.7344rem;
}

.agenda-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 4rem);
  min-height: auto;
  padding: clamp(4rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem) clamp(3.5rem, 6vw, 5rem);
}

.agenda-copy { max-width: 58rem; }
.agenda-copy h2 { max-width: 52rem; font-size: clamp(2.856rem, 5.1vw, 4.896rem); }
.agenda-copy > p:last-child { max-width: 30rem; margin: 1.5rem 0 0; color: var(--paper-55); line-height: 1.6; }
.agenda-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.4rem;
  min-height: 19rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
}
.calendar-mark {
  position: relative;
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--ink-850);
}
.calendar-mark::before { content: ""; position: absolute; top: 1.25rem; right: 0; left: 0; height: 1px; background: var(--border); }
.calendar-mark > span { position: absolute; top: 0.65rem; width: 0.35rem; height: 0.72rem; border-radius: var(--radius-pill); background: var(--accent); }
.calendar-mark > span:first-child { left: 1.2rem; }
.calendar-mark > span:nth-child(2) { right: 1.2rem; }
.calendar-mark strong { margin-top: 1rem; color: var(--paper-70); font-family: var(--font-editorial); font-size: 1.326rem; font-weight: 400; }
.agenda-status { display: flex; align-items: center; gap: 0.45rem; color: var(--paper-35); font-size: 0.6324rem; }
.agenda-status i { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: var(--accent); }
.agenda-card h3 { margin: 0.8rem 0 0; color: var(--paper-90); font-size: clamp(1.479rem, 2.754vw, 2.244rem); font-weight: 520; line-height: 1.08; }
.agenda-card p { margin: 0.6rem 0 0; color: var(--paper-35); font-size: 0.7344rem; }
.agenda-card .primary-button { grid-column: 1 / -1; justify-self: start; margin-top: 0.7rem; }

.agenda-card.agenda-card-live {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0.35rem;
  overflow: hidden;
  border-color: rgb(255 255 255 / 0.12);
  background:
    radial-gradient(circle at 50% 12%, rgb(216 214 206 / 0.1), transparent 25rem),
    #08090a;
}

.agenda-frame-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(31rem, 68svh, 38rem);
  min-width: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  border-radius: calc(var(--radius-lg) - 0.35rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  background: #08090a;
  color-scheme: dark;
}

.agenda-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #08090a;
  color-scheme: dark;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(1.05) saturate(0.9);
  pointer-events: none;
  touch-action: pan-y;
  overscroll-behavior: contain;
}

.agenda-frame-shell.is-interactive .agenda-frame {
  pointer-events: auto;
}

.agenda-activate {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 3;
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-md);
  background: rgb(7 7 6 / 0.82);
  color: var(--paper-90);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease;
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
}

.agenda-activate::before,
.agenda-preview-label,
.agenda-preview-title,
.agenda-activate small { display: none; }

.agenda-preview-label {
  color: var(--accent-soft);
  font-size: 0.663rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.agenda-preview-title {
  color: var(--paper-90);
  font-size: clamp(1.632rem, 5.1vw, 2.295rem);
  font-weight: 520;
  line-height: 1.05;
}

.agenda-preview-action {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #090a0b;
  font-size: 0.7956rem;
  font-weight: 720;
  box-shadow: 0 0 2.6rem rgb(216 214 206 / 0.24);
}

.agenda-activate small {
  max-width: 19rem;
  color: var(--paper-45);
  font-size: 0.7038rem;
  line-height: 1.5;
}

.agenda-frame-shell.is-interactive .agenda-activate {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.agenda-exit {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 5;
  display: none;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-pill);
  background: rgb(7 7 6 / 0.88);
  color: var(--paper-80);
  font: 650 0.6834rem/1 var(--font-display);
  box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.agenda-frame-shell.is-interactive .agenda-exit {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  display: inline-flex;
}

.agenda-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.agenda-fallback span { color: var(--paper-55); font-size: 0.7344rem; }
.agenda-fallback .secondary-button { flex: 0 0 auto; min-height: 2.8rem; }

.faq-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(28rem, 1.38fr);
  gap: clamp(3rem, 7vw, 7rem);
  min-height: auto;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem) var(--section-space);
}
.faq-heading h2 { font-size: clamp(2.856rem, 4.59vw, 4.233rem); }
.faq-heading > p:last-child { margin: 1.5rem 0 0; color: var(--paper-55); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  position: relative;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  padding: 1rem 3.2rem 1rem 0;
  color: var(--paper-70);
  font-size: 0.969rem;
  font-weight: 550;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 0.9rem;
  height: 1px;
  background: var(--paper-55);
  transition: transform var(--normal) var(--ease-out);
}
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--paper-90); }
.faq-list details p { margin: 0.35rem 0 1.4rem; color: var(--paper-55); font-size: 0.8772rem; }

.site-footer {
  padding: 3rem clamp(2rem, 5vw, 4.5rem);
  color: var(--paper-55);
}
.footer-top,
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-top { padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-positioning {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  color: var(--paper-70);
  font-size: 0.8364rem;
  line-height: 1.55;
}
.footer-brand { display: inline-flex; min-height: 2.75rem; align-items: center; color: var(--paper-90); font-family: var(--font-editorial); font-size: 1.683rem; }
.footer-brand i { color: var(--paper-55); font-weight: 400; }
.footer-email { min-height: 2.75rem; display: inline-flex; align-items: center; color: var(--paper-70); font-size: 0.7956rem; }
.footer-bottom { flex-wrap: wrap; padding-top: 1.4rem; font-size: 0.765rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { min-height: 2.75rem; display: inline-flex; align-items: center; transition: color var(--fast) ease; }
.footer-bottom a:hover { color: var(--paper-90); }
.footer-bottom small { color: var(--paper-55); font-size: inherit; }

.js .reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  filter: blur(0.35rem);
  transition: opacity var(--slow) ease, transform 820ms var(--ease-out), filter var(--slow) ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.js .headline-serif.reveal { transition-delay: 80ms; }
.js .hero-subtitle.reveal { transition-delay: 140ms; }

@media (min-width: 76.01rem) {
  .js .method-layout {
    top: 21.4rem;
    bottom: 2rem;
  }
}

@media (max-width: 76rem) {
  :root { --rail: calc(100vw - 3rem); }
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr); gap: 2.5rem; }
  .floating-card-left { left: -3.5rem; }
  .floating-card-right { right: -2.5rem; }
  .method-layout { grid-template-columns: minmax(13rem, 0.68fr) minmax(25rem, 1.5fr); gap: 2.2rem; }
  .case-layout { gap: 3rem; }
}

@media (max-width: 58rem) {
  :root { --rail: calc(100vw - 2rem); }
  .floating-nav { width: min(46rem, calc(100vw - 2rem)); }
  .dock-direct-cta {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: inline-grid;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-inline: clamp(1.5rem, 5vw, 3rem);
    text-align: center;
  }
  .hero-copy { max-width: 49rem; margin-inline: auto; }
  .hero .button-row { justify-content: center; }
  .hero-stage { width: min(31rem, 88%); justify-self: center; }
  .floating-card-left { left: -4.5rem; }
  .floating-card-right { right: -4rem; }
  .method-layout { grid-template-columns: 14rem 1fr; gap: 1.5rem; }
  .case-layout { grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.5fr); }
  .case-study-reverse .case-layout { grid-template-columns: minmax(15rem, 0.5fr) minmax(0, 1fr); }
  .more-testimonials-grid { grid-template-columns: none; }
  .agenda-section,
  .faq-section,
  .problem-section { grid-template-columns: 1fr; }
}

@media (min-width: 45.01rem) and (max-width: 58rem) {
  .agenda-frame-shell.is-interactive .agenda-exit { top: 6.25rem; }
}

@media (max-width: 45rem) {
  :root {
    --rail: calc(100% - 2.5rem);
    --section-space: 5.5rem;
    --dock-height: 4.45rem;
    --dock-clearance: calc(var(--dock-height) + 5rem + env(safe-area-inset-bottom, 0px));
  }

  html { scroll-padding-bottom: var(--dock-clearance); }
  body { padding-bottom: var(--dock-clearance); }
  .page-rail { border-inline-color: rgb(255 253 250 / 0.08); }

  .floating-nav {
    top: auto;
    bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    width: min(26rem, calc(100vw - 1rem));
  }

  .dock-direct-cta {
    top: auto;
    right: 0.45rem;
    bottom: calc(100% + 0.45rem);
    min-height: 2.75rem;
    padding-inline: 0.78rem;
    font-size: 0.714rem;
  }

  .nav-shell { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .dock-wordmark { display: none; }
  .dock-item { min-height: 3.95rem; }
  .dock-label { font-size: 0.6528rem; }
  .dock-indicator { top: -0.42rem; }

  #topo,
  #metodo,
  #casos,
  #mais-depoimentos,
  #contato,
  #agenda,
  #faq {
    scroll-margin-top: 0;
    scroll-margin-bottom: var(--dock-clearance);
  }

  .hero {
    display: flex;
    width: 100%;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 6.5rem;
    padding: 4rem 0 0;
    border-inline: 0;
    overflow: visible;
    isolation: isolate;
  }
  .hero-glow {
    right: 0;
    width: min(38rem, 100%);
  }
  .hero.page-rail::before,
  .hero.page-rail::after { display: none; }
  .hero-copy {
    position: sticky;
    top: 7rem;
    z-index: 1;
    width: min(calc(100% - 2.5rem), 25rem);
    max-width: 25rem;
    align-self: center;
    opacity: var(--hero-copy-opacity, 1);
    transform: translate3d(0, var(--hero-copy-shift, 0), 0) scale(var(--hero-copy-scale, 1));
    transform-origin: center;
    will-change: opacity, transform;
  }
  .hero-copy.is-covered { pointer-events: none; }
  .eyebrow {
    --delivery-scooter-width: 5.6rem;
    --delivery-ribbon-gap: 5.65rem;
    width: min(100%, 18.75rem);
    height: 5.15rem;
    margin-inline: auto;
    font-size: 0.64rem;
  }
  .delivery-ribbon-mask { top: 1rem; }
  .delivery-ribbon {
    min-height: 2.85rem;
    padding: 0.5rem 0.6rem 0.52rem 0.78rem;
  }
  .delivery-scooter { height: 5.1rem; }
  .delivery-scooter::before { top: 2.4rem; }
  .hero h1 { margin-top: 1rem; }
  .headline-sans { font-size: clamp(2.04rem, 8.67vw, 2.397rem); }
  .headline-serif { font-size: clamp(2.193rem, 10.098vw, 2.499rem); }
  .hero-subtitle { margin-block: 1.5rem; font-size: 0.9486rem; }
  .hero .button-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .hero .primary-button {
    width: auto;
    min-width: 9.75rem;
    min-height: 2.75rem;
    flex: 0 0 auto;
    padding-inline: 1.1rem;
    font-size: 0.7344rem;
    white-space: nowrap;
  }
  .hero-stage {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 2.5rem), 25rem);
    align-self: center;
    justify-self: auto;
    isolation: isolate;
  }
  .hero-stage::before,
  .hero-stage::after {
    content: "";
    position: absolute;
    top: -21.875rem;
    bottom: -11.25rem;
    z-index: 0;
    width: 1px;
    border-left: 1px dashed rgb(255 255 255 / 0.9);
    opacity: 0.9;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 21.875rem, #000 calc(100% - 11.25rem), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 21.875rem, #000 calc(100% - 11.25rem), transparent 100%);
  }
  .hero-stage::before { left: 0; }
  .hero-stage::after { right: 0; }
  .hero-window {
    aspect-ratio: 9 / 16;
    width: 100%;
    margin: 0;
    z-index: 1;
    border: 1px dashed rgb(255 255 255 / 0.9);
    border-radius: 2rem;
    transform: none;
  }
  .hero-stage .floating-card { display: none; }
  .js .hero-stage.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-window > .window-bar { display: none; }
  .hero-window .hero-poster { height: 100%; }
  .hero-window .hero-video-shell { height: 100%; }
  .hero-poster figcaption { right: 1.1rem; bottom: 1.1rem; left: 1.1rem; }

  .more-testimonials {
    width: min(calc(100% - 2.5rem), 25rem);
    padding-block: 5.5rem 0.75rem;
  }
  .more-testimonials-heading h2 { font-size: clamp(2.601rem, 12.24vw, 3.06rem); }
  .testimonial-carousel-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }
  .testimonial-watch-button {
    min-height: 3.25rem;
    padding: 0.78rem 1.4rem;
    font-size: 0.8364rem;
  }
  .testimonial-carousel-controls {
    width: 100%;
    justify-content: flex-end;
  }
  .more-testimonials-grid {
    width: 100%;
    height: clamp(22rem, 103vw, 24.75rem);
    margin-top: -0.25rem;
    margin-inline: 0;
    padding: 0;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .more-testimonial-card {
    width: min(55vw, 13.25rem);
  }
  .more-testimonial-card.is-active {
    transform: perspective(880px) translate(-31%, -50%) rotate(6deg) rotateX(8deg) scale(1);
  }
  .more-testimonial-card.is-next {
    filter: none;
    transform: perspective(880px) translate(-72%, -50%) rotate(-7deg) rotateX(8deg) scale(0.94);
  }
  .more-testimonial-card.is-active:focus-within {
    transform: perspective(880px) translate(-31%, -50%) rotate(6deg) rotateX(8deg) scale(1);
  }
  .more-testimonial-slot {
    grid-template-columns: 4.75rem minmax(0, 1fr);
    min-height: 8.5rem;
    padding: 0.75rem;
  }

  .method-sticky { min-height: auto; }
  .method-progress-dot {
    position: absolute;
    top: 50%;
    left: -0.3125rem;
    z-index: 5;
    display: block;
    width: 0.5625rem;
    height: 0.5625rem;
    border-radius: 50%;
    background: var(--paper-100);
    box-shadow: 0 0 0.75rem rgb(255 253 250 / 0.18);
  }
  .method-heading { width: 100%; }
  .method-heading .section-kicker { display: none; }
  .method-heading > p:last-child {
    display: block;
    max-width: 23rem;
    margin: 0.8rem 0 0;
    color: var(--paper-55);
    font-size: 0.8364rem;
    line-height: 1.5;
  }
  .method-heading h2 {
    width: 100%;
    margin: 0;
    font-size: 1.97625rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .method-heading h2 > span,
  .method-heading h2 > em { display: block; }
  .method-heading h2 em { font-size: 2.1675rem; line-height: 1.1; }
  .method-layout { display: block; margin: 1.4rem 0 0; }
  .method-copy-column {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0;
  }
  .step-counter {
    position: relative;
    top: auto;
    left: auto;
    width: 6.25rem;
    height: 6.25rem;
    flex: 0 0 6.25rem;
    border-color: rgb(255 253 250 / 0.06);
    border-radius: 0.625rem;
    background: rgb(17 17 17 / 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .step-counter span { color: var(--paper-55); font-size: 1.02rem; line-height: 1.4; }
  .step-counter strong { color: var(--paper-100); font-size: 2.48625rem; font-weight: 400; line-height: 1.1; }
  .step-line,
  .step-dot { display: none; }
  .step-copy-stack { position: relative; width: 100%; min-height: 5.5rem; }
  .step-copy { padding: 0; }
  .step-copy h3 { color: var(--paper-100); font-size: 1.53rem; font-weight: 500; line-height: 1.2; }
  .step-copy p { max-width: 20.5rem; margin-top: 0.75rem; color: var(--paper-70); font-size: 1.02rem; line-height: 1.4; }
  .method-destination,
  .step-navigation,
  .method-window { display: none; }
  .method-cta {
    display: inline-flex;
    min-height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border: 1px solid rgb(232 230 222 / 0.72);
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    box-shadow: 0 0.75rem 2rem rgb(216 214 206 / 0.16);
    color: var(--accent-ink);
    font-size: 0.8925rem;
    font-weight: 650;
    white-space: nowrap;
  }

  .js .method {
    height: calc(300svh + 4rem);
    min-height: 0;
    margin-bottom: 2rem;
  }
  .js .method-sticky {
    top: 4rem;
    display: flex;
    width: min(calc(100% - 2.5rem), 25rem);
    height: calc(100svh - 4rem);
    min-height: 0;
    flex-direction: column;
    gap: clamp(1.75rem, 4svh, 3.25rem);
    padding: clamp(4.5rem, 10svh, 7.75rem) 0.5rem calc(1rem + var(--dock-clearance)) 1.25rem;
    overflow: visible;
    border-inline-color: rgb(255 255 255 / 0.9);
  }
  .js .method-layout {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }
  .js .method-copy-column { min-height: 0; }
  .diagnostic-board { display: block; padding: 0.8rem; }
  .diagnostic-grid { display: none; }
  .diagnostic-focus {
    height: 100%;
    min-height: 0;
    justify-content: space-between;
    padding: 1rem;
    border-color: rgb(255 253 250 / 0.16);
    background:
      radial-gradient(circle at 18% 8%, rgb(216 214 206 / 0.2), transparent 62%),
      rgb(24 26 29 / 0.98);
    box-shadow: inset 0 1px 0 rgb(255 253 250 / 0.05);
  }
  .diagnostic-focus span { color: var(--paper-55); font-size: 0.6936rem; }
  .diagnostic-focus strong {
    margin-top: 0.75rem;
    color: var(--paper-100);
    font-size: clamp(1.377rem, 6.528vw, 1.7136rem);
    line-height: 1.12;
    text-wrap: balance;
  }
  .structure-board { padding: 1rem; }
  .structure-board h3 { font-size: clamp(1.785rem, 9.18vw, 2.703rem); }
  .angle-row { margin-top: 1.2rem; }
  .execution-board { gap: 0.45rem; padding: 0.7rem; }
  .execution-card { padding: 0.65rem; }
  .execution-card span { font-size: 1.632rem; }
  .execution-card strong { font-size: 0.7752rem; }
  .execution-card small { font-size: 0.51rem; }
  .optimize-board { padding: 0.65rem 1rem; }
  .optimize-board > div { grid-template-columns: 3.8rem 1fr auto; gap: 0.6rem; min-height: 3.2rem; }
  .optimize-board strong { font-size: 0.6834rem; }
  .optimize-board p { margin-top: 0.5rem; font-size: 0.969rem; }

  .cases-overview {
    width: min(calc(100% - 2.5rem), 25rem);
    padding: 5.5rem 1.25rem 2rem;
  }
  .cases-overview h2,
  .problem-section h2 {
    font-size: clamp(2.601rem, 12.24vw, 3.06rem);
  }
  .cases-overview > p { font-size: 0.9384rem; }
  .problem-section {
    width: min(calc(100% - 2.5rem), 25rem);
    padding: 5rem 1.25rem;
    gap: 1.8rem;
  }
  .problem-copy p { font-size: 0.969rem; }
  .case-description {
    margin-top: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.55;
  }
  .rank-growth-visual {
    width: 100%;
    height: 9.25rem;
    margin-top: 1.5rem;
  }
  .rank-growth-value { font-size: clamp(1.4rem, 7vw, 1.75rem); }
  .video-audio-label { font-size: 0.6936rem; }

  .case-study {
    --case-half: min(calc(88.8889vw - 2.2222rem), 22.2222rem);
    width: min(calc(100% - 2.5rem), 25rem);
    max-width: 25rem;
    min-height: auto;
    padding: 0;
    border-inline: 0;
    overflow: visible;
    isolation: isolate;
  }
  .case-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    width: 100%;
    height: auto;
    padding-bottom: clamp(3rem, 8svh, 4.5rem);
    isolation: isolate;
  }
  .case-study-reverse .case-layout { grid-template-columns: minmax(0, 1fr); }
  .case-layout::before,
  .case-layout::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 1px;
    border-left: 1px dashed rgb(255 255 255 / 0.9);
    opacity: 0.9;
    pointer-events: none;
  }
  .case-layout::before { left: 0; }
  .case-layout::after { right: 0; }
  .case-copy {
    grid-area: 1 / 1;
    position: sticky;
    top: 5.5rem;
    z-index: 0;
    align-self: start;
    width: calc(100% - 2.5rem);
    max-width: none;
    min-width: 0;
    margin-inline: auto;
    opacity: var(--case-copy-opacity, 1);
    transform: translate3d(0, var(--case-copy-shift, 0), 0) scale(var(--case-copy-scale, 1));
    transform-origin: center;
    will-change: opacity, transform;
  }
  .case-copy.is-covered { pointer-events: none; }
  .case-copy blockquote { max-width: 100%; overflow-wrap: anywhere; }
  .case-study-reverse .case-copy,
  .case-study-reverse .case-video { order: initial; }
  .case-copy h2 { font-size: clamp(2.601rem, 12.24vw, 3.06rem); }
  .result-flow { grid-template-columns: 1fr auto 1fr; gap: 0.6rem; }
  .result-flow strong { font-size: clamp(1.275rem, 6.12vw, 1.836rem); }
  .case-copy blockquote { font-size: 1.071rem; }
  .case-video,
  .case-study-reverse .case-video {
    grid-area: 1 / 1;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 3;
    width: 100%;
    aspect-ratio: 9 / 16;
    align-self: start;
    margin: calc(100dvh - var(--case-half)) 0 0;
    border: 1px dashed rgb(255 255 255 / 0.9);
    border-radius: 2rem;
    background-color: var(--ink-1000);
    opacity: 1;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    isolation: isolate;
    will-change: transform;
  }
  .js .case-video.reveal,
  .js .case-video.reveal.is-visible,
  .js .case-study-reverse .case-video.reveal,
  .js .case-study-reverse .case-video.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
    transition: none;
  }
  .case-halo,
  .case-study-reverse .case-halo {
    top: 62%;
    right: auto;
    left: 50%;
    width: min(26rem, 100%);
    height: auto;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
  }
  .case-video-whatsapp {
    width: max-content;
    max-width: calc(100% - 2.5rem);
    min-height: 2.75rem;
    margin: clamp(-3.75rem, calc(-8svh + 0.75rem), -2.25rem) auto 0;
    padding-inline: 1.1rem;
    font-size: 0.7344rem;
    white-space: nowrap;
  }
  .case-disclaimer { margin: 0 1.25rem 2rem; }
  .case-video-whatsapp + .case-disclaimer { margin-top: 1rem; }

  .final-cta {
    min-height: auto;
    padding: 4.5rem 1.2rem calc(2rem + var(--dock-clearance));
  }
  .final-cta h2 { font-size: clamp(2.754rem, 12.24vw, 4.131rem); }
  .final-cta > p:not(.section-kicker):not(.button-note) { font-size: 0.9384rem; }

  .agenda-section,
  .faq-section { min-height: auto; padding: 6rem 1.1rem calc(5rem + var(--dock-clearance)); }
  .agenda-copy h2,
  .faq-heading h2 { font-size: 2.805rem; }
  .agenda-section { gap: 2rem; padding-top: 4rem; padding-bottom: 2.5rem; }
  .agenda-section + .faq-section { padding-top: 2.5rem; }
  .agenda-card:not(.agenda-card-live) { grid-template-columns: 1fr; min-height: 19rem; padding: 1.2rem 1.35rem; }
  .agenda-card.agenda-card-live { min-height: 0; padding: 0.3rem; }
  .agenda-frame-shell { height: min(34rem, 72svh); }
  .agenda-frame-shell:not(.is-interactive) {
    display: grid;
    grid-template-rows: minmax(0, min(34rem, 72svh)) auto;
    height: auto;
  }
  .agenda-frame-shell:not(.is-interactive) .agenda-frame {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: min(34rem, 72svh);
  }
  .agenda-frame-shell:not(.is-interactive) .agenda-activate {
    position: relative;
    inset: auto;
    grid-row: 2;
    width: auto;
    margin: 0.65rem;
  }
  .agenda-activate { inset: auto 0.65rem 0.65rem; padding: 0.65rem; }
  .agenda-fallback { align-items: stretch; flex-direction: column; padding: 0.8rem; }
  .agenda-fallback .secondary-button { width: 100%; justify-content: center; }
  .calendar-mark { width: 4.5rem; height: 4.5rem; }
  .agenda-card .primary-button { justify-self: stretch; }
  .faq-section { gap: 2.7rem; }
  .faq-list summary { min-height: 4.9rem; font-size: 0.8976rem; }

  .site-footer { padding: 3rem 1.1rem calc(3rem + var(--dock-clearance)); }
  .footer-top,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom { gap: 0.8rem; }
}

@media (max-width: 23rem) {
  .headline-sans { font-size: 1.938rem; }
  .headline-serif { font-size: 2.091rem; }
  .dock-label { font-size: 0.612rem; }
  .method-heading h2 { font-size: 1.7544rem; }
  .method-heading h2 em { font-size: 1.938rem; }
  .result-flow strong { font-size: 1.1424rem; }
}

@media (max-width: 45rem) and (max-height: 48rem) {
  .case-copy {
    top: 2rem;
    width: calc(100% - 2rem);
  }
  .case-copy .section-kicker { gap: 0.55rem; font-size: 0.561rem; }
  .case-copy .section-kicker span { width: 1.45rem; height: 1.45rem; font-size: 0.5916rem; }
  .case-copy h2 {
    margin-top: 0.65rem;
    font-size: clamp(1.53rem, 8.16vw, 1.836rem);
    line-height: 0.96;
  }
  .case-copy .result-flow { gap: 0.35rem; margin-top: 0.85rem; }
  .case-copy .result-flow small { font-size: 0.51rem; }
  .case-copy .result-flow strong { font-size: 1.02rem; }
  .case-copy .result-flow i { font-size: 1.224rem; }
  .case-copy .result-period { margin-top: 0.4rem; padding: 0.22rem 0.48rem; font-size: 0.561rem; }
  .case-copy blockquote {
    margin-top: 0.7rem;
    padding-left: 0.7rem;
    font-size: 0.7344rem;
    line-height: 1.25;
  }
}

@media (min-width: 28rem) and (max-width: 45rem) and (min-height: 48.01rem) and (max-height: 53rem) {
  .case-copy {
    top: 4rem;
    width: calc(100% - 2.5rem);
  }
  .case-copy h2 {
    margin-top: 0.85rem;
    font-size: clamp(2.244rem, 6.12vw, 2.55rem);
    line-height: 1;
  }
  .case-copy .result-flow { margin-top: 1.3rem; }
  .case-copy .result-flow strong { font-size: 1.326rem; }
  .case-copy .result-period { margin-top: 0.55rem; }
  .case-copy blockquote {
    margin-top: 1.1rem;
    padding-left: 0.9rem;
    font-size: 0.918rem;
    line-height: 1.3;
  }
}

@media (max-width: 45rem) and (max-height: 48rem) {
  .screen-toolbar { display: none; }
  .js .diagnostic-board,
  .js .structure-board,
  .js .execution-board,
  .js .optimize-board { height: 100%; }
}

@media (max-width: 45rem) and (max-height: 44rem) {
  .hero { gap: 3rem; padding-top: 3rem; }
  .hero-copy { top: 5rem; }
  .hero .button-note { display: none; }
  .hero .eyebrow {
    --delivery-scooter-width: 4.9rem;
    --delivery-ribbon-gap: 4.95rem;
    display: block;
    width: min(100%, 17rem);
    height: 4.5rem;
    font-size: 0.54rem;
    letter-spacing: 0.03em;
  }
  .hero .delivery-ribbon-mask { top: 0.9rem; }
  .hero .delivery-ribbon {
    min-height: 2.45rem;
    padding: 0.36rem 0.45rem 0.38rem 0.62rem;
  }
  .hero .delivery-scooter { height: 4.45rem; }
  .hero .delivery-scooter::before { top: 2.03rem; }
  .hero h1 { margin-top: 0.7rem; }
  .headline-sans { font-size: clamp(1.785rem, 7.956vw, 2.04rem); }
  .headline-serif { font-size: clamp(1.887rem, 8.568vw, 2.193rem); }
  .hero-subtitle { margin-block: 1rem; font-size: 0.816rem; line-height: 1.45; }

  .js .method-sticky {
    top: 1.5rem;
    height: calc(100svh - 3rem);
    min-height: 0;
    gap: 2rem;
    padding: 3.25rem 0.5rem calc(0.75rem + var(--dock-clearance)) 1rem;
  }
  .method-heading h2 { font-size: 1.7544rem; }
  .method-heading h2 em { font-size: 1.938rem; }
  .js .method-layout {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }
  .method-copy-column { gap: 1.1rem; }
  .step-counter { width: 5rem; height: 5rem; flex-basis: 5rem; }
  .step-counter span { font-size: 0.7956rem; }
  .step-counter strong { font-size: 2.04rem; }
  .step-copy-stack { min-height: 4.9rem; }
  .step-copy h3 { font-size: 1.224rem; }
  .step-copy p { margin-top: 0.55rem; font-size: 0.816rem; line-height: 1.4; }
  .method-cta { min-height: 2.75rem; padding-block: 0.35rem; font-size: 0.7956rem; }
  .screen-toolbar { display: none; }
  .method-tabs { display: none; }
  .js .method-screens { height: 100%; }
  .js .diagnostic-board,
  .js .structure-board,
  .js .execution-board,
  .js .optimize-board { height: 100%; }
  .diagnostic-focus { padding: 0.9rem; }
  .diagnostic-focus strong {
    margin-top: 0.75rem;
    font-size: 1.224rem;
    line-height: 1.1;
  }
  .structure-board { padding: 0.7rem; }
  .structure-board h3 { font-size: 1.683rem; }
  .angle-row { gap: 0.4rem; margin-top: 0.8rem; }
  .angle-row span { padding: 0.35rem 0.65rem; font-size: 0.5916rem; }
  .optimize-board { padding: 0.55rem 0.75rem; }
  .optimize-board > div {
    grid-template-columns: 3.25rem 1fr auto;
    min-height: 2.5rem;
  }
  .optimize-board p { margin-top: 0.4rem; font-size: 0.8364rem; }
}

@media (max-width: 45rem) and (max-height: 40rem) {
  .js .method-sticky {
    top: 1rem;
    height: calc(100svh - 1rem);
    gap: 0.75rem;
    padding: 1.5rem 0.5rem calc(0.75rem + var(--dock-clearance)) 1rem;
  }
  .method-heading h2 {
    font-size: 1.428rem;
    line-height: 1.08;
  }
  .method-heading > p:last-child {
    margin-top: 0.45rem;
    font-size: 0.6936rem;
    line-height: 1.35;
  }
  .method-copy-column { gap: 0.75rem; }
  .step-counter {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;
  }
  .step-counter span { font-size: 0.6936rem; }
  .step-counter strong { font-size: 1.683rem; }
  .step-copy-stack { min-height: 3.9rem; }
  .step-copy h3 { font-size: 1.071rem; }
  .step-copy p {
    margin-top: 0.35rem;
    font-size: 0.7344rem;
    line-height: 1.3;
  }
  .method-cta {
    min-height: 2.5rem;
    padding-block: 0.25rem;
    font-size: 0.7344rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .dock-direct-cta::after { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .js .rank-growth-visual .rank-growth-dot-end,
  .js .rank-growth-visual .rank-growth-value-end {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
  .js .delivery-tow.is-towing .delivery-ribbon-mask {
    animation: delivery-ribbon-unfurl var(--delivery-tow-duration) cubic-bezier(.45, 0, .2, 1) forwards !important;
  }
  .js .delivery-tow.is-towing .delivery-scooter {
    animation: delivery-scooter-ride var(--delivery-tow-duration) cubic-bezier(.45, 0, .2, 1) forwards !important;
  }
  .js .delivery-tow.is-towing .delivery-scooter-art,
  .js .delivery-tow.is-towing .delivery-scooter-wheel { animation: none !important; }
  .hero-window,
  .case-video,
  .case-study-reverse .case-video { transform: none; }
  .case-video-whatsapp {
    -webkit-animation: none !important;
    animation: none !important;
  }
  .case-video-whatsapp::after {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

@supports not ((backdrop-filter: blur(1rem)) or (-webkit-backdrop-filter: blur(1rem))) {
  .nav-shell,
  .glass-panel,
  .visual-play { background: var(--surface-raised); }
}

/* Consentimento de medição: isolado do layout e acima do dock flutuante. */
.footer-cookie-preferences {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color var(--fast) ease;
}

.footer-cookie-preferences:hover { color: var(--paper-90); }

.consent-banner {
  position: fixed;
  right: 0.75rem;
  bottom: calc(var(--dock-height) + 1.25rem + env(safe-area-inset-bottom));
  left: 0.75rem;
  z-index: 180;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem 1rem;
  width: min(40rem, calc(100vw - 1.5rem));
  max-height: min(32rem, calc(100dvh - var(--dock-height) - 3rem - env(safe-area-inset-bottom)));
  margin-inline: auto;
  padding: 0.85rem;
  overflow-y: auto;
  border-radius: var(--radius-md);
  color: var(--paper-90);
}

.consent-banner[hidden] { display: none; }

body:has(.consent-banner:not([hidden])) .dock-direct-cta {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.consent-copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.consent-copy strong {
  color: var(--paper-100);
  font-size: 0.918rem;
}

.consent-copy p {
  margin: 0;
  color: var(--paper-70);
  font-size: 0.7548rem;
  line-height: 1.35;
}

.consent-copy .consent-feedback {
  min-height: 1.1em;
  color: var(--paper-55);
  font-size: 0.6528rem;
}

.consent-copy .consent-feedback[data-state="error"] { color: var(--accent-light); }

.consent-copy > a {
  width: max-content;
  max-width: 100%;
  color: var(--accent-light);
  font-size: 0.6936rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.consent-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.45rem;
}

.consent-button {
  min-height: 2.75rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--paper-90);
  cursor: pointer;
  font: 650 0.714rem/1.15 var(--font-ui);
}

.consent-button-secondary { background: rgb(7 7 6 / 0.82); }

.consent-button-primary {
  border-color: rgb(232 230 222 / 0.54);
  background: var(--accent);
  color: var(--accent-ink);
}

.consent-close {
  min-height: 2.75rem;
  padding: 0.3rem 0.45rem;
  border: 0;
  color: var(--paper-55);
  background: transparent;
  cursor: pointer;
  font: 600 0.6528rem/1.15 var(--font-ui);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

@media (max-width: 45rem) {
  .consent-banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    width: min(21rem, calc(100vw - 1rem));
    padding: 0.75rem;
  }

  .consent-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .consent-button {
    min-height: 2.75rem;
    flex: 1 1 0;
    white-space: nowrap;
  }
  .consent-close {
    min-height: 2.75rem;
    flex: 1 0 100%;
  }
}

@media (max-width: 24rem) {
  .consent-banner {
    width: min(20rem, calc(100vw - 0.75rem));
    padding: 0.68rem;
  }
  .consent-actions {
    flex-direction: row;
    gap: 0.38rem;
  }
  .consent-button {
    width: auto;
    min-width: 0;
    padding-inline: 0.65rem;
  }
}
