:root {
  --blue: #246ec5;
  --blue-bright: #2f86ff;
  --blue-deep: #071f47;
  --ink: #08090c;
  --panel: #111722;
  --panel-2: #182233;
  --text: #f5f7fb;
  --muted: #aeb8c8;
  --soft: #dbe9fb;
  --line: rgba(255, 255, 255, 0.16);
  --orange: #ff8a1f;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 12px;
  --max: 1320px;
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

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

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

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

p {
  text-wrap: pretty;
}

section {
  scroll-margin-top: 84px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 15px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.86), rgba(8, 9, 12, 0));
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.nav.solid {
  background: rgba(8, 9, 12, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.brand {
  flex: 0 0 auto;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
}

.brand span {
  color: var(--blue-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

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

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

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

.billboard {
  min-height: clamp(610px, 76dvh, 780px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #020a16;
}

.bb-video,
.bb-scrim,
.bb-fade {
  position: absolute;
  inset: 0;
}

.bb-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bb-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 12, 27, 0.82) 0%, rgba(9, 54, 124, 0.5) 38%, rgba(8, 9, 12, 0.08) 72%, rgba(8, 9, 12, 0.18) 100%),
    radial-gradient(circle at 18% 64%, rgba(47, 128, 237, 0.36), transparent 38%);
}

.bb-fade {
  z-index: -1;
  background:
    linear-gradient(0deg, var(--ink) 0%, rgba(8, 9, 12, 0.78) 9%, rgba(8, 9, 12, 0.02) 36%, transparent 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.28) 0%, transparent 26%);
}

.bb-content {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 86px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 138, 31, 0.85);
}

.bb-title {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.bb-logline {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.42;
}

.bb-actions,
.closer .btn {
  margin-top: 34px;
}

.bb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.btn-play {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-orange {
  background: var(--orange);
  color: #1b0d00;
}

.tri {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
}

.bb-meta {
  position: absolute;
  right: 32px;
  bottom: clamp(86px, 9vw, 112px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mute {
  min-width: 46px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.rating {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(0, 0, 0, 0.22);
}

.episodes {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 0 0 clamp(52px, 6vw, 76px);
}

.episode-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.shelf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 18px;
}

.shelf-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.08;
}

.shelf-head-text .kicker {
  margin-bottom: 10px;
}

.shelf-sub {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.soon-tag {
  align-self: flex-start;
  margin-top: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 9, 12, 0.5);
  color: rgba(255, 255, 255, 0.82);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.rail-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.rail-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 30px;
  font-weight: 450;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.rail-arrow:hover,
.rail-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.16);
}

.rail-arrow:active {
  transform: scale(0.96);
}

.content-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 0 2px 14px;
  scrollbar-width: none;
}

.content-rail::-webkit-scrollbar {
  display: none;
}

.episode-head {
  max-width: 900px;
  padding: 34px 0 30px;
}

.episode-head h2,
.service-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 800;
  line-height: 0.98;
}

.episode-head p:not(.kicker),
.service-head p:not(.kicker) {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  line-height: 1.55;
}

.portrait-flow {
  align-items: stretch;
}

.portrait-card {
  min-height: 540px;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: var(--panel);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: left;
  isolation: isolate;
}

.episode-rail .portrait-card {
  flex: 0 0 clamp(292px, 34vw, 520px);
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  padding: 20px;
  scroll-snap-align: start;
}

.portrait-card::before,
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.portrait-card::before {
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.02), rgba(8, 9, 12, 0.96)),
    var(--portrait-image, linear-gradient(140deg, #123768, #071f47));
  background-size: cover;
  background-position: center;
}

.portrait-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-card::after {
  z-index: -1;
  background: radial-gradient(circle at 24% 12%, rgba(255, 138, 31, 0.24), transparent 24%);
}

.portrait-live {
  cursor: pointer;
}

.portrait-live::before {
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.02), rgba(8, 9, 12, 0.9));
}

