:root {
  --ink: #1f1f1d;
  --night: #11100f;
  --orange: #e95b45;
  --pink: #cf425e;
  --magenta: #a93472;
  --purple: #782f70;
  --accent: #e95b45;
  --accent-deep: #b83858;
  --ivory: #f7f2ec;
  --white: #ffffff;
  --gray: #686765;
  --line: rgba(31, 31, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 68%, var(--purple) 100%);
  --font-display: "Aptos Display", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-body: Aptos, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(34, 34, 33, 0.035) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    var(--white);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(34, 34, 33, 0.06);
}

.brand-mark img {
  width: clamp(156px, 16vw, 224px);
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
}

.primary-nav a,
.mobile-nav a,
.site-footer a {
  position: relative;
}

.primary-nav a::after,
.mobile-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-current::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after,
.mobile-nav a.is-current::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after,
.site-footer a.is-current::after {
  transform: scaleX(1);
}

.primary-nav a.is-current,
.mobile-nav a.is-current,
.site-footer a.is-current {
  color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 0 22px;
  border: 1px solid rgba(31, 31, 29, 0.14);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(31, 31, 29, 0.14);
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(185, 56, 88, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(17, 16, 15, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.button-dark-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: transparent;
}

.section-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 72px);
}

.hero {
  --hero-scroll: 0;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-media-y: 0px;
  --hero-grid-y: 0px;
  --hero-video-x: 0px;
  --hero-video-y: 0px;
  --hero-video-scale: 1;
  --hero-video-inner-scale: 1.06;
  --hero-video-rotate: -2deg;
  --hero-orbit-rotate: 0deg;
  --hero-light-opacity: 0.42;
  --hero-light-scale: 1;
  --hero-caption-y: 18px;
  --hero-caption-opacity: 0.48;
  --hero-copy-opacity: 0;
  position: relative;
  width: 100%;
  height: 230svh;
  min-height: 1380px;
  margin: 0;
  padding: 0;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(34, 34, 33, 0.035) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    var(--white);
}

.hero.section-shell {
  width: 100%;
  padding: 0;
}

.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-copy {
  position: absolute;
  z-index: 8;
  top: auto;
  bottom: 5.5rem;
  left: 4.5rem;
  max-width: min(39rem, calc(100% - 9rem));
  color: var(--white);
  opacity: var(--hero-copy-opacity);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.72);
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  transition: max-width 280ms ease;
  will-change: opacity, transform;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.problem-copy h2,
.story-copy h2,
.trust-copy h2,
.workflow-copy h2,
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 5rem;
  font-weight: 900;
  text-wrap: balance;
}

.hero.is-phase-two .hero-copy {
  max-width: 560px;
}

.hero.is-phase-three .hero-copy {
  color: var(--white);
}

.hero.is-phase-two h1 {
  font-size: 4.2rem;
}

.hero-title {
  display: grid;
}

.hero-title-state {
  grid-area: 1 / 1;
  transition: opacity 260ms ease, transform 360ms ease;
}

.hero-title-secondary {
  opacity: 0;
  transform: translateY(18px);
}

.hero.is-phase-two .hero-title-primary {
  opacity: 0;
  transform: translateY(-18px);
}

.hero.is-phase-two .hero-title-secondary {
  opacity: 1;
  transform: translateY(0);
}

.hero-lede {
  display: grid;
  max-width: 34rem;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero.is-phase-three .hero-lede {
  color: rgba(255, 255, 255, 0.88);
}

.hero-lede-state {
  grid-area: 1 / 1;
  transition: opacity 260ms ease, transform 360ms ease;
}

.hero-lede-secondary {
  opacity: 0;
  transform: translateY(12px);
}

.hero.is-phase-two .hero-lede-primary {
  opacity: 0;
  transform: translateY(-12px);
}

.hero.is-phase-two .hero-lede-secondary {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  text-shadow: none;
}

.hero-stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--hero-video-x), var(--hero-video-y), 0) scale(var(--hero-video-scale));
  transform-origin: center;
  will-change: transform;
}

