/* ==========================================================================
   C&I Media — done-for-you YouTube
   Palette + display face from c-and-i-media.com's own tokens (Antonio, 355 83% 60%)
   ========================================================================== */

:root {
  --bg: #141414;
  /* 0 0% 8%   */
  --bg-2: #1A1A1A;
  /* 0 0% 10%  */
  --surface: #1F1F1F;
  /* 0 0% 12%  */
  --surface-2: #191919;
  --border: #363230;
  /* 20 5% 20% */
  --border-soft: rgba(242, 242, 242, .09);
  --text: #F2F2F2;
  /* 0 0% 95%  */
  --muted: #B5ADAA;
  --dim: #928A87;
  /* 20 5% 55% */

  --accent: #EE4452;
  /* 355 83% 60% */
  --accent-hi: #F2606C;
  --accent-fg: #FFFFFF;
  --accent-rgb: 238, 68, 82;

  --r-sm: 4px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --sec-y: clamp(80px, 12vw, 176px);

  --f-display: "Antonio", "Oswald", "Arial Narrow", Impact, sans-serif;
  --f-sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 12px 18px;
  border-radius: var(--r-sm);
}

.skip:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 2.5vw, 32px);
}

section {
  position: relative;
}

/* ==========================================================================
   TYPE
   ========================================================================== */
.display {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .99;
  text-wrap: balance;
}

.display--hero {
  font-size: clamp(5rem, 7vw, 6rem);
}

.display--2 {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  margin-bottom: 28px;
}

.em {
  color: var(--accent);
}

/* Outlined emphasis: the one display flourish on the page. */
.outline {
  color: var(--accent);
}

@supports (-webkit-text-stroke: 1px #000) {
  .outline {
    color: transparent;
    -webkit-text-stroke: clamp(1px, .022em, 2.2px) var(--accent);
  }
}

.kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 36px;
}

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(242, 242, 242, .03);
  border-radius: 100px;
  padding: 9px 18px;
  margin-bottom: 28px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: .66rem;
  font-weight: 900;
}

.x {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(242, 242, 242, .07);
  color: var(--dim);
  font-size: .66rem;
  font-weight: 900;
}

.swipe {
  display: none;
  font-size: .78rem;
  color: var(--dim);
  letter-spacing: .04em;
  margin: 0 0 14px;
}

/* phones only, see @media (max-width:640px) */

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn--accent:hover {
  background: var(--accent-hi);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  padding: 11px 20px;
  font-size: .8rem;
}

.btn--lg {
  padding: 17px 34px;
  font-size: .95rem;
}

.btn--block {
  width: 100%;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 20, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.nav.is-stuck {
  border-bottom-color: var(--border-soft);
  background: rgba(20, 20, 20, .92);
}

.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand__logo {
  display: block;
  height: 34px;
  width: auto;
  flex: 0 0 auto;
}

.brand__mark {
  background: var(--accent);
  color: var(--accent-fg);
  padding: 5px 9px;
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  line-height: 1;
}

.brand__word {
  font-size: 1.15rem;
  color: var(--text);
}

.brand--lg .brand__mark {
  font-size: 1.35rem;
  padding: 7px 11px;
}

.brand--lg .brand__word {
  font-size: 1.45rem;
}

.nav__links {
  display: flex;
  gap: 30px;
}

.nav__links a {
  font-size: .87rem;
  color: var(--muted);
  position: relative;
  transition: color .2s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform .3s var(--ease);
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 22px;
  border-top: 1px solid var(--border-soft);
}

.mobile a {
  padding: 12px 0;
  color: var(--muted);
  font-size: .95rem;
}

.mobile a.btn {
  margin-top: 10px;
  color: var(--accent-fg);
  justify-content: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: clamp(56px, 6vw, 74px);
  overflow: hidden;
}

.hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: -10%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 40%, rgba(var(--accent-rgb), .16), rgba(var(--accent-rgb), 0) 58%);
  pointer-events: none;
}

.hero .display--hero {
  margin-bottom: 22px;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--muted);
  margin-bottom: clamp(30px, 4vw, 44px);
}

/* ---------- video frames (Wistia) ---------- */
.vsl {
  width: min(100%, 960px);
}