.portrait-soon {
  --portrait-image:
    radial-gradient(circle at 30% 16%, rgba(255, 138, 31, 0.42), transparent 20%),
    linear-gradient(155deg, #1e68bc 0%, #071f47 64%, #08090c 100%);
}

.episode-open-card {
  text-decoration: none;
  --portrait-image:
    radial-gradient(circle at 82% 12%, rgba(255, 138, 31, 0.3), transparent 28%),
    linear-gradient(135deg, #0f5bb5 0%, #071f47 58%, #08090c 100%);
}

.portrait-youtube {
  --portrait-image: linear-gradient(155deg, #171c26 0%, #08090c 100%);
}

.portrait-youtube::before {
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.08), rgba(8, 9, 12, 0.88) 72%, rgba(8, 9, 12, 0.98)),
    linear-gradient(90deg, rgba(8, 9, 12, 0.7), rgba(8, 9, 12, 0.1));
}

.youtube-thumb {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.part-label,
.soon-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(8, 9, 12, 0.7);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part-label {
  position: absolute;
  top: 18px;
  left: 18px;
}

.soon-pill {
  margin-top: 20px;
  background: var(--orange);
  color: #1b0d00;
}

.portrait-card strong {
  max-width: 360px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 0.96;
}

.episode-rail .portrait-card strong {
  max-width: 390px;
  font-size: clamp(22px, 2.75vw, 36px);
}

.portrait-card small {
  display: block;
  max-width: 340px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.episode-rail .portrait-card small {
  max-width: 370px;
  font-size: 13px;
  line-height: 1.35;
}

.episode-featured small {
  max-width: 405px;
}

.portrait-play,
.youtube-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.94);
}

.episode-rail .portrait-play {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0;
  transform: none;
}

.portrait-play::before,
.youtube-mark::before {
  content: "";
  margin-left: 4px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ink);
}

.youtube-mark {
  width: 84px;
  height: 58px;
  border-radius: 16px;
  background: #ff2a2a;
}

.youtube-mark::before {
  border-left-color: var(--white);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 60px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #ff2a2a;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.youtube-play::before {
  content: "";
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--white);
}

.open-slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  border: 1px solid rgba(255, 138, 31, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 138, 31, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.04);
  padding: 26px 28px;
}

.open-slot span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.open-slot h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.open-slot p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 9vw, 126px) 0;
  background: #08090c;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.98), rgba(8, 9, 12, 0.78) 48%, rgba(8, 9, 12, 0.38)),
    radial-gradient(circle at 84% 58%, rgba(47, 134, 255, 0.26), transparent 32%);
}

.feature {
  position: relative;
  isolation: isolate;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(120% 95% at 26% 46%, rgba(8, 9, 12, 0.78), rgba(8, 9, 12, 0.5) 40%, rgba(8, 9, 12, 0.16) 72%);
}

.offer-media-wall {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.55;
  pointer-events: none;
}