.hero-video-stage::before {
  position: absolute;
  z-index: 0;
  inset: -8% -4%;
  content: "";
  background:
    linear-gradient(90deg, rgba(34, 34, 33, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(34, 34, 33, 0.07) 1px, transparent 1px) 0 0 / 58px 58px;
  mask-image: radial-gradient(circle at 52% 50%, #000, transparent 70%);
  opacity: calc(0.08 + var(--hero-scroll) * 0.1);
  transform: translate3d(0, var(--hero-grid-y), 0);
  will-change: opacity, transform;
}

.hero-video-stage::after {
  position: absolute;
  z-index: 1;
  inset: 16% 6% 12% 4%;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(228, 54, 87, 0.25);
  transform: rotate(var(--hero-orbit-rotate));
  opacity: 0;
  pointer-events: none;
}

.hero-video-frame {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: none;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  box-shadow: none;
}

.hero-video-frame::before,
.hero-video-frame::after {
  display: none;
}

.hero-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transform: translate3d(0, var(--hero-media-y), 0) scale(var(--hero-video-inner-scale));
  transform-origin: center;
  filter: none;
  backface-visibility: hidden;
  will-change: transform;
}

@media (min-width: 1081px) {
  .hero {
    height: clamp(4200px, 560svh, 5200px);
    min-height: 4200px;
  }

  .hero-copy {
    bottom: clamp(54px, 7vh, 86px);
    left: clamp(48px, 5vw, 72px);
    max-width: min(33rem, 41vw);
  }

  .hero h1 {
    max-width: 33rem;
    font-size: clamp(3.55rem, 5vw, 4.7rem);
  }

  .hero.is-phase-two .hero-copy {
    max-width: min(30rem, 38vw);
  }

  .hero.is-phase-two h1 {
    font-size: clamp(3.05rem, 4.25vw, 4rem);
  }

  .hero-lede {
    max-width: 29rem;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-video {
    object-position: 62% center;
  }
}

@media (min-width: 1081px) and (max-width: 1440px) {
  .hero-copy {
    bottom: 4.2rem;
    max-width: min(29rem, 35vw);
  }

  .hero h1 {
    max-width: 29rem;
    font-size: clamp(3rem, 4.15vw, 3.62rem);
  }

  .hero.is-phase-two .hero-copy {
    max-width: min(28rem, 34vw);
  }

  .hero.is-phase-two h1 {
    font-size: clamp(2.8rem, 3.65vw, 3.35rem);
  }

  .hero-lede {
    max-width: 25.5rem;
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }
}

.hero-video-status,
.hero-video-caption {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--white);
  background: rgba(17, 16, 15, 0.66);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 0;
  backdrop-filter: blur(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero.is-phase-two .hero-video-status,
.hero.is-phase-three .hero-video-caption {
  opacity: 1;
}

.hero-video-status {
  top: 18px;
  left: 18px;
  padding: 13px 15px;
}

.hero-video-caption {
  right: 4%;
  bottom: 10%;
  max-width: 280px;
  padding: 16px 18px;
  transform: translateY(var(--hero-caption-y));
  opacity: 0;
}

.hero.is-phase-three .hero-video-caption {
  opacity: var(--hero-caption-opacity);
}

.hero-video-status span,
.hero-video-caption span {
  color: #ff8a72;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-video-status strong,
.hero-video-caption strong {
  font-size: 0.96rem;
  line-height: 1.15;
}

.signal-field,
.orbit-system {
  position: absolute;
  z-index: 2;
  inset: 8% 1% 4% 8%;
  pointer-events: none;
}

.signal-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 2px;
  transform-origin: left center;
  opacity: 0.55;
  background: linear-gradient(90deg, rgba(250, 82, 54, 0.8), rgba(187, 43, 120, 0.18), transparent);
  animation: beamPulse 3.8s ease-in-out infinite;
}

.beam-one {
  transform: rotate(-28deg);
}

.beam-two {
  transform: rotate(64deg);
  animation-delay: -1.2s;
}

.beam-three {
  transform: rotate(156deg);
  animation-delay: -2.4s;
}

.signal-dot,
.orbit-pulse {
  position: absolute;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 8px rgba(250, 82, 54, 0.12), 0 0 34px rgba(228, 54, 87, 0.34);
}

.dot-one {
  top: 23%;
  left: 36%;
  animation: signalFloat 4.6s ease-in-out infinite;
}

.dot-two {
  top: 41%;
  right: 14%;
  animation: signalFloat 5.2s ease-in-out -1.4s infinite;
}

.dot-three {
  right: 27%;
  bottom: 18%;
  animation: signalFloat 4.9s ease-in-out -2.1s infinite;
}

.identity-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(36vw, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(calc(1 + var(--hero-depth) * 0.05));
  border: 1px solid rgba(34, 34, 33, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(247, 242, 236, 0.86) 58%),
    var(--ivory);
  box-shadow: 0 42px 90px rgba(34, 34, 33, 0.13), inset 0 0 0 18px rgba(255, 255, 255, 0.26);
}

.identity-core p {
  position: absolute;
  bottom: 46px;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 700;
}

.identity-ripple {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(250, 82, 54, 0.26);
  border-radius: 50%;
  opacity: 0;
  animation: identityRipple 3.2s ease-out infinite;
}

.ripple-two {
  animation-delay: 1.6s;
}

.portrait-ring {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 18px 36px rgba(34, 34, 33, 0.16);
}

.profile-head,
.profile-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
}

.profile-head {
  top: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.profile-body {
  bottom: 22px;
  width: 58px;
  height: 32px;
  border-radius: 999px 999px 30px 30px;
}

.orbit-system {
  animation: orbitSystemSpin 24s linear infinite;
}

.orbit-line {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(228, 54, 87, 0.34);
  border-radius: 50%;
  transform: rotate(calc(var(--hero-depth) * 18deg));
}

.orbit-one {
  inset: 12% 12% 12% 10%;
}

.orbit-two {
  inset: 23% 3% 13% 27%;
  border-color: rgba(148, 40, 138, 0.24);
}

.orbit-three {
  inset: 30% 19% 21% 8%;
  border-color: rgba(250, 82, 54, 0.18);
  transform: rotate(calc(-18deg - var(--hero-depth) * 12deg));
}

.pulse-one {
  top: 17%;
  left: 31%;
  animation: orbitPulse 2.8s ease-in-out infinite;
}

.pulse-two {
  top: 39%;
  right: 8%;
  animation: orbitPulse 3.2s ease-in-out -0.9s infinite;
}

.pulse-three {
  right: 26%;
  bottom: 13%;
  animation: orbitPulse 3s ease-in-out -1.8s infinite;
}

.format-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  padding: 15px 16px;
  border: 1px solid rgba(34, 34, 33, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(34, 34, 33, 0.09);
  transform: translateY(calc(var(--hero-depth) * -8px));
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.format-chip span,
.service-module span,
.story-step span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
}

.format-chip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.format-chip small {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 800;
}

.format-chip::after {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(90deg, rgba(250, 82, 54, 0.28), rgba(148, 40, 138, 0.2));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.format-chip:hover,
.format-chip:focus-within {
  border-color: rgba(250, 82, 54, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(34, 34, 33, 0.13);
}

.format-chip:hover::after,
.format-chip:focus-within::after {
  opacity: 1;
}

.chip-one {
  top: 18%;
  left: 15%;
}

.chip-two {
  top: 32%;
  right: 1%;
}

.chip-three {
  right: 17%;
  bottom: 14%;
}

.chip-four {
  bottom: 22%;
  left: 1%;
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.18;
    scale: 0.78 1;
  }
  50% {
    opacity: 0.78;
    scale: 1.05 1;
  }
}

@keyframes signalFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(12px, -12px, 0) scale(1.12);
    opacity: 1;
  }
}

@keyframes identityRipple {
  0% {
    transform: scale(0.72);
    opacity: 0;
  }
  18% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

@keyframes orbitSystemSpin {
  to {
    rotate: 1turn;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.problem-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(34px, 7vw, 104px);
  min-height: 720px;
  padding: 118px clamp(20px, 5vw, 72px) 132px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(34, 34, 33, 0.045) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    linear-gradient(135deg, #f7f2ec 0%, #ffffff 62%, #f9f5ef 100%);
}

.problem-band::before {
  position: absolute;
  bottom: -0.24em;
  left: 50%;
  z-index: -1;
  width: max-content;
  content: "RHYTHM";
  color: rgba(34, 34, 33, 0.035);
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 14vw, 13.5rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0);
}

.problem-copy h2,
.story-copy h2,
.section-heading h2,
.trust-copy h2,
.workflow-copy h2,
.cta-inner h2 {
  max-width: 840px;
  font-size: clamp(2.35rem, 4.35vw, 4.85rem);
}

.problem-copy p,
.trust-copy p,
.workflow-copy p,
.cta-inner p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--gray);
  font-size: 1.06rem;
}

.rhythm-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}

.rhythm-contrast p {
  position: relative;
  margin: 0;
  min-height: 112px;
  padding: 16px 16px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.rhythm-contrast p::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 42px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: var(--gradient);
}

.rhythm-contrast span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rhythm-contrast strong {
  display: block;
  max-width: 16rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.18;
}

.friction-row {
  position: relative;
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.friction-row::before {
  position: absolute;
  top: 50%;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(250, 82, 54, 0), rgba(250, 82, 54, 0.5), rgba(187, 43, 120, 0));
}

.friction-item,
.service-module,
.trust-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.friction-item {
  --friction-lift: 0px;
  position: relative;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56)),
    var(--white);
  box-shadow: 0 22px 58px rgba(34, 34, 33, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.friction-item:nth-child(2),
.friction-item:nth-child(4) {
  --friction-lift: 34px;
  transform: translateY(var(--friction-lift));
}

.friction-item::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 7px rgba(250, 82, 54, 0.08);
}