.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.hero .vsl__frame {
  box-shadow:
    0 0 0 1px rgba(242, 242, 242, .04),
    0 50px 140px -40px rgba(var(--accent-rgb), .45),
    0 30px 60px -30px rgba(0, 0, 0, .8);
}

.vsl__frame wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

/* Placeholder until the Wistia custom element registers (or where it is blocked). */
.vsl__frame wistia-player:not(:defined) {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(var(--accent-rgb), .12), transparent 62%),
    var(--surface);
}

.vsl__frame wistia-player:not(:defined)::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
}

.vsl__frame wistia-player:not(:defined)::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 26px;
  background: var(--accent-fg);
  clip-path: polygon(12% 0%, 12% 100%, 100% 50%);
}

/* ---------- two-step funnel ---------- */
.twostep {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: clamp(28px, 4vw, 40px);
}

.twostep__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
}

.twostep__n {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
}

.btn .twostep__n--inv {
  background: var(--accent-fg);
  border-color: var(--accent-fg);
  color: var(--accent);
}

.twostep__arrow {
  color: var(--dim);
  font-size: 1.2rem;
}

.twostep .guarantee {
  flex-basis: 100%;
  justify-content: center;
}

/* ---------- marquees ---------- */
.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 38s linear infinite;
}

.marquee__track--rev {
  animation-direction: reverse;
  animation-duration: 30s;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding-right: clamp(20px, 3vw, 44px);
  flex: none;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.marquee--logos {
  border-block: 1px solid var(--border-soft);
  padding: 22px 0;
  margin-top: clamp(56px, 8vw, 96px);
}

.mq-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}

.mq-name {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.mq-dot {
  color: var(--accent);
  font-size: .8rem;
}

.mq-creator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mq-avatar {
  width: clamp(38px, 4.2vw, 52px);
  height: clamp(38px, 4.2vw, 52px);
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--card);
  filter: grayscale(1);
  transition: filter .35s ease, border-color .35s ease, transform .35s ease;
}

.mq-creator:hover .mq-avatar {
  filter: none;
  border-color: var(--accent);
  transform: scale(1.06);
}

.marquee--ticker {
  background: var(--accent);
  color: var(--accent-fg);
  padding: 14px 0;
}

.tk {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.tk-dot {
  font-size: .7rem;
  opacity: .7;
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.problem {
  padding-block: var(--sec-y);
  text-align: center;
}

.problem .display--2 {
  margin-bottom: 44px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 56px;
}

.chip {
  font-size: .8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 15px;
  background: var(--surface-2);
  white-space: nowrap;
}

.chip:nth-child(3n) {
  transform: rotate(-1.6deg);
}

.chip:nth-child(4n) {
  transform: rotate(1.4deg);
}

.chip:nth-child(5n) {
  transform: rotate(-.7deg);
}

.bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 960px;
  margin-inline: auto;
}

.bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  border-bottom-left-radius: 6px;
  padding: 14px 20px;
  font-size: .92rem;
  max-width: min(100%, 420px);
  text-align: left;
}

.bubble:nth-child(even) {
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: 6px;
}

/* ==========================================================================
   THE SHIFT
   ========================================================================== */
.shift {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vs-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.2vw, 38px);
  background: var(--surface-2);
}

.vs-card--good {
  border-color: rgba(var(--accent-rgb), .45);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), .08), rgba(var(--accent-rgb), .01));
}

.vs-card__title {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.vs-card--good .vs-card__title {
  color: var(--accent);
}

.vs-card--bad .vs-card__title {
  color: var(--dim);
}

.vs-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--border-soft);
  font-size: .95rem;
  color: var(--muted);
}

.vs-card--good .vs-list li {
  color: var(--text);
}

/* ==========================================================================
   PROCESS — sticky rail mirrors the card at the centre of the viewport
   ========================================================================== */
.process {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.process .display--2 {
  margin-bottom: 56px;
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) 1.6fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

/* Sticks so the big number sits on the reading line (~40vh); the active card is picked level with it. */
.rail {
  position: sticky;
  top: max(96px, calc(40vh - 70px));
}

.rail__count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: .85;
}

