@font-face {
  font-family: "Archivo Black";
  src: url("fonts/ArchivoBlack-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/SourceSerif4-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMono-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMono-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0b0e0c;
  --ink-soft: #111511;
  --cream: #f4ebdd;
  --paper: #e8dece;
  --signal: #ff5a2a;
  --ash: #a8a398;
  --paper-line: #cfc4b4;
  --dark-line: #303630;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --serif: "Source Serif 4", Charter, Georgia, serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --shell: min(1440px, calc(100vw - 64px));
  --header-height: 80px;
  --section-space: clamp(96px, 11vw, 176px);
  --ease-out: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

h1,
h2,
h3,
p,
figure,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

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

[id] {
  scroll-margin-top: 0;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 11px 18px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(11, 14, 12, 0.96);
}

.header-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(520px, 2.4fr) auto;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 48px;
  color: var(--cream);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  margin-right: 12px;
  overflow: visible;
  fill: none;
  stroke: var(--signal);
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-mark path:first-child {
  stroke-width: 4px;
}

.brand-mark path:last-child {
  stroke-width: 1.5px;
}

.brand-name {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name strong {
  color: var(--signal);
  font-weight: inherit;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 42px);
  padding-inline: 24px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #d9d1c5;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 0 20px;
  border: 2px solid var(--signal);
  border-radius: 0;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8px;
  transition: transform 180ms var(--ease-out);
}

.action:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.action:hover svg {
  transform: translateX(4px);
}

.action--small {
  min-height: 46px;
  gap: 16px;
  padding-inline: 15px;
  font-size: 10px;
}

.header-action {
  justify-self: end;
}

.mobile-nav {
  display: none;
}

/* Shared editorial elements */

.scene-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--ash);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.scene-label::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.scene-label span {
  color: var(--signal);
}

.scene-label--dark {
  color: #605b53;
}

.scene-label--dark span {
  color: #a83211;
}

.section-dark {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--dark-line);
  background: var(--ink);
  color: var(--cream);
}

.section-dark::before,
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(244, 235, 221, 0.055) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(244, 235, 221, 0.04) 1px);
  background-size: calc(100% / 12) 100%, 100% 120px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.section-cream,
.section-paper {
  position: relative;
  background: var(--cream);
  color: var(--ink);
}

.section-cream::before,
.section-paper::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(11, 14, 12, 0.055) 1px);
  background-size: calc(100% / 12) 100%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: clamp(72px, 7vw, 120px);
  padding-bottom: clamp(48px, 5vw, 76px);
  border-bottom: 1px solid var(--paper-line);
}

.section-heading .scene-label {
  align-self: start;
  width: max-content;
  height: fit-content;
  margin: 0;
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: start;
}

.section-heading h2,
.method-copy h2,
.proof-copy h2,
.danilo-copy h2,
.objections-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 920px;
  font-size: clamp(44px, 4.8vw, 78px);
}

.section-heading p {
  max-width: 360px;
  margin: 4px 0 0;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.4;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  background: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(390px, 5fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 58px);
  padding-block: clamp(64px, 7vw, 112px);
}

.hero-copy {
  max-width: 930px;
}

.hero h1 {
  max-width: 1050px;
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(54px, 6.65vw, 110px);
  font-weight: 400;
  letter-spacing: -0.073em;
  line-height: 0.885;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--signal);
}

.hero-intro {
  max-width: 710px;
  margin-bottom: 32px;
  color: #d9d1c5;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-bottom: 24px;
}

.text-link,
.ink-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link:hover,
.ink-link:hover {
  color: var(--signal);
}

.promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  max-width: 680px;
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  color: var(--ash);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.promise span {
  color: var(--signal);
  text-transform: uppercase;
}

.hero-index {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: var(--shell);
  height: 58px;
  margin-inline: auto;
  border-top: 1px solid var(--dark-line);
  color: #767970;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.hero-index i {
  height: 1px;
  background: var(--dark-line);
}

/* Motion frames and fallbacks */

.motion-frame {
  position: relative;
  width: 100%;
  margin: 0;
}

.motion-square {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #3c423c;
  background: #101410;
  isolation: isolate;
}

.motion-square::after {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  border: 9px solid rgba(11, 14, 12, 0.28);
  content: "";
}

.motion-frame figcaption {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 0;
  border-top: 1px solid var(--dark-line);
  color: var(--ash);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.025em;
  line-height: 1.5;
  text-transform: uppercase;
}