.friction-item:hover {
  transform: translateY(calc(var(--friction-lift) - 4px));
  border-color: rgba(250, 82, 54, 0.32);
  box-shadow: 0 28px 70px rgba(34, 34, 33, 0.1);
}

.friction-item:nth-child(2):hover,
.friction-item:nth-child(4):hover {
  transform: translateY(calc(var(--friction-lift) - 8px));
}

.friction-item span {
  display: block;
  margin-bottom: 46px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.friction-item strong {
  display: block;
  max-width: 13rem;
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.02;
}

.friction-item p {
  max-width: 11rem;
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.35;
}

.story-section {
  height: 420vh;
  background: var(--ink);
  color: var(--white);
}

.story-sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: 100svh;
  padding: 112px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
}

.story-visual {
  --story-progress: 0;
  position: relative;
  min-height: clamp(460px, 52vw, 680px);
  overflow: hidden;
}

.story-label {
  position: absolute;
  z-index: 5;
  top: 7%;
  left: 8%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reel-studio {
  position: absolute;
  inset: 0;
}

.reel-phone {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 46%;
  width: min(35vw, 270px);
  aspect-ratio: 9 / 16;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translate(-50%, -50%) rotate(calc(-4deg + var(--story-progress) * 5deg)) scale(calc(0.94 + var(--story-progress) * 0.07));
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #10100f;
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.reel-phone-top,
.reel-phone-actions {
  display: flex;
  align-items: center;
  color: var(--white);
}

.reel-phone-top {
  justify-content: space-between;
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.68rem;
  font-weight: 900;
}

.reel-phone-top span {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.reel-phone-top em {
  color: rgba(255, 255, 255, 0.56);
  font-style: normal;
}

.reel-screen {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
}

.reel-screen::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 50% 100%;
  pointer-events: none;
}

.reel-screen::after,
.ig-reel-frame::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.reel-random-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 260ms ease;
}

.reel-random-video.is-playing {
  opacity: 1;
}

.reel-person {
  position: absolute;
  display: none;
  top: 23%;
  left: 50%;
  width: 112px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(34, 34, 33, 0.92);
}

.reel-person-head,
.reel-person-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
}

