:root {
  --ink: #07090d;
  --ink-2: #0b1018;
  --panel: #111720;
  --panel-soft: #182231;
  --text: #f5f7fb;
  --muted: #b8c1cf;
  --blue: #04a8ff;
  --blue-deep: #006bb6;
  --red: #ff3f35;
  --sand: #e7c98f;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --max: 1180px;
  --hero-junction: #000;
  --hero-floor: #101216;
  --hero-floor-soft: #161b22;
  --smoke-reach: 38%;
  --smoke-mirror: clamp(140px, 38vh, 350px);
  --cinema-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-fade: 120px;
  --smoke-bridge: clamp(360px, 48vh, 640px);
  --smoke-bridge-overlap: clamp(170px, 24vh, 300px);
  --reveal-distance: 28px;
  --reveal-duration: 0.75s;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.visually-hidden,
.skip-link {
  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:focus {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--text);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(7, 9, 13, .88), rgba(7, 9, 13, .2));
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, .88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: clamp(42px, 10vw, 56px);
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-landing {
  position: relative;
  overflow: hidden;
  background: var(--hero-junction);
}

.hero-landing-stage {
  position: relative;
  z-index: 0;
  overflow: visible;
  background: var(--hero-junction);
}

.hero.hero--cinema {
  min-height: clamp(420px, 72svh, 920px);
  max-height: 920px;
  width: 100%;
  overflow: hidden;
  background: var(--hero-junction);
}

.hero--cinema .hero-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero--cinema .hero-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 26s var(--cinema-ease) infinite alternate;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045) translateY(-1%);
  }
}

.hero-rotate {
  position: absolute;
  inset: 0;
}

.hero-rotate__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--cinema-ease);
}

.hero-rotate__slide.is-active {
  opacity: 1;
}

.hero-rotate__slide picture,
.hero-rotate__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-rotate__slide.is-active img {
  animation: heroKenBurns 26s var(--cinema-ease) infinite alternate;
}

.hero-crossfade {
  position: absolute;
  inset: 0;
  animation: heroKenBurns 26s var(--cinema-ease) infinite alternate;
}

.hero-crossfade__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.2s var(--cinema-ease);
}

.hero-crossfade__frame.is-active {
  opacity: 1;
}

.hero-crossfade__frame picture,
.hero-crossfade__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-crossfade .hero-media__img {
  animation: none;
}

.hero-crossfade__frame.hero-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(112px, 24%, 260px);
  pointer-events: none;
  content: "";
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, .12) 32%,
    rgba(0, 0, 0, .42) 62%,
    var(--hero-junction) 100%
  );
}

.hero--cinema .hero-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(112px, 24%, 260px);
  pointer-events: none;
  content: "";
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, .12) 32%,
    rgba(0, 0, 0, .42) 62%,
    var(--hero-junction) 100%
  );
}

.hero-smoke {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--smoke-reach);
  overflow: hidden;
  pointer-events: none;
  --smoke-mask-rise: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, .08) 7%,
    rgba(0, 0, 0, .22) 14%,
    rgba(0, 0, 0, .4) 22%,
    rgba(0, 0, 0, .58) 30%,
    rgba(0, 0, 0, .74) 40%,
    rgba(0, 0, 0, .88) 52%,
    rgba(0, 0, 0, .78) 66%,
    rgba(0, 0, 0, .52) 80%,
    rgba(0, 0, 0, .24) 92%,
    transparent 100%
  );
  -webkit-mask-image: var(--smoke-mask-rise);
  mask-image: var(--smoke-mask-rise);
}

@media (max-width: 899px) {
  .hero-smoke {
    -webkit-mask-image:
      var(--smoke-mask-rise),
      radial-gradient(
        ellipse 58% 105% at 44% 0%,
        transparent 0%,
        rgba(0, 0, 0, .1) 20%,
        rgba(0, 0, 0, .48) 42%,
        #000 72%
      );
    mask-image:
      var(--smoke-mask-rise),
      radial-gradient(
        ellipse 58% 105% at 44% 0%,
        transparent 0%,
        rgba(0, 0, 0, .1) 20%,
        rgba(0, 0, 0, .48) 42%,
        #000 72%
      );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
}

@media (min-width: 900px) {
  .hero-smoke {
    -webkit-mask-image:
      var(--smoke-mask-rise),
      linear-gradient(
        to top right,
        #000 0%,
        #000 40%,
        rgba(0, 0, 0, .72) 56%,
        rgba(0, 0, 0, .28) 74%,
        transparent 92%
      ),
      radial-gradient(
        ellipse 50% 115% at 52% 0%,
        transparent 0%,
        rgba(0, 0, 0, .12) 22%,
        rgba(0, 0, 0, .5) 46%,
        #000 72%
      );
    mask-image:
      var(--smoke-mask-rise),
      linear-gradient(
        to top right,
        #000 0%,
        #000 40%,
        rgba(0, 0, 0, .72) 56%,
        rgba(0, 0, 0, .28) 74%,
        transparent 92%
      ),
      radial-gradient(
        ellipse 50% 115% at 52% 0%,
        transparent 0%,
        rgba(0, 0, 0, .12) 22%,
        rgba(0, 0, 0, .5) 46%,
        #000 72%
      );
    -webkit-mask-composite: source-in, source-in;
    mask-composite: intersect, intersect;
  }

  .hero-smoke__video {
    object-position: 32% bottom;
  }
}

.hero-smoke__blend {
  position: relative;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  -webkit-mix-blend-mode: screen;
}

.hero-smoke__blend::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--smoke-tint, transparent);
  mix-blend-mode: color;
  opacity: var(--smoke-tint-opacity, 0);
  pointer-events: none;
}

.hero-smoke__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: .6;
}

.hero-intro-smoke {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: var(--smoke-mirror);
  overflow: hidden;
  pointer-events: none;
  --smoke-mask-fall: linear-gradient(
    to bottom,
    #000 0%,
    rgba(0, 0, 0, .94) 12%,
    rgba(0, 0, 0, .72) 32%,
    rgba(0, 0, 0, .44) 56%,
    rgba(0, 0, 0, .18) 78%,
    transparent 100%
  );
  -webkit-mask-image: var(--smoke-mask-fall);
  mask-image: var(--smoke-mask-fall);
}