.motion-caption-index {
  color: var(--signal);
}

.motion-caption-copy {
  color: inherit;
}

.motion-frame--light .motion-square {
  border-color: #958b7d;
  background: #e5dac9;
}

.motion-frame--light figcaption {
  border-top-color: var(--paper-line);
  color: #615d55;
}

.motion-video {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.motion-frame[data-video-state="error"] .motion-video,
.motion-frame[data-motion-mode="static"] .motion-video {
  opacity: 0;
  pointer-events: none;
}

.motion-frame[data-video-state="playing"] .motion-fallback,
.motion-frame[data-video-state="paused"] .motion-fallback,
.motion-frame[data-video-state="complete"] .motion-fallback,
.motion-frame[data-video-state="ready"] .motion-fallback {
  opacity: 0;
}

.motion-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 1;
  transition: opacity 260ms ease;
}

.motion-fallback::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(244, 235, 221, 0.15);
  content: "";
}

.motion-fallback svg {
  width: 100%;
  height: 100%;
}

/* Static explanatory UI shown before load, on errors and with reduced motion. */

.fallback-ui {
  position: absolute;
  inset: 8%;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vw, 16px);
  padding: clamp(18px, 3.2vw, 42px);
  border: 2px solid #3a433c;
  background: #101410;
  color: var(--cream);
  font-family: var(--mono);
}

.fallback-ui-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3a433c;
  color: var(--ash);
  font-size: clamp(7px, 0.72vw, 10px);
  letter-spacing: 0.08em;
}

.fallback-ui p {
  margin: auto 0 0;
  color: inherit;
  font-family: var(--display);
  font-size: clamp(16px, 1.75vw, 27px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
}

.fallback-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 15px;
  border: 2px solid #687168;
  background: var(--cream);
  color: var(--ink);
  font-size: clamp(10px, 0.95vw, 14px);
}

.fallback-search > span {
  color: var(--signal);
  font-size: 22px;
}

.fallback-profile-head,
.fallback-call {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #3a433c;
}

.fallback-avatar,
.fallback-call-icon {
  display: grid;
  flex: 0 0 auto;
  width: clamp(38px, 4vw, 54px);
  height: clamp(38px, 4vw, 54px);
  place-items: center;
  border: 2px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 700;
}

.fallback-profile-head div,
.fallback-call div {
  display: grid;
  gap: 4px;
}

.fallback-profile-head strong,
.fallback-call strong {
  font-size: clamp(11px, 1.05vw, 16px);
  text-transform: uppercase;
}

.fallback-profile-head small,
.fallback-call small {
  color: var(--ash);
  font-size: clamp(8px, 0.72vw, 11px);
}

.fallback-rating {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 16px;
}

.fallback-rating span {
  grid-column: 1 / -1;
  color: var(--signal);
  font-size: clamp(24px, 3.4vw, 46px);
  letter-spacing: 0.06em;
  line-height: 1;
}

.fallback-rating strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 400;
  text-transform: uppercase;
}

.fallback-rating small {
  padding: 5px 7px;
  background: var(--signal);
  color: var(--ink);
  font-size: clamp(7px, 0.7vw, 10px);
}

.fallback-review-lines {
  display: grid;
  gap: 8px;
}

.fallback-review-lines i {
  display: block;
  width: 100%;
  height: 6px;
  background: #394139;
}

.fallback-review-lines i:nth-child(2) { width: 82%; }
.fallback-review-lines i:nth-child(3) { width: 64%; background: var(--signal); }

.fallback-ui--calls {
  border-color: #958b7d;
  background: #e5dac9;
  color: var(--ink);
}

.fallback-ui--calls .fallback-ui-meta,
.fallback-ui--calls .fallback-call {
  border-color: #b9ad9d;
}

.fallback-ui--calls .fallback-call-icon {
  border-color: var(--ink);
  background: transparent;
}

.fallback-ui--calls .fallback-call--saved .fallback-call-icon {
  border-color: var(--signal);
  background: var(--signal);
}

.fallback-ui--calls .fallback-call small {
  color: #686158;
}

.fallback-channels,
.fallback-flow-steps {
  display: flex;
  align-items: center;
  gap: 7px;
}

.fallback-channels span,
.fallback-flow-steps span {
  flex: 1;
  padding: 7px 4px;
  border: 1px solid currentColor;
  font-size: clamp(7px, 0.72vw, 10px);
  text-align: center;
}