.reel-person-head {
  top: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.reel-person-body {
  bottom: 23px;
  width: 64px;
  height: 34px;
  border-radius: 999px 999px 28px 28px;
}

.reel-caption {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 52px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 15, 15, 0.66);
  backdrop-filter: blur(12px);
}

.reel-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reel-caption strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.1;
}

.reel-progress {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 20px;
  left: 14px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.reel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.82);
  transform: scaleX(calc(0.24 + var(--story-progress) * 0.7));
  transform-origin: left;
}

.reel-phone-actions {
  justify-content: center;
  gap: 14px;
  min-height: 42px;
}

.reel-phone-actions span {
  width: 11px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.signal-thread {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 16%;
  width: 70%;
  height: 3px;
  transform: scaleX(var(--story-progress));
  transform-origin: left;
  background: var(--gradient);
}

.reel-cut {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 4px;
  min-width: 164px;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  opacity: calc(0.66 + var(--story-progress) * 0.34);
  backdrop-filter: blur(16px);
}

.reel-cut span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
}

.reel-cut strong {
  font-size: 1rem;
  line-height: 1.1;
}

.reel-cut p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.cut-hook {
  top: 16%;
  left: 13%;
  transform: translateY(calc((1 - var(--story-progress)) * 34px));
}

.cut-proof {
  top: 29%;
  right: 8%;
  transform: translateX(calc((1 - var(--story-progress)) * 42px));
}

.cut-caption {
  right: 16%;
  bottom: 22%;
  transform: translateY(calc((1 - var(--story-progress)) * -30px));
}

.cut-publish {
  bottom: 14%;
  left: 14%;
  transform: translateX(calc((1 - var(--story-progress)) * -36px));
}