.offer-tile {
  position: absolute;
  width: clamp(220px, 25vw, 400px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  filter: saturate(0.98) contrast(1.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.tile-a { left: -1vw; top: 3%; transform: rotate(-3deg); }
.tile-b { right: 2vw; top: 0%; transform: rotate(2.5deg); }
.tile-c { left: 4vw; bottom: 3%; transform: rotate(2deg); }
.tile-d { right: 7vw; bottom: -7%; transform: rotate(-2.5deg); }
.tile-e { right: -1vw; top: 37%; transform: rotate(3deg); }
.tile-f { left: 22vw; top: 55%; transform: rotate(-2deg); }
.tile-g { left: 38vw; top: 2%; transform: rotate(2deg); }
.tile-h { right: 24vw; top: 26%; transform: rotate(-3deg); }

.feature-copy,
.offer-panel {
  text-shadow: 0 2px 24px rgba(8, 9, 12, 0.5);
}

.statement {
  padding: clamp(56px, 7vw, 86px) 0 clamp(48px, 6vw, 74px);
  background:
    radial-gradient(circle at 50% 110%, rgba(47, 134, 255, 0.14), transparent 44%),
    #08090c;
  text-align: center;
}

.statement-inner {
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
}

.statement .kicker {
  justify-content: center;
}

.statement h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.statement h2 span {
  color: var(--orange);
}

.statement p {
  max-width: 660px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

/* Content tips — 9:16 gallery */
.tips {
  padding: clamp(56px, 7vw, 92px) 0 clamp(52px, 6vw, 84px);
  background: transparent;
}

.tips-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.tips-head {
  max-width: 640px;
}

.tips-head h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1;
}

.tips-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 650;
  line-height: 1.5;
}

.tips-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.tip9 {
  flex: 0 0 clamp(240px, 30vw, 330px);
  max-width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tip9 .part-label {
  position: absolute;
  top: 18px;
  left: 18px;
}

.tip9 strong {
  display: block;
  color: var(--white);
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.05;
}

.tip9 small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.tip-empty {
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #12131a, #08090c);
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.22);
}

.tip-plus {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 30px;
  font-weight: 400;
}

.tip-follow {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 138, 31, 0.3), transparent 44%),
    linear-gradient(160deg, #1e68bc 0%, #0b1220 60%, #08090c 100%);
}

.social-btns {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.soc {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.soc:hover,
.soc:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.soc svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.learn {
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 134, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255, 138, 31, 0.12), transparent 28%),
    #08090c;
}

.learn-head {
  max-width: 850px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.learn-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(16, 24, 38, 0.76);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.learn-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 180px;
  background: radial-gradient(circle, rgba(47, 134, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.learn-bundle {
  border-color: rgba(255, 138, 31, 0.44);
  background:
    linear-gradient(150deg, rgba(255, 138, 31, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(16, 24, 38, 0.86);
}

.learn-price {
  margin: 26px 0 0;
  color: var(--white);
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 0.9;
}

.learn-card h3 {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.02;
}

.learn-card p:not(.learn-price) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.learn-card .btn {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.work {
  padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 134, 255, 0.18), transparent 34%),
    #08090c;
}

.work-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.work-head {
  max-width: none;
  margin-bottom: 10px;
}

.work-head h2 {
  max-width: 960px;
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.08;
}

.work-head p:not(.kicker) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  line-height: 1.55;
}

.work-head-text .kicker {
  margin-bottom: 10px;
}

.work-cta {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.work-cta a {
  color: var(--orange);
  font-weight: 900;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 8px;
  padding: 0;
}

.proof-band div {
  border-left: 2px solid var(--orange);
  padding: 6px 0 6px 20px;
}

.proof-band dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-band dd {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1;
}

.proof-band dd span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 750;
}

.work-grid {
  margin-top: 14px;
}

.work-marquee-stack {
  display: grid;
  gap: 16px;
  overflow: hidden;
  margin-inline: calc((100vw - min(var(--max), calc(100vw - 48px))) / -2);
  padding: 4px 0 12px;
}

.work-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.work-marquee::-webkit-scrollbar {
  display: none;
}

.work-row-track {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 0 calc((100vw - min(var(--max), calc(100vw - 48px))) / 2);
}

@keyframes driftLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(min(-18vw, -260px));
  }
}

@keyframes driftRight {
  from {
    transform: translateX(min(-18vw, -260px));
  }

  to {
    transform: translateX(0);
  }
}

.work-card {
  flex: 0 0 clamp(250px, 29vw, 420px);
  min-height: 0;
  aspect-ratio: 16 / 9;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease;
}

.work-card.featured {
  flex-basis: clamp(250px, 29vw, 420px);
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
}

.play-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.play-hint::before {
  content: "";
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--white);
}

.work-card:hover .play-hint,
.work-card:focus-visible .play-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work-card.wide {
  grid-row: span 2;
}

.work-card img,
.work-preview {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.work-preview {
  pointer-events: none;
}

.work-card:hover img,
.work-card:hover .work-preview {
  transform: scale(1.05);
}

.result-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  border-radius: 999px;
  background: var(--orange);
  color: #1b0d00;
  padding: 8px 14px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255, 138, 31, 0.35);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.08), rgba(8, 9, 12, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(47, 134, 255, 0.2), transparent 32%);
}