.fallback-metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--cream);
}

.fallback-metric small {
  max-width: 190px;
  font-size: clamp(7px, 0.72vw, 10px);
  line-height: 1.4;
}

.fallback-metric strong {
  color: var(--signal);
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.8;
}

.fallback-flow-steps {
  margin-top: 8px;
}

.fallback-flow-steps i {
  color: var(--signal);
  font-style: normal;
}

.fallback-flow-steps .is-priority {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.fallback-bottleneck,
.fallback-priority {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #596059;
}

.fallback-bottleneck small,
.fallback-priority small {
  color: var(--ash);
  font-size: clamp(7px, 0.72vw, 10px);
  letter-spacing: 0.08em;
}

.fallback-bottleneck strong {
  font-size: clamp(11px, 1.05vw, 16px);
  text-transform: uppercase;
}

.fallback-priority {
  border: 2px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.fallback-priority small {
  color: var(--ink);
}

.fallback-priority strong {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 0.95;
}

.motion-replay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 84px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: rgba(11, 14, 12, 0.82);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.motion-frame--light .motion-replay {
  background: transparent;
  color: var(--ink);
}

.motion-replay:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.motion-replay:not(:disabled):hover {
  background: var(--signal);
  color: var(--ink);
}

.motion-replay svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6px;
}

.reg-mark {
  position: absolute;
  z-index: 8;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.reg-mark::before,
.reg-mark::after {
  position: absolute;
  background: var(--signal);
  content: "";
}

.reg-mark::before {
  width: 24px;
  height: 1px;
}

.reg-mark::after {
  width: 1px;
  height: 24px;
}

.reg-mark--tl { top: 9px; left: 9px; }
.reg-mark--tr { top: 9px; right: 9px; transform: rotate(90deg); }
.reg-mark--bl { bottom: 9px; left: 9px; transform: rotate(-90deg); }
.reg-mark--br { right: 9px; bottom: 9px; transform: rotate(180deg); }

/* Hero fallback */

.motion-fallback--signal {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 90, 42, 0.12) 50%, transparent 50.2%),
    #101410;
}

.signal-grid {
  fill: none;
  stroke: #2c322c;
  stroke-width: 1px;
}

.signal-path {
  fill: none;
  stroke-linecap: square;
}

.signal-path--ghost {
  stroke: #414841;
  stroke-width: 3px;
}

.signal-path--live {
  stroke: var(--signal);
  stroke-dasharray: 120 900;
  stroke-width: 7px;
  animation: signal-travel 7.5s var(--ease-out) infinite;
}

.signal-node {
  fill: var(--ink);
  stroke: var(--cream);
  stroke-width: 2px;
}

.signal-node--three {
  stroke: var(--signal);
  animation: signal-alert 2.3s ease-in-out infinite;
}

.signal-node--four {
  fill: var(--signal);
  stroke: var(--signal);
}

.signal-runner {
  fill: var(--cream);
  transform-origin: 62px 430px;
  animation: runner-pulse 1.7s ease-in-out infinite;
}

.fallback-tag,
.radar-label {
  position: absolute;
  padding: 5px 7px;
  border: 1px solid #596059;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: clamp(7px, 0.75vw, 10px);
  letter-spacing: 0.1em;
}

.fallback-tag--a { bottom: 25%; left: 6%; }
.fallback-tag--b { top: 25%; left: 35%; }
.fallback-tag--c { right: 22%; bottom: 35%; border-color: var(--signal); color: var(--signal); }
.fallback-tag--d { top: 28%; right: 5%; background: var(--signal); color: var(--ink); border-color: var(--signal); }

.fallback-statement {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 8%;
  max-width: 340px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

@keyframes signal-travel {
  0% { stroke-dashoffset: 120; opacity: 0; }
  8% { opacity: 1; }
  66%, 100% { stroke-dashoffset: -850; opacity: 1; }
}

@keyframes signal-alert {
  0%, 100% { stroke-width: 2px; opacity: 0.7; }
  50% { stroke-width: 8px; opacity: 1; }
}

@keyframes runner-pulse {
  0%, 100% { transform: scale(0.7); opacity: 0.35; }
  50% { transform: scale(1.35); opacity: 1; }
}

/* Problems */

.problems {
  padding-bottom: var(--section-space);
}

.problems-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  gap: clamp(50px, 8vw, 128px);
  align-items: center;
  padding-top: clamp(72px, 8vw, 128px);
}