.rail__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(5rem, 11vw, 10rem);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.rail__num.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.rail__of {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: var(--dim);
}

.rail__phase {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 18px 0 28px;
}

.rail__phases {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rail__item {
  position: relative;
  padding-left: 22px;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color .3s var(--ease);
}

.rail__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.rail__item.is-active {
  color: var(--text);
}

.rail__item.is-active::before {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.25);
}

.rail__item.is-done::before {
  background: var(--border);
  border-color: var(--border);
}

.rail__bar {
  margin-top: 28px;
  height: 2px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.rail__bar i {
  display: block;
  height: 100%;
  width: 11%;
  background: var(--accent);
  transition: width .35s var(--ease);
}

.pflow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pstep {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  opacity: .55;
  transition: opacity .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}

.pstep.is-active {
  opacity: 1;
  border-color: var(--accent);
  background: var(--surface);
}

.pstep__n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
  transition: color .35s var(--ease);
}

.pstep.is-active .pstep__n {
  color: var(--accent);
}

.pstep h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pstep p {
  font-size: .95rem;
  color: var(--muted);
}

.pstep strong {
  color: var(--accent);
  font-weight: 700;
}

.pstep--you {
  border-style: dashed;
}

.pstep__tag {
  font-family: var(--f-sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), .5);
  border-radius: 100px;
  padding: 4px 10px;
}

.process__foot {
  margin-top: 48px;
  font-size: .95rem;
  color: var(--dim);
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.why__top {
  display: flex;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  margin-left: auto;
  margin-bottom: clamp(56px, 7vw, 88px);
}

.ones__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text);
  margin-bottom: 8px;
}

.ones li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--muted);
}

.ones li:first-child {
  border-top: 1px solid var(--border-soft);
}

.ones__n {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.35em;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}

.ctable {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
  background: var(--surface-2);
}

.ctable th,
.ctable td {
  padding: 18px 20px;
  font-size: .9rem;
  border-bottom: 1px solid var(--border-soft);
}

.ctable thead th {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--bg-2);
}

.ctable tbody th {
  font-weight: 700;
  color: var(--text);
}

.ctable td {
  color: var(--muted);
}

.ctable tbody tr:last-child th,
.ctable tbody tr:last-child td {
  border-bottom: 0;
}

.ctable .is-us {
  background: rgba(var(--accent-rgb), .08);
  color: var(--accent);
  font-weight: 700;
}

.ctable thead .is-us {
  color: var(--accent);
  background: rgba(var(--accent-rgb), .14);
}

/* ==========================================================================
   WORK — laid out like YouTube's own video cards
   ========================================================================== */
.work {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.work .display--2 {
  margin-bottom: 48px;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px) clamp(16px, 2vw, 24px);
}

.yt {
  display: block;
}

.yt__thumb {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 50% 0%, rgba(var(--accent-rgb), .12), transparent 60%), var(--surface);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.yt:hover .yt__thumb {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.yt__play {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform .35s var(--ease);
}

.yt__play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 20px;
  background: var(--accent-fg);
  clip-path: polygon(12% 0%, 12% 100%, 100% 50%);
}

.yt:hover .yt__play {
  transform: scale(1.1);
}

.yt__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.yt__meta span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.yt__meta strong {
  font-size: .95rem;
}

.yt__meta small {
  font-size: .78rem;
  color: var(--dim);
}

.yt__avatar {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--f-display);
  font-size: .85rem;
  color: var(--muted);
}

.yt--you .yt__thumb {
  border-style: dashed;
  background: var(--surface-2);
}

.yt--you .yt__you {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--dim);
}

.yt--you .yt__avatar {
  color: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   WATCH BEFORE YOU BOOK — playlist
   ========================================================================== */
.watch {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.watch .display--2 {
  margin-bottom: 48px;
}

.playlist {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) 2fr;
  gap: clamp(18px, 2.6vw, 28px);
  align-items: start;
}

.playlist__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.playlist__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.playlist__item:hover {
  background: var(--surface);
}

.playlist__item.is-active {
  border-color: var(--accent);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .10), transparent 70%), var(--surface);
}