.hero-intro-smoke .hero-smoke__blend {
  transform: scaleY(-1);
  transform-origin: bottom center;
}

.hero-intro-smoke .hero-smoke__video {
  opacity: .6;
}

@media (max-width: 899px) {
  .hero-intro-smoke {
    -webkit-mask-image:
      var(--smoke-mask-fall),
      radial-gradient(
        ellipse 58% 105% at 44% 100%,
        transparent 0%,
        rgba(0, 0, 0, .1) 20%,
        rgba(0, 0, 0, .48) 42%,
        #000 72%
      );
    mask-image:
      var(--smoke-mask-fall),
      radial-gradient(
        ellipse 58% 105% at 44% 100%,
        transparent 0%,
        rgba(0, 0, 0, .1) 20%,
        rgba(0, 0, 0, .48) 42%,
        #000 72%
      );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
}

@media (min-width: 900px) {
  .hero-intro-smoke {
    -webkit-mask-image:
      var(--smoke-mask-fall),
      linear-gradient(
        to bottom left,
        #000 0%,
        #000 40%,
        rgba(0, 0, 0, .72) 56%,
        rgba(0, 0, 0, .28) 74%,
        transparent 92%
      ),
      radial-gradient(
        ellipse 50% 115% at 52% 100%,
        transparent 0%,
        rgba(0, 0, 0, .12) 22%,
        rgba(0, 0, 0, .5) 46%,
        #000 72%
      );
    mask-image:
      var(--smoke-mask-fall),
      linear-gradient(
        to bottom left,
        #000 0%,
        #000 40%,
        rgba(0, 0, 0, .72) 56%,
        rgba(0, 0, 0, .28) 74%,
        transparent 92%
      ),
      radial-gradient(
        ellipse 50% 115% at 52% 100%,
        transparent 0%,
        rgba(0, 0, 0, .12) 22%,
        rgba(0, 0, 0, .5) 46%,
        #000 72%
      );
    -webkit-mask-composite: source-in, source-in;
    mask-composite: intersect, intersect;
  }

  .hero-intro-smoke .hero-smoke__video {
    object-position: 32% bottom;
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, .55) 100%);
}

.hero-scroll-hint {
  display: none;
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  left: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 16px;
  color: rgba(245, 247, 251, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity .35s var(--cinema-ease), transform .35s var(--cinema-ease);
  pointer-events: auto;
}

.hero-scroll-hint__icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: heroScrollHintBounce 2.2s var(--cinema-ease) infinite;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
  color: var(--text);
}

.hero-scroll-hint.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@keyframes heroScrollHintBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.hero-intro {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-intro::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent var(--smoke-mirror),
    var(--hero-floor) calc(var(--smoke-mirror) + 48px),
    var(--hero-floor-soft) calc(var(--smoke-mirror) + 140px),
    var(--ink-2) calc(var(--smoke-mirror) + 240px),
    var(--ink) calc(var(--smoke-mirror) + 340px)
  );
}

.hero-intro-inner {
  position: relative;
  z-index: 5;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-intro .trust-strip li {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(17, 23, 32, .82);
  color: rgba(245, 247, 251, .88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(8px);
}

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

.hero-name {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(30px, 4.8vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.015em;
}

.hero-credentials {
  margin-bottom: 18px;
}

.hero-credentials__sep {
  margin: 0 .45em;
  color: rgba(255, 255, 255, .28);
  font-weight: 400;
}

.hero-credentials__badge {
  color: var(--text);
  letter-spacing: .14em;
}

.hero-intro-copy h1 {
  max-width: 16ch;
  font-size: clamp(36px, 6.2vw, 72px);
  line-height: 1.02;
}

.responsive-media {
  display: block;
  width: 100%;
}

.responsive-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.responsive-media--fit img {
  object-fit: contain;
  background: var(--ink-2);
}

.proof-card .responsive-media,
.credential-photo .responsive-media {
  height: 100%;
}

.proof-card .responsive-media img,
.credential-photo .responsive-media img {
  height: 100%;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 13, .94) 0%, rgba(7, 9, 13, .7) 44%, rgba(7, 9, 13, .18) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(7, 9, 13, 0) 38%);
}

.hero.hero--cinema::before {
  content: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(var(--max), calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 120px 0 80px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead,
.section-head p,
.split-copy > p,
.contact-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions--paths,
.contact-actions--paths {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 640px) {
  .hero-actions--paths,
  .contact-actions--paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }
}

.cta-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.cta-path .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .cta-path .btn {
    width: auto;
    min-width: min(100%, 280px);
  }
}

.contact-actions--paths .cta-path .btn {
  width: 100%;
  min-width: 0;
}

.cta-hint {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cta-hint--form {
  margin-top: 4px;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 40px);
}

.section-cta--center {
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
}

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
}

.faq-cta p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn svg {
  width: 19px;
  height: 19px;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--blue);
  color: #041018;
  box-shadow: 0 16px 36px rgba(4, 168, 255, .28);
  min-height: 50px;
  padding: 13px 20px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #48c0ff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-strip li {
  border: 1px solid var(--line);
  padding: 8px 11px;
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  align-self: center;
  border: 1px solid var(--line);
  background: rgba(12, 16, 23, .74);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
}

.hero-stat {
  padding: 18px;
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.section.hero-intro {
  width: 100%;
  max-width: none;
  margin-top: calc(-1 * var(--smoke-mirror));
  padding: calc(clamp(28px, 4vw, 44px) + var(--smoke-mirror)) 0 clamp(56px, 8vw, 96px);
  background: transparent;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-item {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(145deg, var(--panel), var(--ink-2));
}

.method-item span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 900;
}

.method-item p,
.offer-list p,
.process-list span,
.faq p,
.site-footer {
  color: var(--muted);
}

.realism-panel {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 63, 53, .08), transparent 42%),
    var(--panel);
}

.realism-panel > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.realism-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.realism-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.realism-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sand);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.realism-grid span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-media .responsive-media,
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 30%;
  box-shadow: var(--shadow);
}

.split-media .responsive-media img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.offer-list article {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--panel);
}