.motion-fallback--problems {
  background: #e5dac9;
}

.motion-fallback--problems::before {
  border-color: rgba(11, 14, 12, 0.18);
}

.radar-grid,
.radar-axis,
.radar-shape {
  fill: none;
  stroke-linejoin: miter;
}

.radar-grid {
  stroke: #b9ad9d;
  stroke-width: 1.5px;
}

.radar-axis {
  stroke: #c5baaa;
  stroke-width: 1px;
}

.radar-shape {
  fill: rgba(255, 90, 42, 0.13);
  stroke: var(--signal);
  stroke-width: 4px;
  stroke-dasharray: 920;
  animation: radar-draw 6.6s var(--ease-out) infinite;
}

.radar-point {
  fill: var(--cream);
  stroke: var(--ink);
  stroke-width: 4px;
}

.radar-point--a { animation: radar-point 6.6s ease infinite 0.4s; }
.radar-point--b { animation: radar-point 6.6s ease infinite 1.2s; }
.radar-point--c { animation: radar-point 6.6s ease infinite 2s; }

.radar-label {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}

.radar-label--a { top: 9%; left: 33%; }
.radar-label--b { top: 38%; right: 3%; }
.radar-label--c { bottom: 15%; left: 4%; }

.radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border: 2px solid var(--ink);
  background: var(--cream);
  transform: translate(-50%, -50%);
}

.radar-core small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.radar-core strong {
  color: var(--signal);
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

@keyframes radar-draw {
  0% { stroke-dashoffset: 920; opacity: 0.2; }
  35%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -920; opacity: 0.25; }
}

@keyframes radar-point {
  0%, 20%, 100% { transform: scale(0.65); transform-origin: center; opacity: 0.45; }
  30%, 75% { transform: scale(1); transform-origin: center; opacity: 1; }
}

.problem-ledger {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.problem-ledger li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 44px;
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
  padding: clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid #a89d8e;
}

.ledger-number,
.ledger-code {
  padding-top: 4px;
  color: #625e56;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.ledger-code {
  color: #a83211;
  text-align: right;
}

.problem-ledger h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.problem-ledger p {
  max-width: 600px;
  margin-bottom: 0;
  color: #49463f;
  line-height: 1.45;
}

.problem-ledger li:hover h3 {
  color: #a83211;
}

/* Method */

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(390px, 6fr);
  gap: clamp(56px, 9vw, 144px);
  align-items: center;
  padding-block: var(--section-space);
}

.method-copy h2 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(50px, 6.5vw, 96px);
}

.method-copy > p:not(.scene-label):not(.disclosure) {
  max-width: 640px;
  color: #d7d0c4;
  font-size: clamp(19px, 1.65vw, 25px);
}

.method-steps {
  padding: 0;
  margin: clamp(42px, 5vw, 72px) 0 34px;
  list-style: none;
  border-top: 1px solid #4a514a;
}

.method-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #353b35;
}

.method-steps li > span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.method-steps div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.method-steps strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.method-steps small {
  max-width: 250px;
  color: var(--ash);
  font-size: 15px;
  text-align: right;
}

.disclosure {
  max-width: 660px;
  margin-bottom: 0;
  padding: 20px 22px;
  border-left: 3px solid var(--signal);
  background: #151a15;
  color: var(--ash);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.65;
}

.motion-fallback--priority {
  background: #0f130f;
}

.motion-fallback--priority svg {
  position: absolute;
  inset: 0;
}

.priority-lines {
  fill: none;
  stroke: #525a52;
  stroke-dasharray: 7 10;
  stroke-width: 2px;
  animation: priority-dash 8s linear infinite;
}

.priority-orbit {
  fill: none;
  stroke: #343a34;
  stroke-width: 1.5px;
}

.priority-orbit--inner {
  stroke: var(--signal);
  stroke-dasharray: 3 11;
  animation: priority-spin 18s linear infinite;
  transform-origin: 300px 300px;
}

.fragment {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 145px;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid #4c534c;
  background: #141914;
  color: #c5bdb1;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.fragment i {
  width: 7px;
  height: 7px;
  background: var(--signal);
}

.fragment--one { top: 18%; left: 6%; animation: fragment-breathe 5.2s ease-in-out infinite; }
.fragment--two { top: 15%; right: 5%; animation: fragment-breathe 5.2s ease-in-out infinite 0.8s; }
.fragment--three { right: 7%; bottom: 13%; animation: fragment-breathe 5.2s ease-in-out infinite 1.6s; }