.playlist__idx {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--dim);
  transition: color .25s var(--ease);
}

.playlist__item.is-active .playlist__idx {
  color: var(--accent);
}

.playlist__q {
  font-weight: 600;
  font-size: .95rem;
}

.playlist__stage {
  min-width: 0;
}

.playlist__pane {
  width: 100%;
}

.watch__cta {
  margin-top: clamp(40px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.faq__left {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.faq__left .display--2 {
  margin-bottom: 0;
}

.faq__hint {
  color: var(--muted);
  font-size: .95rem;
}

.faq__list {
  border-top: 1px solid var(--border-soft);
}

.qa {
  border-bottom: 1px solid var(--border-soft);
}

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .2s var(--ease);
}

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

.qa summary:hover {
  color: var(--accent);
}

.qa summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease);
}

.qa[open] summary {
  color: var(--accent);
}

.qa[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

.qa__a {
  padding: 0 40px 24px 0;
}

.qa__a p {
  color: var(--muted);
  font-size: .97rem;
}

/* ==========================================================================
   REVIEW
   ========================================================================== */
.review {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
}

.review__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.review__card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface-2);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review__label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: -6px;
}

.review__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
}

.bar {
  height: 8px;
  border-radius: 99px;
  background: var(--surface);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 99px;
  background: var(--accent);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding-block: var(--sec-y);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.contact .display--hero {
  font-size: clamp(2.8rem, 8vw, 7rem);
  margin-bottom: 24px;
}

.contact__sub {
  max-width: 58ch;
  margin: 0 auto 46px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.form {
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface-2);
  padding: clamp(24px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field>span {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}

.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: .95rem;
  width: 100%;
  resize: vertical;
  transition: border-color .2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6c6c6a;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field.is-error input,
.field.is-error textarea {
  border-color: var(--accent);
}

.form__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--dim);
}

.form__status {
  font-size: .9rem;
  color: var(--text);
  text-align: center;
  min-height: 1.4em;
}

.form__status.is-error {
  color: var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-soft);
  padding-top: clamp(48px, 7vw, 80px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 56px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__tag {
  color: var(--muted);
  font-size: .95rem;
  max-width: 32ch;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__col h3 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}

.footer__col a {
  font-size: .92rem;
  color: var(--muted);
  transition: color .2s var(--ease);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-soft);
  padding-block: 26px;
  font-size: .82rem;
  color: var(--dim);
}

/* ==========================================================================
   ANIMATION (only with JS, so the page is fully readable without it)
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js .letter {
  opacity: .18;
  transition: opacity .32s linear;
}

.js .letter.is-lit {
  opacity: 1;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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

  .js .letter {
    opacity: 1;
  }

  .marquee__track {
    animation: none;
  }

  .pstep {
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px) {
  .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width:900px) {
  .nav__links {
    display: none;
  }

  .burger {
    display: grid;
  }

  .versus,
  .why__top,
  .review__inner,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .faq__left {
    position: static;
  }

  /* Process: rail becomes a slim sticky strip above the cards */
  .process__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rail {
    top: 62px;
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
  }

  .rail__num {
    font-size: 2.6rem;
  }

  .rail__of {
    font-size: 1rem;
  }

  .rail__phase {
    margin: 0;
    font-size: 1rem;
    flex: 1;
  }

  .rail__phases {
    display: none;
  }

  .rail__bar {
    flex-basis: 100%;
    margin-top: 6px;
  }

  .pstep {
    opacity: .6;
  }

  /* Playlist: player first, questions beneath */
  .playlist {
    grid-template-columns: 1fr;
  }

  .playlist__stage {
    order: -1;
  }
}

@media (max-width:640px) {
  .brand__logo {
    height: 28px;
  }

  .display--hero {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .swipe {
    display: block;
  }

  /* the comparison table scrolls sideways on phones */
  .work__grid {
    grid-template-columns: 1fr;
  }

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

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

  .chips {
    gap: 8px;
  }

  .chip {
    font-size: .74rem;
    padding: 7px 12px;
  }

  .bubble {
    max-width: 100%;
  }

  .pstep {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .twostep__arrow {
    display: none;
  }
}