.offer-list h3 a {
  color: inherit;
  text-decoration: none;
}

.offer-list h3 a:hover,
.offer-list h3 a:focus-visible {
  color: var(--sand);
}

.offer-list .text-link {
  display: inline-block;
  margin-top: 12px;
}

.knowledge-card .text-link {
  display: inline-block;
  margin-top: 10px;
}

.credential strong a {
  color: inherit;
  text-decoration: none;
}

.credential strong a:hover,
.credential strong a:focus-visible {
  color: var(--text);
}

.credentials {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.credential {
  min-height: 190px;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(4, 168, 255, .14), transparent 45%),
    var(--panel);
}

.credential strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(44px, 7vw, 78px);
  line-height: .9;
}

.credential span {
  display: block;
  max-width: 220px;
  color: var(--muted);
  font-weight: 800;
}

.credential-photo {
  min-height: 260px;
  padding: 0;
  overflow: hidden;
}

.credential-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.knowledge {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(4, 168, 255, .08), rgba(255, 255, 255, 0) 44%),
    #0a0e15;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 14px;
}

.knowledge-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
}

.knowledge-card img {
  width: 100%;
  height: clamp(240px, 30vw, 420px);
  object-fit: cover;
}

.knowledge-card div {
  padding: 22px;
}

.knowledge-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--sand);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.proof-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.proof-card.tall {
  grid-row: span 2;
}

.proof-card.wide {
  grid-column: span 2;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  transition: transform .5s ease;
}

.proof-card:hover img {
  transform: scale(1.04);
}

.proof-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(7, 9, 13, .78);
  color: var(--text);
  font-weight: 800;
}

.photo-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1.1fr;
  gap: 12px;
}

.photo-row .responsive-media,
.photo-row img {
  width: 100%;
  height: clamp(230px, 32vw, 440px);
  object-fit: cover;
  object-position: 50% 30%;
}

img.focus-face-hero {
  object-position: 42% 28%;
}

img.focus-face-hero-strength {
  object-position: 64% 44%;
}

img.focus-face-hero-portrait {
  object-position: 50% 22%;
}

img.focus-face-hero-desktop {
  object-position: 50% 42%;
}

img.focus-face-offer-portrait {
  object-position: 50% 18%;
}

img.focus-face-offer-desktop {
  object-position: 42% 32%;
}

img.focus-face-credential-portrait {
  object-position: 50% 22%;
}

img.focus-face-credential-desktop {
  object-position: 50% 28%;
}

img.focus-face-proof-dip-portrait {
  object-position: 50% 14%;
}

img.focus-face-proof-dip-desktop {
  object-position: 50% 42%;
}

img.focus-face-gallery-dip-desktop {
  object-position: 50% 38%;
}

img.focus-face-gallery-outdoor-desktop {
  object-position: 50% 30%;
}

img.focus-face-proof-medal {
  object-position: 50% 22%;
}

img.focus-face-proof-transform-portrait {
  object-position: 58% 26%;
}

img.focus-face-proof-transform-desktop {
  object-position: 50% 18%;
}

img.focus-face-proof-workshop-portrait {
  object-position: 50% 12%;
}

img.focus-face-proof-workshop-desktop {
  object-position: 50% 36%;
}

img.focus-face-gallery-dip-portrait {
  object-position: 50% 32%;
}

img.focus-face-gallery-education-portrait {
  object-position: 50% 12%;
}

img.focus-face-gallery-education-desktop {
  object-position: 68% 30%;
}

img.focus-face-gallery-outdoor-portrait {
  object-position: 44% 34%;
}

img.focus-face-gallery-team-portrait {
  object-position: 50% 22%;
}

img.focus-face-gallery-team-desktop {
  object-position: 50% 28%;
}

@media (min-width: 900px) {
  img.focus-face-hero-portrait {
    object-position: 50% 42%;
  }

  img.focus-face-offer-portrait {
    object-position: 42% 32%;
  }

  img.focus-face-credential-portrait {
    object-position: 50% 28%;
  }

  img.focus-face-proof-dip-portrait {
    object-position: 50% 16%;
  }

  img.focus-face-proof-medal {
    object-position: 50% 32%;
  }

  img.focus-face-proof-transform-portrait {
    object-position: 50% 18%;
  }

  img.focus-face-proof-workshop-portrait {
    object-position: 50% 48%;
  }

  img.focus-face-gallery-dip-portrait {
    object-position: 50% 38%;
  }

  img.focus-face-gallery-education-portrait {
    object-position: 68% 30%;
  }

  img.focus-face-gallery-outdoor-portrait {
    object-position: 50% 30%;
  }

  img.focus-face-gallery-team-portrait {
    object-position: 50% 28%;
  }
}

img.focus-face-center {
  object-position: 50% 28%;
}

img.focus-face-coaching {
  object-position: 58% 30%;
}

img.focus-face-dip {
  object-position: 52% 18%;
}

img.focus-face-medal {
  object-position: 58% 24%;
}

img.focus-face-transform {
  object-position: 50% 18%;
}

img.focus-face-water {
  object-position: 50% 22%;
}

img.focus-face-dip-outdoor {
  object-position: 50% 22%;
}

img.focus-face-education {
  object-position: 36% 32%;
}

img.focus-face-certificate {
  object-position: 50% 18%;
}

img.focus-face-book-cover {
  object-position: 50% 50%;
}

img.focus-face-author {
  object-position: 50% 20%;
}

img.focus-face-price {
  object-position: 50% 50%;
}

img.focus-face-workshop-wide {
  object-position: 50% 54%;
}

img.focus-face-outdoor {
  object-position: 50% 28%;
}

img.focus-face-close {
  object-position: 50% 22%;
}

img.focus-face-selfie {
  object-position: 52% 20%;
}

img.focus-face-beach {
  object-position: 50% 18%;
}

img.focus-face-team {
  object-position: 50% 22%;
}

.photo-row .responsive-media img {
  height: clamp(230px, 32vw, 440px);
}

.photo-row .responsive-media:nth-child(even) {
  margin-top: 44px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 230px;
  padding: 28px;
  background: var(--panel);
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-weight: 900;
  content: "0" counter(process);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--panel);
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 800;
}

