: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(20px, 2.5vw, 32px);
}

.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);
}

.work {
  padding: clamp(28px, 3.5vw, 46px) 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;
}

.client-logo-strip {
  overflow: hidden;
  margin: 22px 0 22px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  animation: logoscroll 48s linear infinite;
}

.client-logo-strip:hover .client-logo-track {
  animation-play-state: paused;
}

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

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

.client-logo-card {
  flex: 0 0 auto;
  height: 60px;
  display: grid;
  place-items: center;
}

.client-logo-card img {
  height: auto;
  width: auto;
  max-height: 52px;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.62;
  transition: opacity 200ms ease;
}

.client-logo-card:hover img {
  opacity: 0.95;
}

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

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

.work-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(46px, 5vw, 68px);
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.work-edge-left {
  left: 0;
  justify-items: start;
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(8, 9, 12, 0.82), transparent);
}

.work-edge-right {
  right: 0;
  justify-items: end;
  padding-right: 10px;
  background: linear-gradient(270deg, rgba(8, 9, 12, 0.82), transparent);
}

.edge-ic {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(18, 20, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.work-edge:hover .edge-ic {
  background: rgba(36, 110, 197, 0.92);
  transform: scale(1.06);
}

.work-marquee-stack:hover .work-edge,
.work-edge:focus-visible {
  opacity: 1;
}

.work-edge:focus-visible .edge-ic {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

@media (hover: none), (max-width: 640px) {
  .work-edge {
    display: none;
  }
}

.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);
}

/* The program — hero card in the Learn section */
.program-card {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 30px;
  align-items: center;
  border: 1.5px solid rgba(255, 138, 31, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(255, 138, 31, 0.15), rgba(255, 255, 255, 0.03)),
    rgba(16, 24, 38, 0.82);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.program-name {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.02;
}

.program-sub {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.5;
}

.program-incl {
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.program-cta-box {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 30px;
}

.program-price {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 800;
  line-height: 0.9;
}

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

.program-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.program-cta-box .btn {
  width: 100%;
  margin-top: 20px;
}

.frontdoor-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 800;
}

.frontdoor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}

.frontdoor-card {
  display: flex;
  flex-direction: column;
}

.frontdoor-learn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 26px 28px;
}

.frontdoor-list {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.frontdoor-bridge {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .frontdoor-grid {
    grid-template-columns: 1fr;
  }

  .frontdoor-list {
    grid-template-columns: 1fr;
  }
}

.program-guarantee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.guarantee-badge {
  border-radius: 999px;
  background: rgba(63, 208, 122, 0.16);
  border: 1px solid rgba(63, 208, 122, 0.42);
  color: #4fd48a;
  padding: 5px 11px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.foot-social {
  display: flex;
  gap: 12px;
}

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

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

.foot-soc svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.82);
}

@media (max-width: 760px) {
  .program-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .program-cta-box {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 0;
    padding-top: 22px;
  }

  .program-incl {
    grid-template-columns: 1fr;
  }
}

.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);
}

.learn-feature {
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 134, 255, 0.18), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(255, 138, 31, 0.14), transparent 30%),
    linear-gradient(180deg, #08090c, #070b12 100%);
}

.learn-feature .feature-copy {
  max-width: 980px;
}

.learn-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: 100%;
}

.learn-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-shot {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.learn-tiers {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.learn-tiers .tier-card {
  min-height: 360px;
}

.learn-tier-title {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.03;
}

.learn-tiers .tier-desc {
  margin-top: 14px;
}

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

/* Systems — two premium offer cards */
.sys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.sys-card {
  display: flex;
  flex-direction: column;
}

.sys-name {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.05;
}

.sys-price {
  margin: 10px 0 0;
  color: var(--orange);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.sys-desc {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  line-height: 1.5;
}

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

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

.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-form-head {
  margin-bottom: 6px;
}

.lead-form-head h3 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.lead-form-head p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

/* Spam honeypot: kept in the DOM for bots, hidden from people and screen readers. */
.lead-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.asking-about {
  margin: 0 0 14px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(36, 110, 197, 0.14);
  border: 1px solid rgba(36, 110, 197, 0.34);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.asking-about strong {
  color: var(--white);
  font-weight: 900;
}

.lead-reassure {
  margin: 12px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  font-weight: 600;
}

.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 auto;
  gap: 22px 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,
  .svc-grid,
  .closer-inner,
  .foot-inner {
    grid-template-columns: 1fr;
  }

  .learn-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .learn-proof {
    grid-template-columns: repeat(3, 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%);
  }

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

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

/* Learn section single hero video */
.learn-video-proof {
  display: block;
  min-height: min(520px, 68vw);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background: #020a16;
  box-shadow: var(--shadow);
}

.proof-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .learn-video-proof {
    min-height: min(560px, 88vw);
  }
}

/* ============================================================
   Multi-page: select screen + website page + software page
   ============================================================ */

/* --- Netflix-style select screen (index.html) --- */
.select-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(40px, 7vw, 90px) 24px;
  text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(36, 110, 197, 0.22), transparent 60%),
    radial-gradient(900px 500px at 50% 120%, rgba(255, 138, 31, 0.1), transparent 60%),
    var(--ink);
}

.select-head { max-width: 720px; }

.select-brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-bottom: 18px;
}

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

.select-title {
  margin: 6px 0 0;
  font-size: clamp(34px, 5.4vw, 66px);
  font-weight: 800;
  line-height: 1.02;
  color: var(--white);
}