.priority-lock {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  align-content: center;
  width: 44%;
  aspect-ratio: 1;
  padding: 9%;
  border: 2px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.priority-lock small,
.priority-lock span {
  font-family: var(--mono);
  font-size: clamp(6px, 0.65vw, 9px);
  letter-spacing: 0.1em;
}

.priority-lock strong {
  margin-block: 8px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

@keyframes priority-dash {
  to { stroke-dashoffset: -170; }
}

@keyframes priority-spin {
  to { transform: rotate(360deg); }
}

@keyframes fragment-breathe {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-7px); }
}

/* Proof and Danilo */

.proof {
  padding: 0;
  overflow: hidden;
}

.danilo-section {
  position: relative;
  padding-bottom: var(--section-space);
  overflow: hidden;
}

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
  padding-block: clamp(48px, 5vw, 76px);
  border-block: 1px solid #a89d8e;
}

.proof-strip .scene-label {
  margin-bottom: 18px;
}

.proof-strip h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.3vw, 66px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.proof-strip-body > p:first-child {
  max-width: 760px;
  margin: 0;
  color: #423f39;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.45;
}

.proof-strip-body .proof-limit {
  margin: 18px 0 16px;
  padding: 14px 0;
}

.proof-grid,
.danilo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(50px, 8vw, 128px);
  align-items: center;
}

.proof-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 48vw, 690px);
  border: 1px solid #9d9284;
  background: var(--ink);
}

.proof-media img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  object-fit: cover;
  object-position: center top;
}

.proof-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  padding: clamp(28px, 5vw, 72px);
  color: var(--cream);
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), #242924 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), #242924 1px);
  background-size: 20% 100%, 100% 20%;
}

.proof-fallback::before {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 44%;
  aspect-ratio: 1;
  border: 2px solid var(--signal);
  content: "";
}

.proof-fallback span {
  color: var(--signal);
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.65;
}

.proof-fallback strong {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.proof-fallback small,
.proof-coordinate {
  margin-top: 14px;
  color: var(--ash);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.proof-coordinate {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 14px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--cream);
}

.proof-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(50px, 6vw, 90px);
}

.proof-copy > p:not(.scene-label) {
  color: #423f39;
  font-size: clamp(18px, 1.5vw, 23px);
}

.proof-limit {
  margin: 32px 0;
  padding: 22px 0;
  border-block: 1px solid #a89d8e;
  font-size: 15px !important;
}

.proof-limit strong {
  display: block;
  margin-bottom: 6px;
  color: #a83211;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ink-link {
  color: var(--ink);
}

.danilo-grid {
  grid-template-columns: 5fr 7fr;
  margin-top: 0;
  padding-top: var(--section-space);
  border-top: 2px solid var(--ink);
}

.danilo-monogram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #a89d8e;
  background: var(--paper);
  color: var(--ink);
}

.danilo-portrait {
  display: block;
  min-height: 520px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--paper);
}

.danilo-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 32%;
}

.danilo-page-hero .danilo-grid { padding-block: clamp(64px, 8vw, 120px); }
.danilo-page-hero h1 { font-family: var(--display); font-size: clamp(46px, 6.6vw, 104px); line-height: .92; text-transform: uppercase; }
.danilo-process { margin-top: 48px; }

.danilo-monogram span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(130px, 15vw, 240px);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.7;
  text-align: center;
}

.danilo-monogram i {
  position: relative;
  z-index: 2;
  width: 3px;
  height: 190px;
  background: var(--signal);
  transform: rotate(22deg);
}

.danilo-monogram small {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-align: center;
}

.danilo-copy h2 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(47px, 6vw, 92px);
}

.danilo-copy > p:not(.scene-label) {
  max-width: 760px;
  color: #423f39;
  font-size: clamp(19px, 1.65vw, 25px);
}

/* Objections */

.section-paper {
  background: var(--paper);
}

.objections {
  padding-block: var(--section-space);
  border-top: 1px solid #b8ad9d;
}

.objections-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 4fr) minmax(0, 8fr);
  gap: clamp(52px, 9vw, 150px);
}

.objections-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.objections-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(45px, 5vw, 76px);
}

.objections-heading > p:last-child {
  max-width: 450px;
  color: #4d4942;
}

.objection-list {
  border-top: 2px solid var(--ink);
}