.faq p {
  padding: 0 22px 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(145deg, var(--panel), #0c121b);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 13px 14px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  outline: none;
}

.contact-form select option {
  color: #111;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4, 168, 255, .18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sand);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 86px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.social-dock {
  position: fixed;
  z-index: 13;
  right: max(14px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity .4s ease,
    transform .45s cubic-bezier(.22, 1, .36, 1),
    visibility .4s;
  pointer-events: none;
}

.social-dock--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.social-dock__btn {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(17, 23, 32, .92);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .2s ease;
}

.social-dock__btn:hover,
.social-dock__btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.social-dock__btn--wa:hover,
.social-dock__btn--wa:focus-visible {
  border-color: rgba(37, 211, 102, .55);
  color: #25d366;
  background: rgba(17, 23, 32, .98);
}

.social-dock__btn--ig:hover,
.social-dock__btn--ig:focus-visible {
  border-color: rgba(225, 48, 108, .45);
  color: #f77737;
  background: rgba(17, 23, 32, .98);
}

.social-dock__btn--fb:hover,
.social-dock__btn--fb:focus-visible {
  border-color: rgba(4, 168, 255, .55);
  color: var(--blue);
  background: rgba(17, 23, 32, .98);
}

.social-dock__icon {
  display: block;
  width: 21px;
  height: 21px;
}

@media (max-width: 920px) {
  .social-dock {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-dock,
  .social-dock--visible {
    transition: none;
  }

  .hero-scroll-hint,
  .hero-scroll-hint__icon {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--reveal-duration) var(--cinema-ease), transform var(--reveal-duration) var(--cinema-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .hero-landing-stage {
    height: 100svh;
    min-height: 100svh;
  }

  .hero.hero--cinema {
    min-height: 100%;
    height: 100%;
    max-height: none;
  }

  .section.hero-intro {
    margin-top: 0;
    padding-top: clamp(72px, 10vw, 120px);
  }

  .hero-scroll-hint {
    display: inline-flex;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .08);
    color: var(--text);
  }

  .nav-toggle span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    min-width: 220px;
    border: 1px solid var(--line);
    padding: 10px;
    background: rgba(7, 9, 13, .96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .realism-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 390px;
  }

  .method-grid,
  .process-list,
  .offer-list,
  .credential-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    height: 40px;
    max-width: min(148px, 44vw);
  }

  .hero.hero--cinema {
    min-height: clamp(360px, 58svh, 620px);
    max-height: none;
  }

  .hero--cinema .hero-media__img,
  img.focus-face-hero,
  img.focus-face-hero-portrait {
    object-position: 50% 18%;
  }

  img.focus-face-hero-desktop {
    object-position: 50% 42%;
  }

  img.focus-face-coaching {
    object-position: 62% 24%;
  }

  img.focus-face-hero-strength {
    object-position: 66% 40%;
  }

  img.focus-face-dip,
  img.focus-face-transform,
  img.focus-face-water,
  img.focus-face-dip-outdoor,
  img.focus-face-close,
  img.focus-face-selfie,
  img.focus-face-beach,
  img.focus-face-team,
  img.focus-face-certificate,
  img.focus-face-outdoor {
    object-position: 50% 18%;
  }

  img.focus-face-education {
    object-position: 42% 24%;
  }

  .knowledge-card img {
    height: 330px;
  }

  .hero-inner {
    min-height: auto;
    padding: 104px 0 64px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip li {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .proof-grid,
  .photo-row {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-card.tall,
  .proof-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .photo-row .responsive-media,
  .photo-row img,
  .photo-row .responsive-media:nth-child(even) {
    height: 330px;
    margin-top: 0;
  }

  .photo-row .responsive-media img {
    height: 330px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 12;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mobile-cta a {
    display: grid;
    min-height: 52px;
    padding: 0 12px;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .38);
  }

  .mobile-cta__primary {
    background: var(--blue);
    color: #041018;
  }

  .mobile-cta__secondary {
    border: 1px solid var(--line);
    background: rgba(7, 9, 13, .92);
    color: var(--text);
    backdrop-filter: blur(12px);
  }
}

/* Subpages */
.page-shell {
  padding-bottom: 80px;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.page-breadcrumb a {
  color: var(--sand);
  text-decoration: none;
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus-visible {
  color: var(--text);
}

.page-breadcrumb span[aria-hidden="true"] {
  opacity: .5;
}

.page-hero {
  position: relative;
  display: grid;
  gap: 0;
  background: var(--ink-2);
}

.page-hero-media {
  position: relative;
  min-height: clamp(340px, 58vw, 520px);
  overflow: hidden;
}

.page-hero-media .responsive-media,
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 58vw, 520px);
  object-fit: cover;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 9, 13, .08) 0%, rgba(7, 9, 13, .72) 72%, var(--ink) 100%);
  pointer-events: none;
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.page-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(38px, 7vw, 72px);
}

.page-hero-copy .hero-lead {
  max-width: 640px;
}

.page-hero--overlay .page-hero-inner {
  position: relative;
  margin-top: -120px;
  z-index: 1;
}

.subpage-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.subpage-step {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.subpage-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.subpage-step p {
  margin: 0;
  color: var(--muted);
}

.subpage-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subpage-proof figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.subpage-proof .responsive-media,
.subpage-proof img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.subpage-proof .responsive-media--fit img,
.subpage-proof img.focus-transform-body {
  object-fit: contain;
  background: var(--ink-2);
}

.subpage-proof figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  background: rgba(7, 9, 13, .82);
  font-weight: 800;
}

.page-cta-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(4, 168, 255, .12), transparent 50%),
    var(--panel);
}

.page-cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.page-cta-band p {
  max-width: 620px;
  color: var(--muted);
}

.subpage-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.subpage-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.subpage-links a:hover,
.subpage-links a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, .28);
}

.site-footer--extended {
  display: grid;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px) 100px;
}

.site-footer--extended .subpage-links {
  margin-top: 0;
}