.select-sub {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.select-grid {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.select-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.select-card:hover,
.select-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
}

.select-poster {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  color: #fff;
}
.select-poster svg { width: 46px; height: 46px; fill: currentColor; opacity: 0.95; }
.poster-ads { background: linear-gradient(150deg, #246ec5, #071f47); }
.poster-web { background: linear-gradient(150deg, #ff8a1f, #7a2f00); }
.poster-soft { background: linear-gradient(150deg, #2b3446, #14181f); }

.select-body-text { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.select-body-text h2 { margin: 0; font-size: 22px; font-weight: 800; color: var(--white); }
.select-body-text p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }

.select-go { margin-top: 8px; font-weight: 800; font-size: 14px; color: var(--soft); }
.card-ads .select-go { color: var(--blue-bright); }
.card-web .select-go { color: var(--orange); }

.select-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.select-card.is-soon { opacity: 0.92; }

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

@media (max-width: 820px) {
  .select-grid { grid-template-columns: 1fr; width: min(460px, 100%); }
}

/* --- Website page: plain hero (no video) --- */
.billboard-plain {
  min-height: auto;
  padding: clamp(120px, 16vw, 200px) 0 clamp(40px, 6vw, 76px);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(255, 138, 31, 0.16), transparent 58%),
    radial-gradient(900px 600px at 10% 100%, rgba(36, 110, 197, 0.16), transparent 60%),
    var(--ink);
}

/* --- Website page: crafted sample mock website (a real local-cafe site) --- */
.mockwrap { width: min(880px, 100%); margin: 38px auto 0; }

.mock-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #16110d;
  box-shadow: 0 44px 96px rgba(0, 0, 0, 0.55);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mock-frame:hover { transform: translateY(-4px); }

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 38px;
  padding: 0 14px;
  background: #23201d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-dots { display: flex; gap: 7px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 999px; }
.mock-dots i:nth-child(1) { background: #ff5f57; }
.mock-dots i:nth-child(2) { background: #febc2e; }
.mock-dots i:nth-child(3) { background: #28c840; }
.mock-addr {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c9beb2;
  font-size: 12px;
  font-weight: 600;
}
.mock-addr svg { width: 11px; height: 11px; fill: #8f8478; }

.mock-site { background: #faf5ee; color: #2c2018; }

.ms-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 34px);
  background: #241610;
}
.ms-brand { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 700; color: #f4eadd; }
.ms-links { display: flex; gap: 18px; }
.ms-links span { color: #cbb9a6; font-size: 13px; font-weight: 600; }
.ms-order { padding: 8px 15px; border-radius: 999px; background: #f0872e; color: #241610; font-size: 12.5px; font-weight: 800; }

.ms-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px) clamp(18px, 4vw, 34px);
  background: linear-gradient(180deg, #241610, #33200f);
}
.ms-open { color: #e6a877; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.ms-h {
  font-family: Georgia, "Times New Roman", serif;
  margin: 12px 0 0;
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.05;
  color: #f7eede;
  font-weight: 700;
  text-wrap: balance;
}
.ms-p { margin: 12px 0 0; max-width: 34ch; color: #d3c1af; font-size: 14px; line-height: 1.55; }
.ms-hero-actions { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.ms-btn-primary { padding: 11px 20px; border-radius: 999px; background: #f0872e; color: #241610; font-size: 13.5px; font-weight: 800; }
.ms-btn-text { color: #f7eede; font-size: 13.5px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.ms-hero-art { position: relative; display: grid; place-items: center; min-height: 150px; }
.ms-latte {
  width: min(190px, 62%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 44%, #ecd0a6 0 24%, #6f4525 27% 100%);
  box-shadow: inset 0 4px 14px rgba(0, 0, 0, 0.35), 0 16px 34px rgba(0, 0, 0, 0.4);
}
.ms-chip {
  position: absolute;
  bottom: 4%;
  left: -4%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 12px;
  background: #ffffff;
  color: #2c2018;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.ms-star { color: #f0872e; }

.ms-menu { padding: clamp(22px, 4vw, 32px) clamp(18px, 4vw, 34px) clamp(26px, 5vw, 40px); }
.ms-menu-title { font-family: Georgia, "Times New Roman", serif; font-size: 13px; font-weight: 700; color: #7a6552; letter-spacing: 0.08em; text-transform: uppercase; }
.ms-menu ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ms-menu li { display: flex; align-items: baseline; }
.ms-item-name { font-size: 15px; font-weight: 700; color: #2c2018; }
.ms-leader { flex: 1; margin: 0 10px; border-bottom: 1px dotted #c3b09a; transform: translateY(-3px); }
.ms-item-price { font-size: 15px; font-weight: 800; color: #b0560f; }

.mock-caption { margin: 20px auto 0; max-width: 60ch; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.6; }

@media (max-width: 720px) {
  .ms-hero { grid-template-columns: 1fr; }
  .ms-links { display: none; }
  .ms-chip { left: 4%; }
}
@media (prefers-reduced-motion: reduce) {
  .mock-frame { transition: none; }
  .mock-frame:hover { transform: none; }
}

/* --- Software page: coming soon --- */
.soon-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 14vw, 150px) 24px 60px;
  text-align: center;
  background:
    radial-gradient(1000px 560px at 50% 0%, rgba(36, 110, 197, 0.18), transparent 60%),
    var(--ink);
}
.soon-inner { width: min(760px, 100%); }
.soon-title {
  margin: 8px 0 0;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.03;
  color: var(--white);
}
.soon-sub {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}
.soon-badge-row { margin: 26px 0 0; }
.soon-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.16);
  border: 1px solid rgba(255, 138, 31, 0.42);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.soon-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.soon-list li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--soft);
  font-size: 13.5px;
  font-weight: 700;
}
.soon-actions {
  margin: 32px 0 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}