.objection-list details {
  border-bottom: 1px solid #958b7d;
}

.objection-list summary {
  display: grid;
  grid-template-columns: 48px 1fr 44px;
  gap: 20px;
  align-items: center;
  min-height: 96px;
  padding: 18px 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.7vw, 40px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.objection-list summary::-webkit-details-marker {
  display: none;
}

.objection-list summary > span {
  color: #a83211;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.objection-list summary i {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
}

.objection-list summary i::before,
.objection-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.objection-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.objection-list details[open] summary i {
  background: var(--signal);
  border-color: var(--signal);
}

.objection-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.objection-list details[open] summary {
  color: #a83211;
}

.objection-list details > p {
  max-width: 720px;
  padding: 0 64px 30px 68px;
  margin-bottom: 0;
  color: #403d37;
  font-size: clamp(17px, 1.4vw, 21px);
}

/* Final CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--signal);
  color: var(--ink);
}

.final-cta::before {
  position: absolute;
  top: -32vw;
  right: -14vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(11, 14, 12, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(11, 14, 12, 0.035), 0 0 0 18vw rgba(11, 14, 12, 0.03);
  content: "";
}

.final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(64px, 10vw, 170px);
  align-items: end;
}

.final-cta .scene-label {
  color: rgba(11, 14, 12, 0.7);
}

.final-cta .scene-label span {
  color: var(--ink);
}

.final-cta h2 {
  max-width: 960px;
  font-size: clamp(58px, 8vw, 126px);
}

.final-action {
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}

.final-action > p:first-child {
  font-size: clamp(19px, 1.7vw, 25px);
}

.action--dark {
  width: 100%;
  margin-block: 20px 26px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.action--dark:hover {
  background: var(--cream);
}

.final-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-promise span {
  opacity: 0.5;
}

.final-action small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}

/* Footer */

.site-footer {
  padding-top: 72px;
  border-top: 1px solid var(--dark-line);
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 6fr 3fr 3fr;
  gap: 60px;
  padding-bottom: 72px;
}

.brand--footer {
  margin-bottom: 22px;
}

.footer-grid > div:first-child > p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--ash);
  font-size: 17px;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  color: #c8c1b6;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: var(--signal);
}

.footer-contact span {
  color: #74776f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid var(--dark-line);
  color: #74776f;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-language-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer-language-links a {
  display: grid;
  width: 38px;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--dark-line);
  color: var(--ash);
  text-decoration: none;
}