@media (min-width: 900px) {
  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
    align-items: stretch;
    min-height: min(88svh, 760px);
  }

  .page-hero-media {
    order: 2;
    min-height: 100%;
  }

  .page-hero-media .responsive-media,
  .page-hero-media img {
    min-height: 100%;
  }

  .page-hero-media::after {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(7, 9, 13, .15) 38%, rgba(7, 9, 13, .42) 100%);
  }

  .page-hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    min-height: min(88svh, 760px);
    padding: 120px 0 64px;
  }

  .page-hero--overlay .page-hero-inner {
    margin-top: 0;
  }
}

@media (max-width: 899px) {
  .subpage-steps,
  .subpage-proof,
  .subpage-links {
    grid-template-columns: 1fr;
  }

  .subpage-proof figure {
    min-height: 320px;
  }

  .subpage-proof .responsive-media,
  .subpage-proof img {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-smoke,
  .hero-intro-smoke,
  .smoke-bridge {
    display: none;
  }

  .hero--cinema .hero-media__img,
  .hero-rotate__slide.is-active img,
  .hero-crossfade {
    animation: none;
  }
}

/* Cinema scroll system */
.smoke-bridge {
  position: absolute;
  z-index: 1;
  top: calc(-1 * var(--smoke-bridge-overlap));
  right: 0;
  left: 0;
  height: var(--smoke-bridge);
  overflow: hidden;
  pointer-events: none;
  --smoke-tint-opacity: .78;
  --smoke-veil: rgba(4, 168, 255, .2);
  --smoke-x: center;
  --smoke-scale: 1.08;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, .18) 6%,
      rgba(0, 0, 0, .7) 18%,
      #000 42%,
      rgba(0, 0, 0, .78) 76%,
      rgba(0, 0, 0, .22) 94%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, .24) 7%,
      #000 20%,
      #000 80%,
      rgba(0, 0, 0, .24) 93%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, .18) 6%,
      rgba(0, 0, 0, .7) 18%,
      #000 42%,
      rgba(0, 0, 0, .78) 76%,
      rgba(0, 0, 0, .22) 94%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, .24) 7%,
      #000 20%,
      #000 80%,
      rgba(0, 0, 0, .24) 93%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.smoke-bridge::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      var(--smoke-veil) 42%,
      transparent 100%
    );
  mix-blend-mode: screen;
  opacity: .86;
  pointer-events: none;
}

.smoke-bridge .hero-smoke__blend {
  height: 100%;
}

.smoke-bridge .hero-smoke__video {
  height: 100%;
  object-fit: cover;
  object-position: var(--smoke-x) center;
  opacity: .76;
  transform: scale(var(--smoke-scale));
  filter: saturate(1.3) contrast(1.08) hue-rotate(var(--smoke-hue, 0deg));
}

.smoke-bridge--cyan {
  --smoke-tint: var(--blue);
  --smoke-veil: rgba(4, 168, 255, .2);
  --smoke-hue: 172deg;
}

.smoke-bridge--amber {
  --smoke-tint: #e7c98f;
  --smoke-veil: rgba(231, 201, 143, .18);
  --smoke-hue: 28deg;
}

.smoke-bridge--red {
  --smoke-tint: #ff3f35;
  --smoke-veil: rgba(255, 63, 53, .18);
  --smoke-hue: 318deg;
}

.smoke-bridge--left {
  --smoke-x: 28%;
  --smoke-scale: 1.02;
}

.smoke-bridge--right {
  --smoke-x: 72%;
  --smoke-scale: 1.06;
}

.smoke-bridge--center {
  --smoke-x: 50%;
  --smoke-scale: 1.04;
}

.cinema-section {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: visible;
}

.cinema-section > :not(.smoke-bridge) {
  position: relative;
  z-index: 4;
}

.section-head--compact {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(20px, 4vw, 40px);
}

.section-head--compact p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--muted);
}

.hero-lead--cinema {
  max-width: 58ch;
}

.section-head p.cinema-deemph {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

/* Method + transformations — full-screen story stack */
.method-cinema,
.transformations-section {
  width: 100%;
  max-width: none;
}

.method-cinema {
  padding-top: clamp(48px, 8vw, 88px);
}

.story-stack {
  --stack-sticky-top: clamp(64px, 10vh, 88px);
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-top: clamp(24px, 4vw, 40px);
}

.story-stack__slide {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(440px, 78svh, 820px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}

.story-stack__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-stack__media picture,
.story-stack__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-stack__media--fit picture,
.story-stack__media--fit img {
  object-fit: contain;
  object-position: 50% 50%;
  background: var(--ink);
}

.story-stack__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, .78) 0%, rgba(7, 9, 13, .06) 40%, rgba(7, 9, 13, .62) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, .88) 0%, rgba(7, 9, 13, .16) 52%, transparent 100%);
  pointer-events: none;
}

.story-stack__scrim--soft {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, .9) 0%, rgba(7, 9, 13, .12) 44%, rgba(7, 9, 13, .82) 100%);
}

.story-stack__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(36rem, calc(100% - 36px));
  margin: 18px;
  padding: clamp(16px, 2.5vw, 22px);
  background: rgba(7, 9, 13, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.story-stack__index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-stack__copy h3 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.05;
}

.story-stack__copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.55;
}

.story-stack__note {
  width: min(var(--max), calc(100% - 36px));
  max-width: 52ch;
  margin: clamp(20px, 3vw, 32px) auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .story-stack__slide {
    align-items: stretch;
    min-height: calc(100svh - var(--stack-sticky-top));
  }

  .story-stack__copy {
    position: absolute;
    top: clamp(28px, 5vh, 56px);
    left: max(18px, calc((100vw - var(--max)) / 2 + 18px));
    right: auto;
    bottom: auto;
    margin: 0;
  }
}