.work-card div {
  padding: 24px;
}

.work-card div > span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .row-left,
  .row-right {
    animation: none;
  }
}

.feature-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  margin: 0 auto;
}

.feature-copy h2,
.closer h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.98;
}

.feature-sub,
.closer p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.5;
}

.feature-copy .btn {
  margin-top: 30px;
}

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

.offer-actions .btn {
  margin-top: 0;
}

.feature-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.pack {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(16, 24, 38, 0.72);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.pack-hero {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

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

.pack-tag {
  width: max-content;
  border-radius: 999px;
  background: rgba(47, 134, 255, 0.18);
  color: var(--soft);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pack-headline {
  margin: 26px 0 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
}

.pack-headline.small {
  font-size: 32px;
}

.pack-headline span {
  color: var(--muted);
  font-size: 15px;
}

.pack ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

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

.offer-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  padding: 14px;
  font-size: 14px;
  font-weight: 850;
}

/* Offer: what's included + delivery */
.offer-panel {
  display: grid;
  gap: 14px;
}

.offer-incl {
  padding: 26px 28px;
}

.incl-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.incl-list li {
  position: relative;
  padding-left: 28px;
  color: var(--white);
  font-size: 15.5px;
  font-weight: 750;
  line-height: 1.3;
}

.incl-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

.offer-delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border-color: rgba(255, 138, 31, 0.32);
}

.delivery-line {
  max-width: 340px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  line-height: 1.5;
}

.delivery-eta {
  flex: 0 0 auto;
  text-align: right;
}

.delivery-eta strong {
  display: block;
  color: var(--orange);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.delivery-eta span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Offer price card */
.offer-price {
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 138, 31, 0.4);
  background:
    linear-gradient(150deg, rgba(255, 138, 31, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(16, 24, 38, 0.78);
}

.price-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: var(--orange);
  color: #1b0d00;
  padding: 7px 13px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 18px;
}

.price-now {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 0.9;
}

.price-now span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-was {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 138, 31, 0.7);
}

.price-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.5;
}

.price-btn {
  width: 100%;
  margin-top: 22px;
}

/* Offer: two tiers */
.offer-tiers {
  display: grid;
  gap: 14px;
}

.tier-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-featured {
  border-color: rgba(255, 138, 31, 0.45);
  background:
    linear-gradient(150deg, rgba(255, 138, 31, 0.15), rgba(255, 255, 255, 0.03)),
    rgba(16, 24, 38, 0.8);
}

.tier-flag {
  position: absolute;
  top: -11px;
  right: 20px;
  border-radius: 999px;
  background: var(--orange);
  color: #1b0d00;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tier-price {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 48px);
  font-weight: 800;
  line-height: 0.95;
}

.tier-desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14.5px;
  line-height: 1.45;
}

.tier-incl {
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 18px;
}

.tier-btn {
  width: 100%;
  margin-top: 22px;
}

.feature-inner.feature-stack {
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(26px, 3.5vw, 42px);
}

.offer-tiers-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
}

.tier-price-row .tier-price {
  margin: 0;
}

.tier-was {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 19px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 138, 31, 0.7);
}

.tier-promo {
  align-self: flex-start;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.16);
  color: var(--orange);
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tier-learn {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.promo-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 750;
}

.promo-badge {
  border-radius: 999px;
  background: var(--orange);
  color: #1b0d00;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Episode 2 invite card */
.episode-open-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
}

.open-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.pack li,
.pack-mini p,
.pack-mini-line {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
}

.pack li {
  position: relative;
  padding-left: 24px;
}

.pack li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--orange);
}

.pack-mini p,
.pack-mini-line {
  margin: 16px 0 0;
}