.reel-timeline {
  position: absolute;
  z-index: 3;
  right: 11%;
  bottom: 6%;
  left: 11%;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.7fr;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.reel-timeline span {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.reel-timeline i {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: calc(10px + var(--story-progress) * 76%);
  width: 3px;
  border-radius: 999px;
  background: var(--gradient);
}

.story-copy {
  max-width: 640px;
}

.story-copy h2 {
  margin-bottom: 34px;
  color: var(--white);
}

.story-step {
  display: grid;
  gap: 6px;
  padding: 18px 0 20px 22px;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.46);
  transition: color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.story-step.is-active {
  border-color: var(--orange);
  color: var(--white);
  transform: translateX(8px);
}

.story-step h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.story-step p {
  max-width: 520px;
}

.system-section {
  --service-track-x: 0px;
  --service-scroll-distance: 0px;
  background: var(--white);
}

.service-sticky {
  width: 100%;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.service-module {
  grid-column: span 2;
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-module:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 82, 54, 0.38);
  background: var(--ivory);
}

.service-module-wide {
  grid-column: span 4;
}

.service-module h3,
.trust-list h3 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.service-module p,
.trust-list p {
  margin-top: 16px;
  color: var(--gray);
}

.trust-section {
  padding: 112px clamp(20px, 5vw, 72px);
  background: var(--ivory);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 84px);
  max-width: 1440px;
  margin: 0 auto;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-list article {
  min-height: 226px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.74);
}

.trust-list span {
  display: block;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: var(--gradient);
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.workflow-media {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(250, 82, 54, 0.14), transparent 34%),
    radial-gradient(circle at 70% 24%, rgba(148, 40, 138, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(247, 242, 236, 0.96), rgba(255, 255, 255, 0.9));
}

.workflow-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(34, 34, 33, 0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(0deg, rgba(34, 34, 33, 0.05) 1px, transparent 1px) 0 0 / 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.instagram-stage {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.workflow-media > img {
  width: min(320px, 72%);
  max-width: 100%;
  max-height: 82%;
  object-fit: contain;
  object-position: center;
}

.ig-phone {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(42%, 260px);
  aspect-ratio: 9 / 16;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translate(-50%, -50%) rotate(-2deg);
  border: 10px solid var(--ink);
  border-radius: 34px;
  background: #10100f;
  box-shadow:
    0 36px 84px rgba(34, 34, 33, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: phoneFloat 5.5s ease-in-out infinite;
}

.ig-topbar,
.ig-action-row {
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.ig-topbar {
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.ig-topbar span {
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.ig-topbar em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.ig-reel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
}

.ig-reel-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 38%, rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 49% 50%, transparent 50%);
  pointer-events: none;
}

.ig-avatar {
  position: absolute;
  display: none;
  top: 24%;
  left: 50%;
  width: 116px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(34, 34, 33, 0.92);
  box-shadow: 0 18px 34px rgba(34, 34, 33, 0.2);
}

.ig-avatar-head,
.ig-avatar-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
}

.ig-avatar-head {
  top: 25px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.ig-avatar-body {
  bottom: 23px;
  width: 66px;
  height: 35px;
  border-radius: 999px 999px 28px 28px;
}

.ig-caption-strip {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 54px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 15, 15, 0.66);
  backdrop-filter: blur(14px);
}

.ig-caption-strip span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ig-caption-strip strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.ig-wave {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 18px;
  left: 14px;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 24px;
}

.ig-wave span {
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  animation: waveBeat 1.4s ease-in-out infinite;
}

.ig-wave span:nth-child(1) {
  height: 9px;
}

.ig-wave span:nth-child(2) {
  height: 18px;
  animation-delay: -0.35s;
}

.ig-wave span:nth-child(3) {
  height: 13px;
  animation-delay: -0.7s;
}

.ig-wave span:nth-child(4) {
  height: 22px;
  animation-delay: -1.05s;
}

.ig-action-row {
  justify-content: center;
  gap: 14px;
  min-height: 44px;
}

.ig-action-row span {
  width: 12px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.ig-signal-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(228, 54, 87, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.ring-a {
  inset: 13% 12%;
  animation: instagramOrbit 22s linear infinite;
}

.ring-b {
  inset: 22% 4% 10% 22%;
  border-color: rgba(148, 40, 138, 0.22);
  animation: instagramOrbit 28s linear reverse infinite;
}

.ig-production-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 5px;
  min-width: 174px;
  padding: 15px 16px;
  border: 1px solid rgba(34, 34, 33, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(34, 34, 33, 0.1);
  backdrop-filter: blur(16px);
  animation: cardDrift 4.8s ease-in-out infinite;
}

.ig-production-card span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
}

.ig-production-card strong {
  font-size: 1.04rem;
  line-height: 1.1;
}

.ig-production-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.86rem;
  font-weight: 800;
}

.ig-card-reel {
  top: 11%;
  left: 7%;
}

.ig-card-carousel {
  top: 24%;
  right: 5%;
  animation-delay: -1.2s;
}

.ig-card-caption {
  bottom: 17%;
  left: 5%;
  animation-delay: -2.4s;
}

.ig-card-publish {
  right: 8%;
  bottom: 8%;
  animation-delay: -3.6s;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(1deg) translateY(-10px);
  }
}

@keyframes waveBeat {
  0%,
  100% {
    scale: 1 0.72;
    opacity: 0.62;
  }
  50% {
    scale: 1 1;
    opacity: 1;
  }
}

@keyframes instagramOrbit {
  to {
    rotate: 1turn;
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  counter-reset: workflow;
  list-style: none;
}

.workflow-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.workflow-list li::before {
  counter-increment: workflow;
  content: counter(workflow, decimal-leading-zero);
  color: var(--orange);
  font-size: 0.78rem;
}

.cta-section {
  padding: 126px clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    var(--ink);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-copy img {
  width: min(280px, 64vw);
  margin-bottom: 44px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.business-card {
  display: grid;
  gap: 7px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.business-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.business-card strong {
  color: var(--white);
  font-size: 1.05rem;
}

.business-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
}

.brief-form label {
  display: grid;
  gap: 8px;
}

.brief-form span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-help {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.brief-form select {
  color: var(--white);
  background-color: #3d3d3a;
  color-scheme: dark;
}

.brief-form select option {
  color: var(--ink);
  background: var(--white);
}

.brief-form textarea {
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(250, 82, 54, 0.58);
}

.brief-form [aria-invalid="true"] {
  border-color: rgba(250, 82, 54, 0.9);
  box-shadow: 0 0 0 3px rgba(250, 82, 54, 0.34);
}

.form-status {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.brief-result {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(250, 82, 54, 0.4);
  border-radius: 8px;
  background: rgba(250, 82, 54, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.brief-result[hidden] {
  display: none;
}

.brief-result.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.brief-result strong {
  color: var(--white);
  font-size: 1rem;
}

.brief-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brief-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.brief-actions button {
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  justify-self: start;
  width: 160px;
}

.site-footer p {
  justify-self: center;
  text-align: center;
  color: var(--gray);
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  justify-self: end;
  gap: 20px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.has-js [data-animate] {
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}

.has-js [data-animate].is-visible {
  transform: translateY(0);
  opacity: 1;
}

.has-js .friction-item[data-animate].is-visible {
  transform: translateY(var(--friction-lift));
}

.has-js .friction-item[data-animate].is-visible:hover {
  transform: translateY(calc(var(--friction-lift) - 4px));
}

.has-js .hero-copy.is-visible {
  opacity: var(--hero-copy-opacity);
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
}

.problem-band,
.system-section,
.trust-section,
.workflow-section,
.cta-section {
  --parallax-soft-y: 0px;
  --parallax-rise-y: 0px;
  --parallax-deep-y: 0px;
}

@media (min-width: 721px) and (prefers-reduced-motion: no-preference) {
  .has-js .problem-copy.is-visible,
  .has-js .section-heading.is-visible,
  .has-js .trust-copy.is-visible,
  .has-js .workflow-copy.is-visible,
  .cta-copy {
    transform: translate3d(0, var(--parallax-soft-y), 0);
    will-change: transform;
  }

  .friction-row,
  .service-grid,
  .trust-list,
  .has-js .workflow-media.is-visible,
  .brief-form {
    transform: translate3d(0, var(--parallax-rise-y), 0);
    will-change: transform;
  }

  .workflow-media::before {
    transform: translate3d(0, var(--parallax-deep-y), 0);
    will-change: transform;
  }
}

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

@media (max-width: 1080px) {
  :root {
    scroll-padding-top: 122px;
  }

  .primary-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 10px 16px;
    justify-content: space-between;
  }

  .brand-mark {
    order: 1;
  }

  .nav-cta {
    order: 2;
    justify-self: end;
  }

  .mobile-nav {
    order: 3;
    grid-column: 1 / -1;
    display: flex;
    gap: 14px;
    padding-top: 4px;
    overflow-x: auto;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    scrollbar-width: none;
    text-transform: uppercase;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    white-space: nowrap;
  }

  .problem-band,
  .story-sticky,
  .trust-inner,
  .workflow-section {
    grid-template-columns: 1fr;
  }

  .problem-band {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 110px;
  }

  .friction-row::before {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(250, 82, 54, 0), rgba(250, 82, 54, 0.5), rgba(187, 43, 120, 0));
  }

  .hero {
    height: 100svh;
    min-height: 760px;
    overflow: clip;
  }

  .hero.section-shell {
    padding: 0;
  }

  .hero-sticky {
    position: sticky;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  .hero-copy {
    top: auto;
    right: 1.5rem;
    bottom: 3rem;
    left: 1.5rem;
    max-width: 38rem;
    color: var(--white);
    opacity: 1;
    transform: none;
  }

  .has-js .hero-copy.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero h1 {
    max-width: 34rem;
    font-size: 3.65rem;
  }

  .hero-lede {
    max-width: 32rem;
    font-size: 1.04rem;
  }

  .hero-stage {
    inset: 0;
    min-height: 100svh;
    transform: none;
  }

  .hero-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-video-caption {
    display: none;
  }

  .story-section {
    height: auto;
  }

  .story-sticky {
    position: relative;
  }

  .story-visual {
    min-height: 620px;
  }

  .reel-phone {
    left: 50%;
    width: min(34vw, 250px);
  }

  .cut-hook {
    left: 10%;
  }

  .cut-proof {
    right: 7%;
  }

  .cut-caption {
    right: 10%;
  }

  .cut-publish {
    left: 10%;
  }

  .service-module,
  .service-module-wide {
    grid-column: span 3;
  }
}

@media (max-width: 720px) {
  body {
    background: var(--white);
  }

  .site-header {
    min-height: 74px;
    padding: 14px 16px;
  }

  .brand-mark img {
    width: 148px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .mobile-nav {
    justify-content: space-between;
    gap: 0;
    overflow: visible;
    font-size: 0.72rem;
  }

  .mobile-nav a {
    display: inline-flex;
    align-items: center;
  }

  .section-shell,
  .problem-band,
  .trust-section,
  .story-sticky,
  .cta-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero.section-shell {
    padding: 0;
  }

  .hero {
    min-height: 820px;
    padding: 0;
  }

  .hero-sticky {
    padding: 0;
  }

  .hero h1 {
    max-width: 22rem;
    font-size: 2.48rem;
    line-height: 0.98;
  }

  .hero-copy {
    right: 18px;
    bottom: 1.6rem;
    left: 18px;
    max-width: 24rem;
  }

  .hero .eyebrow {
    max-width: 25rem;
    margin-bottom: 13px;
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .hero-lede {
    max-width: 22rem;
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-video-frame {
    border-radius: 0;
    box-shadow: none;
  }

  .hero-video {
    object-position: 57% center;
  }

  .hero-video-status {
    top: 10px;
    left: 10px;
    padding: 9px 10px;
  }

  .hero-video-status strong {
    font-size: 0.76rem;
  }

  .hero-video-caption {
    display: none;
  }

  .hero-video-caption strong {
    color: var(--ink);
  }

  .stage-label {
    display: none;
  }

  .signal-field,
  .orbit-system {
    inset: 8% 3% 3%;
  }

  .signal-dot,
  .orbit-pulse {
    width: 8px;
    box-shadow: 0 0 0 5px rgba(250, 82, 54, 0.1), 0 0 20px rgba(228, 54, 87, 0.26);
  }

  .identity-core {
    width: min(42vw, 168px);
  }

  .identity-core p {
    display: none;
  }

  .portrait-ring {
    width: 70px;
    height: 70px;
  }

  .profile-head {
    top: 15px;
    width: 20px;
    height: 20px;
  }

  .profile-body {
    bottom: 15px;
    width: 38px;
    height: 22px;
  }

  .format-chip {
    min-width: 114px;
    gap: 7px;
    padding: 8px 9px;
    font-size: 0.78rem;
  }

  .format-chip span {
    font-size: 0.7rem;
  }

  .format-chip strong {
    font-size: 0.8rem;
  }

  .format-chip small {
    display: none;
  }

  .chip-one {
    left: 3%;
  }

  .chip-two {
    right: 0;
  }

  .chip-three {
    right: 4%;
  }

  .chip-four {
    left: 0;
  }

  .problem-copy h2,
  .story-copy h2,
  .section-heading h2,
  .trust-copy h2,
  .workflow-copy h2,
  .cta-inner h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .rhythm-contrast {
    grid-template-columns: 1fr;
  }

  .friction-row,
  .trust-list,
  .workflow-list {
    grid-template-columns: 1fr;
  }

  .friction-item,
  .friction-item:nth-child(2),
  .friction-item:nth-child(4),
  .has-js .friction-item[data-animate].is-visible {
    --friction-lift: 0px;
    transform: translateY(0);
  }

  .friction-item {
    min-height: 150px;
    padding-left: 56px;
  }

  .system-section.section-shell {
    min-height: calc(100svh + var(--service-scroll-distance));
    padding: 0;
    overflow: clip;
  }

  .service-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding: 128px 18px 40px;
    overflow: hidden;
    background: var(--white);
  }

  .service-sticky .section-heading {
    margin-bottom: 28px;
  }

  .system-section .section-heading h2 {
    max-width: 21rem;
    font-size: clamp(2.28rem, 10vw, 3rem);
  }

  .service-grid {
    display: grid;
    grid-auto-columns: minmax(260px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 18px;
    overflow: visible;
    overscroll-behavior-x: contain;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    transform: translate3d(var(--service-track-x), 0, 0);
    transition: transform 80ms linear;
    will-change: transform;
    -webkit-overflow-scrolling: touch;
  }

  .service-module,
  .service-module-wide {
    grid-column: auto;
    min-height: 260px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .service-module h3,
  .trust-list h3 {
    font-size: clamp(1.28rem, 8vw, 1.75rem);
  }

  .service-module p {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .story-visual {
    min-height: 520px;
  }

  .story-label {
    top: 4%;
    left: 5%;
  }

  .reel-phone {
    width: min(52vw, 196px);
    border-width: 8px;
    border-radius: 28px;
  }

  .reel-phone-top {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.56rem;
  }

  .reel-person {
    width: 76px;
  }

  .reel-person-head {
    top: 17px;
    width: 22px;
    height: 22px;
  }

  .reel-person-body {
    bottom: 16px;
    width: 44px;
    height: 24px;
  }

  .reel-caption {
    right: 9px;
    bottom: 42px;
    left: 9px;
    padding: 8px;
  }

  .reel-caption strong {
    font-size: 0.66rem;
  }

  .reel-phone-actions {
    min-height: 32px;
  }

  .reel-cut {
    min-width: 118px;
    padding: 10px 11px;
  }

  .reel-cut strong {
    font-size: 0.82rem;
  }

  .reel-cut p {
    display: none;
  }

  .cut-hook {
    top: 13%;
    left: 2%;
  }

  .cut-proof {
    top: 23%;
    right: 2%;
  }

  .cut-caption {
    right: 3%;
    bottom: 19%;
  }

  .cut-publish {
    bottom: 13%;
    left: 2%;
  }

  .reel-timeline {
    right: 4%;
    bottom: 4%;
    left: 4%;
  }

  .workflow-media {
    min-height: 540px;
  }

  .workflow-section {
    padding-top: 72px;
  }

  .ig-phone {
    width: min(48vw, 190px);
    border-width: 8px;
    border-radius: 28px;
  }

  .ig-topbar {
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.62rem;
  }

  .ig-avatar {
    width: 82px;
  }

  .ig-avatar-head {
    top: 18px;
    width: 24px;
    height: 24px;
  }

  .ig-avatar-body {
    bottom: 17px;
    width: 48px;
    height: 26px;
  }

  .ig-caption-strip {
    right: 10px;
    bottom: 42px;
    left: 10px;
    padding: 9px;
  }

  .ig-caption-strip span {
    font-size: 0.56rem;
  }

  .ig-caption-strip strong {
    font-size: 0.72rem;
  }

  .ig-action-row {
    min-height: 34px;
  }

  .ig-production-card {
    min-width: 132px;
    padding: 11px 12px;
  }

  .ig-production-card strong {
    font-size: 0.84rem;
  }

  .ig-production-card p {
    display: none;
  }

  .ig-card-reel {
    top: 8%;
    left: 4%;
  }

  .ig-card-carousel {
    top: 18%;
    right: 3%;
  }

  .ig-card-caption {
    bottom: 18%;
    left: 3%;
  }

  .ig-card-publish {
    right: 4%;
    bottom: 8%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer img,
  .site-footer nav {
    justify-self: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    right: 16px;
    bottom: 1rem;
    left: 16px;
  }

  .hero .eyebrow {
    max-width: 21rem;
    margin-bottom: 11px;
    font-size: 0.64rem;
  }

  .hero h1 {
    max-width: 19.5rem;
    font-size: 2.16rem;
  }

  .hero-lede {
    max-width: 20rem;
    margin-top: 13px;
    font-size: 0.88rem;
  }

  .hero-actions {
    gap: 7px;
    margin-top: 15px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .hero-video {
    object-position: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .story-section {
    height: auto;
  }

  .hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-sticky,
  .story-sticky {
    position: relative;
  }

  .hero-copy,
  .hero-stage {
    transform: none;
  }

  .hero-stage,
  .story-visual {
    --story-progress: 0 !important;
    --hero-scroll: 0 !important;
    --hero-video-x: 0px !important;
    --hero-video-y: 0px !important;
    --hero-video-scale: 1 !important;
    --hero-media-y: 0px !important;
    --hero-grid-y: 0px !important;
    --hero-light-opacity: 0.42 !important;
    --parallax-soft-y: 0px !important;
    --parallax-rise-y: 0px !important;
    --parallax-deep-y: 0px !important;
  }

  .has-js [data-animate] {
    transform: none;
    opacity: 1;
  }
}

.blog-page {
  background: var(--white);
  color: var(--ink);
}

.blog-main,
.article-main {
  padding-top: 108px;
}

.blog-hero {
  min-height: 68svh;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 140px clamp(20px, 6vw, 84px) 84px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(31, 31, 29, 0.94), rgba(31, 31, 29, 0.7)),
    url("assets/coopiz-hero-video-poster.jpg") center / cover no-repeat;
}

.blog-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
}

.blog-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.blog-hero span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 82px clamp(20px, 6vw, 84px) 110px;
}

.blog-card,
.blog-empty {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.blog-card a,
.blog-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  color: inherit;
  text-decoration: none;
}

.blog-card span,
.blog-empty span,
.article-meta span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-card h2,
.blog-empty h2 {
  margin: 0;
  font-size: clamp(1.62rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.blog-card p,
.blog-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-card small {
  color: var(--muted);
}

.blog-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 82, 54, 0.42);
}

.article-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px 110px;
}

.article-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.article-header {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 880px;
  margin: 12px 0 20px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.92;
}

.article-header > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
}

.article-content {
  padding-top: 54px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-content h2,
.article-content h3 {
  margin: 46px 0 14px;
  line-height: 1.08;
}

.article-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-content h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content pre {
  margin: 0 0 24px;
}

.article-content a,
.article-sources a {
  color: var(--orange);
}

.article-content blockquote {
  padding-left: 22px;
  border-left: 3px solid var(--orange);
  color: var(--muted);
}

.article-sources {
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.article-sources ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.article-sources li {
  line-height: 1.5;
}

.article-sources span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.publisher-page {
  min-height: 100svh;
  background: #f7f8fb;
}

.publisher-main {
  padding: 128px clamp(18px, 5vw, 72px) 72px;
}

.publisher-hero {
  max-width: 880px;
  margin-bottom: 34px;
}

.publisher-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.publisher-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.publisher-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.publisher-form,
.publisher-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publisher-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

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

.publisher-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.publisher-form input,
.publisher-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
}

.publisher-form textarea {
  resize: vertical;
}

.publisher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.publisher-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.publisher-actions button:nth-child(2) {
  background: var(--orange);
}

.publisher-actions button:nth-child(3) {
  background: #425466;
}

.publisher-status {
  position: sticky;
  top: 112px;
  padding: 22px;
}

.publisher-status span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.publisher-status pre {
  min-height: 220px;
  max-height: 620px;
  overflow: auto;
  margin: 14px 0 0;
  padding: 16px;
  border-radius: 8px;
  background: #101820;
  color: #eaf2f8;
  font-size: 0.86rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.vlog-page {
  background: #f6f8fb;
  color: var(--ink);
}

.vlog-main,
.vlog-article {
  padding-top: 108px;
}

.vlog-hero {
  min-height: 62svh;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 128px clamp(20px, 6vw, 84px) 72px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(11, 16, 32, 0.94), rgba(27, 43, 58, 0.88)), url("/assets/coopiz-hero-video-poster.jpg") center/cover;
}

.vlog-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: 0.92;
}

.vlog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.vlog-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 54px clamp(18px, 5vw, 72px) 84px;
}

.vlog-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.vlog-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
}

.vlog-card span,
.comparison-card header span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.vlog-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.05;
}

.vlog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.vlog-article {
  padding-left: clamp(18px, 6vw, 92px);
  padding-right: clamp(18px, 6vw, 92px);
  padding-bottom: 86px;
}

.vlog-article > article {
  max-width: 1180px;
  margin: 0 auto;
}

.vlog-article-header {
  padding: 72px 0 34px;
}

.vlog-article-header h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.vlog-article-header p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.58;
}

.vlog-video-shell {
  overflow: hidden;
  border-radius: 8px;
  background: #101820;
  aspect-ratio: 16 / 9;
}

.vlog-video-shell video,
.vlog-video-link,
.vlog-video-placeholder {
  width: 100%;
  height: 100%;
}

.vlog-video-shell video {
  display: block;
}

.vlog-video-link,
.vlog-video-placeholder {
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 30px;
  color: var(--white);
  text-align: center;
}

.vlog-video-link {
  text-decoration: none;
  font-weight: 800;
}

.vlog-video-placeholder span {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.vlog-video-placeholder p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.vlog-body {
  display: grid;
  gap: 42px;
  padding-top: 48px;
}

.vlog-section {
  max-width: 880px;
}

.vlog-section h2,
.comparison-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.vlog-section p,
.vlog-section li,
.comparison-card p,
.comparison-card li {
  color: var(--muted);
  line-height: 1.58;
}

.vlog-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.comparison-card h4 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.comparison-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 920px) {
  .blog-feed {
    grid-template-columns: 1fr 1fr;
  }

  .vlog-feed,
  .vlog-comparison-grid {
    grid-template-columns: 1fr;
  }

  .publisher-shell {
    grid-template-columns: 1fr;
  }

  .publisher-status {
    position: static;
  }
}

@media (max-width: 680px) {
  .blog-main,
  .article-main {
    padding-top: 92px;
  }

  .blog-hero {
    min-height: 64svh;
    padding: 96px 18px 58px;
  }

  .blog-feed {
    grid-template-columns: 1fr;
    padding: 42px 18px 72px;
  }

  .blog-card,
  .blog-empty {
    min-height: 280px;
  }

  .blog-card a,
  .blog-empty {
    padding: 24px;
  }

  .article-shell {
    padding: 46px 18px 78px;
  }

  .article-header {
    padding-bottom: 38px;
  }

  .article-content {
    padding-top: 38px;
    font-size: 1rem;
  }

  .publisher-main {
    padding: 108px 16px 48px;
  }

  .publisher-row {
    grid-template-columns: 1fr;
  }

  .publisher-actions button {
    flex: 1 1 100%;
  }

  .vlog-main,
  .vlog-article {
    padding-top: 92px;
  }

  .vlog-hero {
    min-height: 64svh;
    padding: 96px 18px 58px;
  }

  .vlog-feed {
    padding: 42px 18px 72px;
  }

  .vlog-card {
    min-height: 260px;
  }

  .vlog-card a {
    padding: 24px;
  }

  .vlog-article {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 70px;
  }

  .vlog-article-header {
    padding-top: 48px;
  }
}