@media (max-width: 899px) {
  .story-stack__copy {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    margin: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .story-stack__slide {
    position: sticky;
    top: var(--stack-sticky-top);
    margin-top: -1px;
    box-shadow:
      0 -1px 0 rgba(255, 255, 255, .08),
      0 -24px 56px rgba(0, 0, 0, .38);
  }

  .story-stack__slide:nth-child(1) {
    z-index: 1;
  }

  .story-stack__slide:nth-child(2) {
    z-index: 2;
  }

  .story-stack__slide:nth-child(3) {
    z-index: 3;
  }

  .story-stack__slide:nth-child(4) {
    z-index: 4;
  }

  .story-stack--transforms .story-stack__slide:nth-child(1) {
    z-index: 5;
  }

  .story-stack--transforms .story-stack__slide:nth-child(2) {
    z-index: 6;
  }

  .story-stack--transforms .story-stack__slide:nth-child(3) {
    z-index: 7;
  }

  .story-stack--transforms .story-stack__slide:nth-child(4) {
    z-index: 8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-stack__slide {
    position: relative;
    top: auto;
    box-shadow: none;
  }
}

.transformations-section {
  padding-top: clamp(48px, 8vw, 88px);
}

.filmstrip {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.filmstrip__frame {
  position: relative;
  min-height: clamp(280px, 52vh, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.filmstrip__frame picture,
.filmstrip__frame img {
  display: block;
  width: 100%;
  height: clamp(280px, 52vh, 560px);
  object-fit: cover;
}

.filmstrip__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(to top, rgba(7, 9, 13, .92), rgba(7, 9, 13, .2) 72%, transparent);
}

.filmstrip__caption span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filmstrip__caption h3 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.filmstrip__caption p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.realism-panel--visual {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(18px, 3vw, 28px) auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.realism-panel__media {
  position: relative;
  min-height: clamp(220px, 34vw, 360px);
}

.realism-panel__media img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 360px);
  object-fit: cover;
}

.realism-panel__media--fit img,
img.focus-transform-body {
  height: auto;
  max-height: clamp(260px, 48vw, 440px);
  object-fit: contain;
  object-position: 50% 50%;
  background: var(--ink-2);
}

.realism-panel__overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.realism-panel__overlay article {
  padding: 18px;
  background: rgba(7, 9, 13, .88);
  backdrop-filter: blur(8px);
}

/* Offer cinema */
.offer-cinema {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.offer-cinema__layout {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  align-items: start;
}

.offer-cinema__sticky {
  position: sticky;
  top: clamp(72px, 10vh, 108px);
}

.offer-cinema__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.offer-cinema__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--cinema-ease);
}

.offer-cinema__frame.is-active {
  opacity: 1;
}

.offer-cinema__frame picture,
.offer-cinema__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-cinema__intro {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.offer-cinema__items {
  display: grid;
  gap: clamp(48px, 8vh, 96px);
}

.offer-cinema__item {
  min-height: 38vh;
  padding-top: 8px;
  border-top: 1px solid transparent;
  transition: border-color .4s ease;
}

.offer-cinema__item.is-active {
  border-top-color: rgba(4, 168, 255, .35);
}

.offer-cinema__item h3 a {
  color: inherit;
  text-decoration: none;
}

.offer-cinema__item h3 a:hover,
.offer-cinema__item h3 a:focus-visible {
  color: var(--sand);
}

.offer-cinema__item p {
  max-width: 46ch;
  color: var(--muted);
}

.offer-cinema__item .text-link {
  display: inline-block;
  margin-top: 10px;
}

/* Credentials cinema */
.credentials-cinema {
  position: relative;
  width: 100%;
  max-width: none;
}

.credentials-cinema__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(18px, 3vw, 28px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  align-items: stretch;
}

.credentials-cinema__hero {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.credentials-cinema__hero picture,
.credentials-cinema__hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0));
}

.credentials-cinema__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credentials-cinema__stat {
  display: grid;
  align-content: end;
  min-height: 140px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(4, 168, 255, .12), transparent 50%), var(--panel);
}

.credentials-cinema__stat strong {
  color: var(--blue);
  font-size: clamp(40px, 6vw, 72px);
  line-height: .9;
}

.credentials-cinema__stat span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.credentials-cinema__clip {
  position: relative;
  grid-column: span 2;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.credentials-cinema__clip.is-placeholder::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  content: "Klip treningowy — wkrótce";
  background: linear-gradient(145deg, rgba(4, 168, 255, .08), transparent), rgba(7, 9, 13, .72);
}

.credentials-cinema__clip.has-video.is-placeholder::after {
  content: none;
}

.credentials-cinema__clip .credentials-cinema__clip-poster {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.credentials-cinema__clip.has-video .credentials-cinema__clip-poster {
  display: none;
}

.credentials-cinema__stat strong a {
  color: inherit;
  text-decoration: none;
}

.credentials-cinema__stat strong a:hover,
.credentials-cinema__stat strong a:focus-visible {
  color: var(--text);
}

.realism-panel__overlay strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.realism-panel__overlay span {
  color: var(--muted);
  font-size: 14px;
}

.credentials-cinema__clip .cinema-loop {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cinematic reel */
.proof-cinema {
  width: 100%;
  max-width: none;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.cinematic-reel {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .18) transparent;
}

.cinematic-reel__track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  padding: 4px max(18px, calc((100vw - var(--max)) / 2 + 18px)) 8px;
}

.reel-card {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--panel);
}

.reel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--cinema-ease);
}

.reel-card:hover img {
  transform: scale(1.04);
}

.reel-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(7, 9, 13, .78);
  color: var(--text);
  font-weight: 800;
}

.reel-card--tall {
  width: min(340px, 72vw);
  height: clamp(380px, 58vh, 520px);
}

.reel-card--wide {
  width: min(520px, 84vw);
  height: clamp(280px, 42vh, 360px);
}

.reel-card--square {
  width: min(320px, 68vw);
  height: min(320px, 68vw);
}

/* Reviews — Facebook + Google (ręcznie) */
.reviews-cinema {
  width: 100%;
  max-width: none;
  padding: clamp(72px, 10vw, 120px) 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 42%, var(--ink) 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.reviews-cinema__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.reviews-cinema__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.reviews-cinema__intro .eyebrow {
  margin-bottom: 18px;
}

.reviews-cinema__intro h2 {
  margin-bottom: clamp(22px, 3.5vw, 30px);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.018em;
}

.reviews-cinema__lead {
  max-width: 38ch;
  margin: 0 0 clamp(32px, 5vw, 44px);
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.68;
}

.reviews-cinema__trust {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(36px, 5.5vw, 48px);
}

.reviews-trust-badge {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(17, 23, 32, .62);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
}

.reviews-trust-badge:first-child {
  padding-block: 18px;
  border-color: rgba(4, 168, 255, .16);
  background:
    linear-gradient(135deg, rgba(4, 168, 255, .08) 0%, rgba(17, 23, 32, .72) 52%);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, .18),
    inset 3px 0 0 rgba(4, 168, 255, .55);
}