.pack-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.service-gallery {
  padding: clamp(70px, 9vw, 118px) 0;
  background: #08090c;
}

.service-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.service-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--panel);
  padding: 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.svc-card:hover,
.svc-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 31, 0.55);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

.svc-n {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.svc-card h3 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.06;
}

.svc-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.55;
}

.svc-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.closer {
  padding: clamp(78px, 10vw, 130px) 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(47, 134, 255, 0.24), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 138, 31, 0.16), transparent 28%),
    linear-gradient(180deg, #08090c, #071f47 120%);
  background-size: cover;
  background-position: center;
}

.closer-inner {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  margin: 0 auto;
  text-align: left;
}

.closer p {
  margin-left: 0;
  margin-right: 0;
}

.btn.big {
  min-height: 58px;
  padding-inline: 30px;
}

.chat-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.chat-links span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 9, 12, 0.72);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lead-panel {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 138, 31, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 138, 31, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(8, 9, 12, 0.74);
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lead-panel h3 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 0.98;
}

.lead-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.lead-panel .btn {
  width: 100%;
  margin-top: 28px;
}

.modal-open {
  overflow: hidden;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(2, 3, 6, 0.76);
  backdrop-filter: blur(18px);
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.lead-modal.open {
  opacity: 1;
}

.lead-modal-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: min(90dvh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 138, 31, 0.2), transparent 30%),
    radial-gradient(circle at 8% 8%, rgba(47, 134, 255, 0.22), transparent 34%),
    #0a0d14;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 52px 150px rgba(0, 0, 0, 0.72);
  transform: translateY(18px) scale(0.97);
  transition:
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 220ms ease;
}

.lead-modal.open .lead-modal-panel {
  transform: none;
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.lead-modal-head {
  max-width: 620px;
  padding-right: 52px;
}

.lead-modal-head h2 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 0.98;
}

.lead-modal-head p:not(.kicker) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.modal-form {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

.brief-output {
  margin: 0;
  border: 1px solid rgba(255, 138, 31, 0.34);
  border-radius: 12px;
  background: rgba(255, 138, 31, 0.12);
  color: rgba(255, 255, 255, 0.88);
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.brief-output.is-success {
  border-color: rgba(58, 208, 122, 0.44);
  background: rgba(58, 208, 122, 0.12);
}

.brief-output.is-error {
  border-color: rgba(255, 95, 95, 0.48);
  background: rgba(255, 95, 95, 0.12);
}

.foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #05070a;
  padding: 36px 0 44px;
}

.foot-inner {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.foot p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.foot a:hover,
.foot a:focus-visible {
  color: var(--white);
}

.player[hidden] {
  display: none;
}

.player {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(2, 3, 6, 0.72);
  backdrop-filter: blur(16px);
  padding: 24px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.player.open {
  opacity: 1;
}

.player.idle {
  cursor: none;
}

.player-box {
  position: relative;
  width: min(1100px, 100%);
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 48px 140px rgba(0, 0, 0, 0.65);
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition:
    transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 320ms ease;
}

.player.open .player-box {
  transform: none;
  opacity: 1;
}

.player-vid {
  display: block;
  width: 100%;
  max-height: 80dvh;
  min-height: 300px;
  background: #000;
  transition: opacity 240ms ease;
}

.player-box:fullscreen .player-vid {
  width: 100%;
  height: 100%;
  max-height: none;
}

.player-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  transition: opacity 300ms ease;
}

.player-title {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.player-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease;
}

.player-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.player-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  transition: opacity 300ms ease;
}

.player.idle .player-bar,
.player.idle .player-top {
  opacity: 0;
  pointer-events: none;
}

.pbtn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  transition: background-color 180ms ease;
}

.pbtn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.pbtn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.ptrack {
  position: relative;
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  touch-action: none;
  transition: height 160ms ease;
}

.ptrack:hover {
  height: 8px;
}

.pfill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: var(--orange);
}