.footer-language-links a[aria-current="page"] {
  border-color: var(--signal);
  color: var(--cream);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #25d366;
  color: #07150c;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(1440px, calc(100vw - 48px));
  }

  .header-grid {
    grid-template-columns: 190px 1fr auto;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 6.5fr) minmax(360px, 5.5fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.4vw, 82px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > div {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }

  .problems-grid,
  .method-grid {
    gap: 64px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 68px;
    --shell: calc(100vw - 40px);
    --section-space: clamp(82px, 14vw, 128px);
  }

  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 100px;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #4b514b;
    color: var(--cream);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary i,
  .mobile-nav summary i::before {
    width: 17px;
    height: 1px;
    background: var(--signal);
    content: "";
    transition: transform 180ms ease;
  }

  .mobile-nav summary i {
    position: relative;
  }

  .mobile-nav summary i::before {
    position: absolute;
    top: 6px;
    left: 0;
  }

  .mobile-nav[open] summary i {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-nav[open] summary i::before {
    transform: translateY(-6px) rotate(-90deg);
  }

  .mobile-nav > nav {
    position: fixed;
    z-index: 110;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    max-height: calc(100svh - var(--header-height));
    padding: 22px max(20px, calc((100vw - var(--shell)) / 2)) 34px;
    overflow-y: auto;
    border-bottom: 1px solid #4b514b;
    background: var(--ink);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav > nav a {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid var(--dark-line);
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -0.03em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav > nav a span {
    color: var(--signal);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .mobile-nav > nav .mobile-nav-cta {
    display: flex;
    justify-content: center;
    min-height: 56px;
    margin-top: 24px;
    border: 2px solid var(--signal);
    background: var(--signal);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  body:has(.mobile-nav[open]) {
    overflow: hidden;
  }

  .hero-grid,
  .problems-grid,
  .method-grid,
  .proof-grid,
  .danilo-grid,
  .objections-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
    min-height: auto;
    padding-block: 72px 62px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(56px, 10.5vw, 92px);
  }

  .motion-frame--hero {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading .scene-label {
    margin-top: 0;
  }

  .section-heading > div {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .problems-grid {
    gap: 70px;
  }

  .problems-grid .motion-frame {
    width: min(100%, 650px);
  }

  .problem-ledger li {
    padding-block: 28px;
  }

  .method-grid {
    gap: 72px;
  }

  .method-copy h2 {
    max-width: 800px;
  }

  .motion-frame--priority {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .proof-grid,
  .proof-strip,
  .danilo-grid {
    gap: 54px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-media {
    min-height: min(78vw, 650px);
  }

  .proof-copy,
  .danilo-copy {
    max-width: 780px;
  }

  .danilo-monogram {
    min-height: min(60vw, 440px);
  }

  .objections-grid {
    gap: 54px;
  }

  .objections-heading {
    position: static;
  }

  .final-grid {
    align-items: start;
  }

  .final-action {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 620px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-space: 84px;
  }

  body {
    font-size: 17px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    margin-right: 9px;
  }

  .brand-name {
    font-size: 13px;
  }

  .mobile-nav summary {
    min-width: 88px;
  }

  .hero-grid {
    gap: 44px;
    padding-block: 54px 50px;
  }

  .hero-copy,
  .motion-frame--hero {
    min-width: 0;
  }

  .hero .scene-label {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .scene-label {
    margin-bottom: 21px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(45px, 12.8vw, 67px);
    letter-spacing: -0.075em;
    line-height: 0.9;
  }

  .hero-intro {
    font-size: 19px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .action {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .promise {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-index {
    gap: 8px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .motion-replay {
    min-width: 78px;
  }

  .motion-frame figcaption {
    min-height: 62px;
    font-size: 8px;
  }

  .fallback-statement {
    font-size: 21px;
  }

  .fallback-tag,
  .radar-label {
    font-size: 6px;
  }

  .section-heading {
    gap: 14px;
    padding-top: 64px;
    padding-bottom: 46px;
  }

  .section-heading .scene-label {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
  }

  .section-heading > div {
    min-width: 0;
  }

  .section-heading h2 {
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .method-copy h2,
  .proof-copy h2,
  .danilo-copy h2,
  .objections-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .section-heading p,
  .method-copy > p:not(.scene-label):not(.disclosure),
  .proof-copy > p:not(.scene-label),
  .danilo-copy > p:not(.scene-label) {
    font-size: 18px;
  }

  .problems-grid {
    gap: 58px;
    padding-top: 58px;
  }

  .problem-ledger li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .ledger-code {
    display: none;
  }

  .problem-ledger h3 {
    font-size: 28px;
  }

  .problem-ledger p {
    font-size: 16px;
  }

  .method-steps li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .method-steps div {
    display: grid;
    gap: 8px;
  }

  .method-steps small {
    font-size: 14px;
    text-align: left;
  }

  .disclosure {
    padding: 17px;
    font-size: 9px;
  }

  .fragment {
    width: 108px;
    min-height: 38px;
    font-size: 6px;
  }

  .proof-media {
    min-height: 112vw;
  }

  .proof-strip {
    gap: 28px;
    padding-block: 40px;
  }

  .proof-media,
  .proof-copy,
  .danilo-portrait,
  .danilo-copy {
    min-width: 0;
  }

  .proof-strip h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-language-links {
    order: 3;
  }

  .proof-fallback {
    padding: 26px;
  }

  .danilo-monogram {
    min-height: 300px;
    padding: 14px;
  }

  .danilo-monogram span {
    font-size: 32vw;
  }

  .danilo-monogram i {
    height: 130px;
  }

  .objection-list summary {
    grid-template-columns: 30px 1fr 44px;
    gap: 10px;
    min-height: 88px;
    font-size: 21px;
  }

  .objection-list details > p {
    padding: 0 0 26px 40px;
    font-size: 16px;
  }

  .objections-heading,
  .objection-list {
    min-width: 0;
  }

  .objections-heading h2,
  .objection-list summary {
    overflow-wrap: anywhere;
  }

  .final-cta h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    display: grid;
  }
}

@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;
  }

  .motion-replay {
    display: none;
  }
}

@media (forced-colors: active) {
  .action,
  .motion-replay,
  .objection-list summary i {
    border: 2px solid ButtonText;
  }

  .motion-video {
    forced-color-adjust: none;
  }
}