.reviews-trust-badge__icon {
  width: 22px;
  height: 22px;
  opacity: .92;
}

.reviews-trust-badge__score {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.reviews-trust-badge__label {
  display: block;
  margin-top: 4px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

@media (min-width: 1200px) {
  .reviews-trust-badge__label {
    font-size: 12.5px;
    letter-spacing: .05em;
  }
}

.reviews-cinema__actions {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
}

.reviews-cinema__cta-block {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3.5vw, 28px) clamp(20px, 3vw, 24px);
  border: 1px solid rgba(4, 168, 255, .14);
  background:
    linear-gradient(155deg, rgba(4, 168, 255, .07) 0%, rgba(14, 20, 30, .78) 58%, rgba(10, 15, 24, .82) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.reviews-cinema__cta-primary {
  width: 100%;
  box-shadow:
    0 16px 36px rgba(4, 168, 255, .32),
    0 0 24px rgba(4, 168, 255, .12);
}

.reviews-cinema__cta-hint {
  max-width: none;
  padding-left: 2px;
  font-size: 13px;
  line-height: 1.55;
}

.reviews-cinema__sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reviews-source-link {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.reviews-source-link:hover,
.reviews-source-link:focus-visible {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-1px);
}

.reviews-source-link__icon {
  display: grid;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
}

.reviews-source-link__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reviews-source-link__copy {
  flex: 1;
  min-width: 0;
}

.reviews-source-link__title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.reviews-source-link__desc {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.reviews-source-link__arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .72;
  transition: transform .2s ease, opacity .2s ease;
}

.reviews-source-link:hover .reviews-source-link__arrow,
.reviews-source-link:focus-visible .reviews-source-link__arrow {
  transform: translateX(2px);
  opacity: 1;
}

.reviews-cinema__stories {
  display: grid;
  gap: clamp(16px, 2.8vw, 22px);
}

.reviews-cinema__compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.8vw, 22px);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--sand);
  flex-shrink: 0;
}

.review-stars svg {
  display: block;
  width: 16px;
  height: 16px;
}

.review-stars--sm svg {
  width: 13px;
  height: 13px;
}

.review-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(145deg, rgba(24, 34, 49, .92) 0%, rgba(11, 16, 24, .88) 100%);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .24);
}

.review-card--featured {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.8vw, 36px);
  border-color: rgba(4, 168, 255, .28);
  background:
    linear-gradient(145deg, rgba(36, 52, 74, .98) 0%, rgba(16, 24, 38, .96) 48%, rgba(10, 15, 24, .94) 100%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, .32),
    0 0 0 1px rgba(4, 168, 255, .1) inset,
    0 0 56px rgba(4, 168, 255, .1);
}

.review-card--featured::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(4, 168, 255, .95) 0%, rgba(4, 168, 255, .18) 100%);
  pointer-events: none;
}

.review-card--featured::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(52%, 280px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(4, 168, 255, .16) 0%, rgba(4, 168, 255, 0) 68%);
  pointer-events: none;
}

.review-card--featured .review-card__head,
.review-card--featured .review-card__quote,
.review-card--featured .review-card__meta {
  position: relative;
  z-index: 1;
}

.review-card--compact {
  padding: clamp(22px, 3vw, 28px);
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(145deg, rgba(32, 42, 58, .78) 0%, rgba(18, 24, 34, .82) 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.review-card--compact .review-card__head {
  margin-bottom: 20px;
}

.review-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-card--featured .review-card__head {
  flex-wrap: wrap;
  gap: 14px 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.review-card--featured .review-stars {
  margin-left: auto;
  align-self: center;
}

.review-card__avatar {
  display: grid;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(4, 168, 255, .42);
  background: linear-gradient(145deg, rgba(4, 168, 255, .24), rgba(4, 168, 255, .08));
  box-shadow:
    0 0 0 3px rgba(4, 168, 255, .08),
    0 8px 20px rgba(0, 0, 0, .18);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}

.review-card--featured .review-card__avatar {
  width: 50px;
  height: 50px;
  font-size: 15px;
}

.review-card__avatar--alt {
  border-color: rgba(88, 118, 186, .52);
  background: linear-gradient(145deg, rgba(88, 118, 186, .28), rgba(88, 118, 186, .1));
  box-shadow:
    0 0 0 3px rgba(88, 118, 186, .12),
    0 8px 22px rgba(0, 0, 0, .2);
}

.review-card__avatar--alt-2 {
  border-color: rgba(4, 168, 255, .4);
  background: linear-gradient(145deg, rgba(4, 168, 255, .22), rgba(4, 168, 255, .08));
  box-shadow:
    0 0 0 3px rgba(4, 168, 255, .1),
    0 8px 22px rgba(0, 0, 0, .2);
}

.review-card__identity {
  flex: 1;
  min-width: 0;
}

.review-card__author {
  display: block;
  color: var(--text);
  font-style: normal;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.review-card__context {
  display: block;
  margin-top: 4px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.35;
}

.review-card__quote {
  flex: 1;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(15px, 1.65vw, 18px);
  line-height: 1.58;
}

.review-card--featured .review-card__quote {
  font-size: clamp(16px, 1.85vw, 20px);
  line-height: 1.6;
}

.review-card--compact .review-card__quote {
  margin-bottom: 20px;
  color: rgba(240, 244, 250, .9);
  font-size: 14px;
  line-height: 1.68;
  letter-spacing: .01em;
}

.review-card__quote::before {
  content: "“";
  margin-right: .08em;
  color: var(--blue);
  font-size: 1.15em;
  line-height: 0;
}

.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.review-card--featured .review-card__meta {
  padding-top: 16px;
  border-top-color: rgba(255, 255, 255, .1);
}

.review-card--compact .review-card__meta {
  padding-top: 18px;
}

.review-card__source {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.review-card__platform {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .88;
}

.reviews-cinema__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 56px);
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(12, 17, 25, .72);
  text-align: center;
}

.reviews-cinema__cta-end {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.reviews-cinema__cta-lead {
  flex: 1 1 100%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.5;
}

@media (max-width: 899px) {
  .reviews-cinema__layout {
    grid-template-columns: 1fr;
  }

  .reviews-cinema__sources {
    grid-template-columns: 1fr;
  }

  .reviews-cinema__compact {
    grid-template-columns: 1fr;
  }

  .review-card--featured .review-stars {
    margin-left: 0;
  }
}

@media (min-width: 900px) {
  .reviews-cinema__cta {
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: left;
  }

  .reviews-cinema__cta-lead {
    flex: 1 1 auto;
    margin: 0;
  }

  .reviews-cinema__cta-end {
    justify-items: end;
    text-align: right;
  }
}

/* Contact cinema */
.contact-cinema {
  display: block;
  position: relative;
  width: 100%;
  max-width: none;
  padding-top: clamp(72px, 10vw, 120px);
  overflow: hidden;
}

.contact-cinema > .contact-cinema__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
}

.contact-cinema__backdrop picture {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  display: block;
  width: min(58vw, 880px);
}

.contact-cinema__backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 43%;
  filter: brightness(.78) saturate(1.06) contrast(1.08);
}

.contact-cinema__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 9, 13, .88) 0%, rgba(7, 9, 13, .18) 28%, rgba(7, 9, 13, .58) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, .08) 0%, rgba(7, 9, 13, .16) 34%, rgba(7, 9, 13, .82) 76%, var(--ink) 100%),
    radial-gradient(circle at 30% 58%, transparent 0%, rgba(0, 0, 0, .10) 34%, rgba(0, 0, 0, .42) 100%);
}