.pfill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 138, 31, 0.7);
}

.ptime {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.player-flash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.6);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.player-flash svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.player-flash.go {
  animation: flashfade 620ms ease forwards;
}

@keyframes flashfade {
  0% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.7);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

.player-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(440px, 86%);
  margin: 0;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.tg-ic {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 160ms ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.contact-chip svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.chip-msgr svg {
  fill: #2f86ff;
}

.chip-tel svg {
  fill: #3ad07a;
}

.chip-mail svg {
  fill: var(--orange);
}

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

.bb-logline strong {
  color: var(--orange);
  font-weight: 800;
}

.dot {
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 31, 0.55);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 138, 31, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav-links {
    display: none;
  }

  .billboard {
    min-height: 720px;
  }

  .bb-content,
  .feature-inner,
  .episode-shell,
  .work-inner,
  .service-inner,
  .foot-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .feature-inner,
  .feature-cards,
  .learn-grid,
  .svc-grid,
  .closer-inner,
  .foot-inner {
    grid-template-columns: 1fr;
  }

  .offer-media-wall {
    opacity: 0.22;
  }

  .offer-tile {
    width: 300px;
  }

  .tile-a {
    right: -70px;
    top: 8%;
  }

  .tile-b,
  .tile-d,
  .tile-f,
  .tile-g,
  .tile-h {
    display: none;
  }

  .tile-c {
    right: -90px;
    bottom: 8%;
  }

  .tile-e {
    right: -80px;
    top: 42%;
  }

  .tips-gallery {
    justify-content: center;
  }

  .tip9 {
    flex-basis: min(360px, 100%);
  }

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

  .proof-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-card.wide {
    grid-row: auto;
  }

  .episode-rail .portrait-card {
    flex-basis: min(78vw, 420px);
    width: auto;
    margin: 0;
  }

  .work-card,
  .work-card.featured {
    flex-basis: min(70vw, 360px);
  }

  .next-episode {
    grid-template-columns: 1fr;
  }

  .foot nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .billboard {
    min-height: 760px;
  }

  .bb-video {
    object-position: 66% center;
  }

  .bb-scrim {
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.98), rgba(7, 31, 71, 0.78), rgba(8, 9, 12, 0.26)),
      linear-gradient(0deg, rgba(8, 9, 12, 0.88), transparent 42%);
  }

  .bb-content {
    padding: 118px 0 82px;
  }

  .bb-title {
    font-size: clamp(40px, 11vw, 56px);
  }

  .bb-logline {
    font-size: 17px;
  }

  .btn,
  .bb-actions {
    width: 100%;
  }

  .offer-actions .btn {
    width: 100%;
  }

  .bb-meta {
    right: 16px;
    bottom: 92px;
  }

  .rating {
    display: none;
  }

  .rows {
    margin-top: -28px;
  }

  .shelf-head {
    padding-top: 18px;
  }

  .shelf-head h2 {
    font-size: 24px;
  }

  .rail-arrow {
    width: 38px;
    height: 38px;
    font-size: 27px;
  }

  .feature-cards {
    gap: 12px;
  }

  .pack-rest,
  .offer-points {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.featured {
    flex-basis: 76vw;
  }

  .work-marquee-stack {
    margin-inline: -16px;
  }

  .work-row-track {
    padding-inline: 16px;
  }

  .pack {
    padding: 22px;
  }

  .svc-card {
    min-height: 0;
    padding: 22px;
  }

  .logo-track {
    gap: 48px;
  }

  .logo-track img {
    height: 34px;
  }

  .open-slot .btn {
    width: 100%;
  }

  .contact-chip {
    width: 100%;
    justify-content: center;
  }

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

  .learn-card {
    min-height: 0;
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal-panel {
    border-radius: 18px;
    padding: 20px;
  }

  .lead-modal-head {
    padding-right: 48px;
  }

  .ptime {
    display: none;
  }

  .lead-form {
    padding: 18px;
  }
}

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