.contact-cinema__inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(72px, 10vw, 120px);
  align-items: start;
}

.contact-cinema .contact-copy,
.contact-cinema .contact-form {
  min-width: 0;
}

.contact-cinema .contact-form {
  background: rgba(17, 23, 32, .88);
  backdrop-filter: blur(14px);
}

.cms-managed-section {
  width: 100%;
  max-width: none;
}

.cms-managed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.cms-managed-section--wide .cms-managed-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cms-managed-section--reel .cms-managed-grid {
  display: flex;
  width: auto;
  max-width: none;
  padding: 4px max(18px, calc((100vw - var(--max)) / 2 + 18px)) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.cms-managed-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(17, 23, 32, .72);
}

.cms-managed-section--reel .cms-managed-card {
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: start;
}

.cms-managed-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cms-managed-card__copy {
  display: grid;
  gap: 8px;
  padding: clamp(16px, 2.5vw, 24px);
}

.cms-managed-card__copy h3 {
  margin: 0;
}

.cms-managed-card__copy p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 921px) {
  .contact-cinema__backdrop picture {
    right: 0;
    left: auto;
    width: min(52vw, 920px);
  }

  .contact-cinema__backdrop img {
    object-position: 54% 43%;
    filter: brightness(.86) saturate(1.08) contrast(1.08);
  }

  .contact-cinema__backdrop::after {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, .9) 0%, rgba(7, 9, 13, .18) 28%, rgba(7, 9, 13, .62) 100%),
      linear-gradient(90deg, var(--ink) 0%, rgba(7, 9, 13, .86) 38%, rgba(7, 9, 13, .24) 68%, rgba(7, 9, 13, .14) 100%),
      radial-gradient(circle at 78% 58%, transparent 0%, rgba(0, 0, 0, .08) 34%, rgba(0, 0, 0, .36) 100%);
  }

  .contact-cinema__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 400px);
    gap: clamp(40px, 5vw, 72px);
    align-items: start;
  }

  .contact-cinema .contact-actions--paths {
    max-width: min(720px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

  .contact-cinema .cta-path .btn {
    width: 100%;
    min-width: 0;
  }

  .contact-cinema .cta-hint {
    max-width: 38ch;
  }
}

@media (max-width: 920px) {
  .offer-cinema__layout,
  .credentials-cinema__layout,
  .contact-cinema__inner {
    grid-template-columns: 1fr;
  }

  .contact-cinema {
    padding-top: clamp(56px, 11vw, 96px);
  }

  .contact-cinema__inner {
    width: min(var(--max), calc(100% - 28px));
    gap: clamp(36px, 8vw, 56px);
    padding-bottom: clamp(56px, 11vw, 104px);
  }

  .contact-cinema .contact-form {
    padding: clamp(24px, 5vw, 36px);
  }

  .contact-cinema .contact-actions--paths {
    gap: 20px;
  }

  .cms-managed-grid,
  .cms-managed-section--wide .cms-managed-grid {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - 28px));
  }

  .offer-cinema__sticky {
    position: relative;
    top: auto;
  }

  .offer-cinema__media {
    aspect-ratio: 16 / 11;
  }

  .contact-cinema__backdrop picture {
    width: 100%;
  }

  .contact-cinema__backdrop img {
    object-position: 51% 32%;
    filter: brightness(.84) saturate(1.08) contrast(1.06);
  }

  .contact-cinema__backdrop::after {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, .72) 0%, rgba(7, 9, 13, .24) 24%, rgba(7, 9, 13, .76) 100%),
      linear-gradient(90deg, rgba(7, 9, 13, .08) 0%, rgba(7, 9, 13, .34) 62%, rgba(7, 9, 13, .82) 100%),
      radial-gradient(circle at 44% 42%, transparent 0%, rgba(0, 0, 0, .10) 32%, rgba(0, 0, 0, .48) 100%);
  }

  .offer-cinema__items {
    gap: 18px;
  }

  .offer-cinema__item {
    min-height: 0;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(17, 23, 32, .72);
  }

  .credentials-cinema__stats {
    grid-template-columns: 1fr;
  }

  .credentials-cinema__clip {
    grid-column: span 1;
  }

  .realism-panel__overlay {
    position: relative;
    grid-template-columns: 1fr;
  }

  .cinematic-reel__track {
    flex-direction: column;
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto;
    padding: 0;
  }

  .reel-card--tall,
  .reel-card--wide,
  .reel-card--square {
    width: 100%;
    height: clamp(280px, 62vh, 420px);
  }

  .cinematic-reel {
    overflow: visible;
    scroll-snap-type: none;
  }
}

