.marketing-page {
  --promo-ink: #132238;
  --promo-muted: #5f6f84;
  --promo-blue: #245fa8;
  --promo-blue-dark: #173f74;
  --promo-blue-soft: #eaf3ff;
  --promo-cyan: #39b7c9;
  --promo-mint: #37aa79;
  --promo-violet: #7258c8;
  --promo-amber: #e9a23b;
  --promo-surface: #ffffff;
  --promo-surface-soft: #f6f9fd;
  --promo-border: #dce7f3;
  --promo-shadow: 0 24px 70px rgba(29, 63, 104, 0.13);
  width: min(1220px, 100%);
  margin: 0 auto;
  color: var(--promo-ink);
}

.pilot-invite-content,
.role-landing-content {
  width: 100%;
}

.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page p {
  overflow-wrap: anywhere;
}

.marketing-page h1 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5.8vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.marketing-page h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 780;
}

.marketing-page h3 {
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.promo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.8rem 0.65rem 0.65rem;
  border: 1px solid rgba(220, 231, 243, 0.82);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(29, 63, 104, 0.07);
  backdrop-filter: blur(14px);
}

.promo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--promo-ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.promo-brand img {
  display: block;
  border-radius: 0.75rem;
}

.promo-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.promo-nav-links > a:not(.btn) {
  color: #3f526b;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.promo-nav-links > a:not(.btn):hover,
.promo-nav-links > a:not(.btn):focus-visible {
  color: var(--promo-blue);
}

.promo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(202, 220, 239, 0.75);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 10% 15%, rgba(79, 159, 255, 0.18), transparent 35%),
    radial-gradient(circle at 86% 20%, rgba(67, 216, 177, 0.18), transparent 32%),
    radial-gradient(circle at 78% 92%, rgba(127, 93, 224, 0.16), transparent 36%),
    linear-gradient(150deg, #fbfdff 0%, #f4f9ff 46%, #eef7fb 100%);
  box-shadow: var(--promo-shadow);
}

.promo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(52, 94, 143, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 94, 143, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), transparent 75%);
}

.promo-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(2rem, 5.5vw, 5rem) 1rem clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem);
}

.hero-eyebrow,
.section-kicker,
.role-label {
  color: var(--promo-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 58ch;
  margin: 0 0 1.75rem;
  color: var(--promo-muted);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.6;
}

.promo-secondary-cta {
  color: var(--promo-blue-dark);
  font-weight: 750;
  text-decoration: none;
}

.promo-secondary-cta:hover,
.promo-secondary-cta:focus-visible {
  color: var(--promo-blue);
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-microproof span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(198, 218, 239, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #36516f;
  font-size: 0.84rem;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(34, 72, 113, 0.06);
}

.hero-microproof i {
  color: var(--promo-mint);
}

.product-stage {
  position: relative;
  min-height: 680px;
  isolation: isolate;
}

.product-stage-glow {
  position: absolute;
  inset: 10% 3% 4% 2%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 119, 198, 0.2), rgba(58, 119, 198, 0) 68%);
  filter: blur(28px);
}

.quiz-screen,
.editor-window,
.pult-window,
.stage-chip {
  position: absolute;
  border: 1px solid rgba(190, 211, 232, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 65px rgba(28, 61, 99, 0.2);
  backdrop-filter: blur(16px);
}

.quiz-screen {
  top: 15%;
  right: 5%;
  width: 76%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1.45rem;
  color: #f8fbff;
  transform: rotate(1.2deg);
  background:
    radial-gradient(circle at 80% 12%, rgba(91, 207, 203, 0.38), transparent 30%),
    radial-gradient(circle at 14% 90%, rgba(114, 88, 200, 0.42), transparent 38%),
    linear-gradient(140deg, #102b4d 0%, #173f68 58%, #14223d 100%);
}

.quiz-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 13px 13px;
  pointer-events: none;
}

.quiz-screen-top,
.quiz-screen-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  color: rgba(244, 249, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.quiz-screen-brand {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-screen-timer {
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.quiz-screen-question {
  position: relative;
  z-index: 1;
  width: 82%;
  margin: 0.75rem auto 1rem;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.2;
  font-weight: 800;
}

.quiz-screen-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  width: 86%;
  margin: 0 auto;
}

.quiz-screen-media span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.09);
  font-size: clamp(1rem, 2.2vw, 1.7rem);
}

.quiz-screen-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.quiz-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.quiz-live-dot::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #5be3ad;
  box-shadow: 0 0 0 0.25rem rgba(91, 227, 173, 0.14);
}

.mock-window-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 2rem;
  padding: 0 0.65rem;
  border-bottom: 1px solid var(--promo-border);
  color: #61748b;
  font-size: 0.65rem;
  font-weight: 700;
}

.mock-window-bar i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #b8c6d6;
}

.mock-window-bar span {
  margin-left: 0.2rem;
}

.editor-window {
  top: 7%;
  left: 0;
  width: 41%;
  overflow: hidden;
  border-radius: 1rem;
  transform: rotate(-3deg);
}

.editor-window-body {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr) 1.1rem;
  height: 9.3rem;
  padding: 0.5rem;
  background: #f7f9fc;
}

.editor-slides,
.editor-tools {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.editor-slides span,
.editor-slides b,
.editor-tools span {
  display: grid;
  place-items: center;
  min-height: 1.25rem;
  border: 1px solid #d7e2ed;
  border-radius: 0.3rem;
  background: #fff;
  color: #71849b;
  font-size: 0.48rem;
}

.editor-slides b {
  border-color: #7aa8dd;
  background: #eaf3ff;
  color: var(--promo-blue);
}

.editor-tools span {
  min-height: 0.75rem;
}

.editor-canvas {
  position: relative;
  margin: 0 0.4rem;
  overflow: hidden;
  border-radius: 0.45rem;
  background: linear-gradient(145deg, #142b4c, #1a456a);
}

.editor-object {
  position: absolute;
  right: 10%;
  bottom: 16%;
  padding: 0.25rem 0.45rem;
  border: 1px solid #76d8d1;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.48rem;
  background: rgba(57, 183, 201, 0.28);
}

.editor-path {
  position: absolute;
  top: 24%;
  left: 18%;
  width: 55%;
  height: 48%;
  border-top: 1px dashed #72d6d4;
  border-right: 1px dashed #72d6d4;
  border-radius: 0 100% 0 0;
  transform: rotate(8deg);
}

.pult-window {
  right: 2%;
  bottom: 4.5%;
  width: 39%;
  padding: 0.8rem;
  border-radius: 1rem;
  transform: rotate(2.5deg);
}

.pult-window-title {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 0.65rem;
  color: #274866;
  font-size: 0.7rem;
  font-weight: 800;
}

.pult-window-title i {
  color: var(--promo-blue);
}

.pult-progress {
  height: 0.3rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef5;
}

.pult-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--promo-blue), var(--promo-cyan));
}

.pult-status {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.65rem 0;
}

.pult-status b {
  color: var(--promo-blue-dark);
  font-size: 1.5rem;
}

.pult-status small {
  color: var(--promo-muted);
  font-size: 0.62rem;
}

.pult-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.45rem;
}

.pult-actions span,
.pult-actions strong {
  padding: 0.4rem;
  border: 1px solid #d5e1ee;
  border-radius: 0.45rem;
  text-align: center;
  color: #5f728a;
  font-size: 0.56rem;
}

.pult-actions strong {
  border-color: var(--promo-blue);
  background: var(--promo-blue);
  color: #fff;
}

.stage-chip {
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: #35506f;
  font-size: 0.62rem;
  font-weight: 750;
}

.stage-chip i {
  color: var(--promo-mint);
}

.stage-chip-online {
  top: 54%;
  left: 3%;
  transform: rotate(-2deg);
}

.stage-chip-result {
  right: 29%;
  bottom: 1.5%;
  transform: rotate(-1deg);
}

.stage-chip-result i {
  color: var(--promo-amber);
}

.promo-intro {
  max-width: 900px;
  margin: clamp(5rem, 10vw, 8.5rem) auto clamp(3.5rem, 7vw, 6rem);
  padding-inline: 1rem;
  text-align: center;
}

.promo-intro.compact {
  margin-top: 0;
  margin-bottom: 2.8rem;
}

.promo-intro h2 {
  max-width: 19ch;
  margin-inline: auto;
}

.promo-intro > p:last-child {
  max-width: 72ch;
  margin: 0 auto;
  color: var(--promo-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(5rem, 10vw, 9rem);
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.feature-showcase-reverse .feature-copy {
  order: 2;
}

.feature-showcase-reverse .feature-visual {
  order: 1;
}

.feature-copy {
  position: relative;
}

.feature-number {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: rgba(36, 95, 168, 0.2);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.75;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.feature-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.feature-copy > p:not(.section-kicker) {
  color: var(--promo-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #334b67;
  font-weight: 620;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--promo-mint);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  background: var(--promo-mint);
}

.feature-link,
.role-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--promo-blue);
  font-weight: 780;
  text-decoration: none;
}

.feature-link:hover,
.feature-link:focus-visible,
.role-card-link:hover,
.role-card-link:focus-visible {
  color: var(--promo-blue-dark);
}

.feature-link i,
.role-card-link i {
  transition: transform 180ms ease;
}

.feature-link:hover i,
.feature-link:focus-visible i,
.role-card-link:hover i,
.role-card-link:focus-visible i {
  transform: translateX(0.2rem);
}

.feature-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(207, 223, 239, 0.95);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(56, 184, 199, 0.16), transparent 32%),
    radial-gradient(circle at 8% 86%, rgba(114, 88, 200, 0.12), transparent 36%),
    linear-gradient(145deg, #f9fbfe, #eef5fb);
  box-shadow: 0 30px 80px rgba(35, 72, 113, 0.12);
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(rgba(66, 104, 145, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.8), transparent 72%);
  pointer-events: none;
}

.illustration-window {
  position: absolute;
  inset: 8% 5%;
  overflow: hidden;
  border: 1px solid #ccdae8;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(29, 61, 97, 0.18);
}

.illustration-editor-grid {
  display: grid;
  grid-template-columns: 22% minmax(0, 1fr) 24%;
  min-height: 430px;
  background: #f4f7fb;
}

.illustration-slide-list,
.illustration-properties {
  padding: 1rem 0.75rem;
  background: #fbfcfe;
}

.illustration-slide-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-right: 1px solid #e0e8f1;
}

.illustration-slide-list span {
  padding: 0.55rem 0.6rem;
  border: 1px solid #e0e8f1;
  border-radius: 0.55rem;
  background: #fff;
  color: #718096;
  font-size: 0.66rem;
  font-weight: 650;
}

.illustration-slide-list span.active {
  border-color: #82acd9;
  background: #eaf3ff;
  color: var(--promo-blue);
}

.illustration-canvas {
  position: relative;
  align-self: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0.75rem;
  border-radius: 0.8rem;
  color: #fff;
  background:
    radial-gradient(circle at 77% 25%, rgba(49, 186, 191, 0.3), transparent 30%),
    linear-gradient(145deg, #172c4b, #153f5f 62%, #14253f);
  box-shadow: 0 15px 35px rgba(17, 43, 75, 0.2);
}

.canvas-title,
.canvas-question,
.canvas-picture,
.canvas-answer {
  position: absolute;
  z-index: 2;
}

.canvas-title {
  top: 8%;
  left: 8%;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.canvas-question {
  top: 22%;
  left: 8%;
  max-width: 45%;
  font-size: clamp(0.72rem, 1.5vw, 1rem);
  line-height: 1.2;
  font-weight: 800;
}

.canvas-picture {
  top: 18%;
  right: 8%;
  display: grid;
  place-items: center;
  width: 34%;
  aspect-ratio: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.canvas-answer {
  right: 8%;
  bottom: 14%;
  padding: 0.35rem 0.55rem;
  border: 1px solid #75dbd5;
  border-radius: 0.35rem;
  background: rgba(46, 171, 178, 0.22);
  font-size: 0.55rem;
  font-weight: 750;
}

.motion-path {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.motion-path path {
  fill: none;
  stroke: #83ddd8;
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

.motion-path circle {
  fill: #fff;
  stroke: #48b9bd;
  stroke-width: 3;
}

.illustration-properties {
  border-left: 1px solid #e0e8f1;
}

.illustration-properties b,
.illustration-properties span {
  display: block;
}

.illustration-properties b {
  margin-bottom: 1rem;
  color: #344b65;
  font-size: 0.72rem;
}

.illustration-properties span {
  margin-top: 0.8rem;
  color: #7a8ba0;
  font-size: 0.58rem;
}

.illustration-properties em {
  display: block;
  width: 100%;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #70a1d4 65%, #e5ebf2 65%);
}

.illustration-properties em.short {
  background: linear-gradient(90deg, #70a1d4 40%, #e5ebf2 40%);
}

.illustration-properties button {
  width: 100%;
  margin-top: 1.2rem;
  padding: 0.42rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--promo-blue);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 750;
}

.live-screen-card {
  position: absolute;
  top: 7%;
  left: 5%;
  width: 68%;
  padding: 0.75rem;
  border: 1px solid #cad9e8;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(29, 61, 97, 0.18);
}

.live-screen-scene {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 8%;
  border-radius: 0.8rem;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(67, 198, 201, 0.38), transparent 28%),
    linear-gradient(145deg, #112844, #1b4568);
}

.live-screen-scene small,
.live-screen-scene b {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.live-screen-scene small {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.live-screen-scene b {
  font-size: clamp(0.8rem, 2vw, 1.15rem);
  line-height: 1.2;
}

.live-photo {
  position: absolute;
  top: 16%;
  right: 7%;
  display: grid;
  place-items: center;
  width: 30%;
  aspect-ratio: 1.15;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
}

.live-timer {
  position: absolute;
  right: 7%;
  bottom: 7%;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.live-timeline {
  display: flex;
  gap: 0.4rem;
  padding-top: 0.7rem;
}

.live-timeline span {
  flex: 1;
  height: 0.3rem;
  border-radius: 999px;
  background: #dfe8f1;
}

.live-timeline span.active {
  background: var(--promo-blue);
}

.online-panel {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 59%;
  padding: 0.9rem;
  border: 1px solid #cad9e8;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(29, 61, 97, 0.2);
}

.online-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.online-panel-head b {
  color: #294762;
  font-size: 0.72rem;
}

.online-panel-head span {
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  background: #e7f8ef;
  color: #27714f;
  font-size: 0.48rem;
  font-weight: 800;
}

.online-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.48rem 0;
  border-top: 1px solid #edf1f6;
}

.online-row > i {
  color: var(--promo-mint);
  font-size: 0.72rem;
}

.online-row span b,
.online-row span small {
  display: block;
}

.online-row span b {
  color: #344b65;
  font-size: 0.58rem;
}

.online-row span small {
  color: #7b8ca0;
  font-size: 0.48rem;
}

.online-row em {
  color: #65809d;
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 700;
}

.online-row.warning > i,
.online-row.warning span small,
.online-row.warning em {
  color: #b47418;
}

.live-control-strip {
  position: absolute;
  bottom: 2.5%;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid #cbd9e7;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(29, 61, 97, 0.14);
}

.live-control-strip button {
  border: 1px solid #d2dfeb;
  border-radius: 0.5rem;
  background: #fff;
  color: #52708f;
  font-size: 0.55rem;
  font-weight: 700;
}

.live-control-strip button.primary {
  border-color: var(--promo-blue);
  background: var(--promo-blue);
  color: #fff;
}

.live-control-strip > span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-inline: 0.25rem;
  color: #59728d;
  font-size: 0.62rem;
}

.live-control-strip em {
  display: block;
  width: 3.5rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--promo-blue) 72%, #dce6ef 72%);
}

.next-game-card,
.rating-card,
.achievement-card,
.goal-card {
  position: absolute;
  border: 1px solid #ccdbea;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 50px rgba(29, 61, 97, 0.17);
}

.next-game-card {
  top: 7%;
  left: 5%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  width: 78%;
  padding: 0.9rem;
  border-radius: 1rem;
}

.next-game-date {
  display: grid;
  place-items: center;
  min-width: 3.2rem;
  padding: 0.45rem;
  border-radius: 0.7rem;
  background: var(--promo-blue-soft);
  color: var(--promo-blue-dark);
}

.next-game-date b {
  font-size: 1.4rem;
  line-height: 1;
}

.next-game-date span {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.next-game-card > div:nth-child(2) small,
.next-game-card > div:nth-child(2) b,
.next-game-card > div:nth-child(2) span {
  display: block;
}

.next-game-card > div:nth-child(2) small {
  color: var(--promo-blue);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.next-game-card > div:nth-child(2) b {
  margin: 0.18rem 0;
  color: #324b65;
  font-size: 0.78rem;
}

.next-game-card > div:nth-child(2) span {
  color: #74869a;
  font-size: 0.55rem;
}

.next-game-card > em {
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  background: #e7f8ef;
  color: #27714f;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.rating-card {
  top: 27%;
  right: 4%;
  width: 69%;
  padding: 1rem;
  border-radius: 1.2rem;
}

.rating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #526c87;
  font-size: 0.65rem;
}

.rating-head b {
  color: #294762;
  font-size: 1rem;
}

.rating-head i {
  color: var(--promo-mint);
  font-size: 0.7rem;
}

.rating-card svg {
  width: 100%;
  margin-top: 0.55rem;
  overflow: visible;
}

.rating-area {
  fill: rgba(48, 121, 193, 0.1);
}

.rating-line {
  fill: none;
  stroke: var(--promo-blue);
  stroke-width: 3;
  stroke-linecap: round;
}

.rating-card circle {
  fill: #fff;
  stroke: var(--promo-blue);
  stroke-width: 3;
}

.rating-labels {
  display: flex;
  justify-content: space-between;
  color: #8a99aa;
  font-size: 0.48rem;
}

.achievement-card,
.goal-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 58%;
  padding: 0.75rem;
  border-radius: 0.9rem;
}

.achievement-card {
  bottom: 18%;
  left: 5%;
  transform: rotate(-1.5deg);
}

.goal-card {
  right: 4%;
  bottom: 5%;
  transform: rotate(1deg);
}

.achievement-card > i,
.goal-card > i {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  border-radius: 0.65rem;
  background: #fff3d8;
  color: var(--promo-amber);
}

.goal-card > i {
  background: #ece9ff;
  color: var(--promo-violet);
}

.achievement-card small,
.achievement-card b,
.goal-card small,
.goal-card b {
  display: block;
}

.achievement-card small,
.goal-card small {
  color: #8796a8;
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.achievement-card b,
.goal-card b {
  color: #344b65;
  font-size: 0.61rem;
}

.package-card {
  position: absolute;
  top: 7%;
  left: 7%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  width: 65%;
  padding: 1rem;
  border: 1px solid #cbd9e8;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(29, 61, 97, 0.18);
}

.package-cover {
  display: grid;
  place-items: center;
  width: 3.8rem;
  aspect-ratio: 0.82;
  border-radius: 0.65rem;
  color: #fff;
  background:
    radial-gradient(circle at 75% 22%, rgba(91, 221, 205, 0.45), transparent 30%),
    linear-gradient(145deg, #15365e, #285c87);
  font-size: 1.5rem;
}

.package-card small,
.package-card b,
.package-card span {
  display: block;
}

.package-card small {
  color: var(--promo-blue);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.package-card b {
  margin: 0.25rem 0;
  color: #2f4863;
  font-size: 0.85rem;
}

.package-card span {
  color: #7a8b9d;
  font-size: 0.55rem;
}

.package-card > em {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: max-content;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: #e8f7f0;
  color: #347457;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 750;
}

.rights-flow {
  position: absolute;
  right: 5%;
  bottom: 7%;
  display: grid;
  grid-template-columns: 30% 10% 60%;
  align-items: center;
  width: 85%;
}

.rights-owner,
.rights-options > div {
  border: 1px solid #cbd9e8;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 17px 42px rgba(29, 61, 97, 0.14);
}

.rights-owner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.9rem;
}

.rights-owner > i {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: var(--promo-blue-soft);
  color: var(--promo-blue);
}

.rights-owner b,
.rights-owner small,
.rights-options b,
.rights-options small {
  display: block;
}

.rights-owner b,
.rights-options b {
  color: #344b65;
  font-size: 0.59rem;
}

.rights-owner small,
.rights-options small {
  color: #8392a4;
  font-size: 0.47rem;
}

.rights-lines {
  display: grid;
  gap: 1.55rem;
}

.rights-lines span {
  height: 1px;
  background: #9fb5ca;
}

.rights-options {
  display: grid;
  gap: 0.55rem;
}

.rights-options > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 0.8rem;
}

.rights-options > div > i:first-child {
  color: var(--promo-blue);
}

.rights-options > div > i:last-child {
  color: var(--promo-mint);
}

.rights-options > div.denied > i:first-child,
.rights-options > div.denied > i:last-child,
.rights-options > div.denied small {
  color: #9a6873;
}

.invite-chip {
  position: absolute;
  top: 12%;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid #d9d3f5;
  border-radius: 999px;
  background: #f1efff;
  color: #5c4ba6;
  font-size: 0.55rem;
  font-weight: 780;
  box-shadow: 0 14px 35px rgba(72, 58, 132, 0.12);
}

.roles-section {
  margin: 0 0 clamp(5rem, 9vw, 8rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--promo-border);
  border-radius: 2rem;
  background: linear-gradient(150deg, #f8fbff, #f2f7fc);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.role-pane {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid #dbe7f2;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 38px rgba(35, 72, 113, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.role-pane::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 135, 205, 0.12), transparent 68%);
  pointer-events: none;
}

.role-pane:hover {
  transform: translateY(-0.2rem);
  border-color: #b8d0e8;
  box-shadow: 0 20px 48px rgba(35, 72, 113, 0.12);
}

.role-pane-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #e9f3ff, #dfeeff);
  color: var(--promo-blue);
  font-size: 1.45rem;
}

.role-pane:nth-child(2) .role-pane-icon {
  background: linear-gradient(145deg, #e5f8f3, #d9f1e8);
  color: #278663;
}

.role-pane:nth-child(3) .role-pane-icon {
  background: linear-gradient(145deg, #f0edff, #e5e0fb);
  color: var(--promo-violet);
}

.role-pane:nth-child(4) .role-pane-icon {
  background: linear-gradient(145deg, #fff3df, #fae7c7);
  color: #a66b17;
}

.role-pane h3 {
  max-width: 20ch;
  margin: 0.55rem 0 0.8rem;
  color: #243d58;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 780;
}

.role-pane > p:not(.role-label) {
  margin-bottom: 1.5rem;
  color: var(--promo-muted);
  line-height: 1.6;
}

.role-card-link {
  margin-top: auto;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(66, 210, 193, 0.28), transparent 32%),
    radial-gradient(circle at 10% 95%, rgba(124, 96, 215, 0.28), transparent 36%),
    linear-gradient(145deg, #123459, #1e5b82);
  box-shadow: 0 28px 75px rgba(27, 65, 103, 0.24);
}

.final-cta .section-kicker {
  color: #85ded8;
}

.final-cta h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta p:not(.section-kicker) {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
}

.final-email {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  text-decoration: none;
}

.final-email:hover,
.final-email:focus-visible {
  color: #fff;
}

.promo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0.5rem 0.5rem;
  color: #718398;
  font-size: 0.83rem;
}

.promo-footer .promo-brand {
  font-size: 0.9rem;
}

/* Детальные страницы аудиторий используют те же визуальные принципы, но остаются компактнее главной промо-страницы. */
.role-landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--promo-border);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(64, 183, 198, 0.18), transparent 33%),
    linear-gradient(145deg, #fbfdff, #eff6fc);
  box-shadow: var(--promo-shadow);
}

.role-landing-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.role-landing-hero .hero-lead {
  max-width: 70ch;
}

.role-benefits-grid,
.role-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.role-benefit,
.role-scenario-item,
.role-impact-panel {
  border: 1px solid var(--promo-border);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(35, 72, 113, 0.07);
}

.role-benefit,
.role-scenario-item {
  padding: 1.25rem;
}

.role-benefit i {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 0.7rem;
  background: var(--promo-blue-soft);
  color: var(--promo-blue);
}

.role-benefit p,
.role-scenario-item p,
.role-impact-panel li {
  color: var(--promo-muted);
  line-height: 1.6;
}

.role-scenario-step {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--promo-blue-soft);
  color: var(--promo-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.role-scenario-item h3 {
  font-size: 1.15rem;
  font-weight: 750;
}

.role-impact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.role-impact-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
}

.role-page-section {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.role-page-section > .promo-intro {
  margin: 0 auto 2.5rem;
}

@media (max-width: 1199.98px) {
  .promo-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    min-height: 620px;
  }

  .product-stage {
    min-height: 620px;
  }

  .feature-visual {
    min-height: 470px;
  }
}

@media (max-width: 991.98px) {
  .promo-nav {
    align-items: flex-start;
  }

  .promo-nav-links {
    gap: 0.75rem;
  }

  .promo-nav-links > a:not(.btn) {
    display: none;
  }

  .promo-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .promo-hero-copy {
    padding: 3rem 2rem 1rem;
  }

  .marketing-page h1 {
    max-width: 15ch;
  }

  .product-stage {
    min-height: 570px;
  }

  .feature-showcase,
  .final-cta,
  .role-impact-panel {
    grid-template-columns: 1fr;
  }

  .feature-showcase-reverse .feature-copy,
  .feature-showcase-reverse .feature-visual {
    order: initial;
  }

  .feature-copy {
    max-width: 760px;
  }

  .feature-copy h2 {
    max-width: 17ch;
  }

  .role-benefits-grid,
  .role-scenario-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    max-width: 430px;
  }
}

@media (max-width: 767.98px) {
  .marketing-page {
    padding-inline: 0.35rem;
  }

  .promo-nav {
    border-radius: 0.9rem;
  }

  .promo-brand span {
    display: none;
  }

  .promo-hero,
  .feature-visual,
  .roles-section,
  .final-cta,
  .role-landing-hero {
    border-radius: 1.35rem;
  }

  .promo-hero-copy {
    padding: 2.25rem 1.25rem 1rem;
  }

  .marketing-page h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .product-stage {
    min-height: 500px;
  }

  .quiz-screen {
    top: 17%;
    right: 2%;
    width: 84%;
  }

  .editor-window {
    top: 5%;
    left: 1%;
    width: 47%;
  }

  .pult-window {
    right: 2%;
    bottom: 5%;
    width: 48%;
  }

  .stage-chip-online {
    top: 58%;
    left: 1%;
  }

  .stage-chip-result {
    right: 33%;
  }

  .promo-intro {
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
  }

  .feature-showcase {
    gap: 1.8rem;
    margin-bottom: 5rem;
    padding-inline: 0.15rem;
  }

  .feature-number {
    margin-bottom: 1rem;
  }

  .feature-visual {
    min-height: 420px;
  }

  .illustration-window {
    inset: 5% 3%;
  }

  .illustration-editor-grid {
    grid-template-columns: 20% minmax(0, 1fr);
    min-height: 370px;
  }

  .illustration-properties {
    display: none;
  }

  .live-screen-card {
    width: 88%;
  }

  .online-panel {
    width: 75%;
  }

  .live-control-strip {
    bottom: 1%;
  }

  .next-game-card {
    width: 91%;
  }

  .next-game-card > em {
    display: none;
  }

  .rating-card {
    top: 29%;
    width: 82%;
  }

  .achievement-card,
  .goal-card {
    width: 73%;
  }

  .package-card {
    width: 82%;
  }

  .invite-chip {
    top: 29%;
    right: 3%;
  }

  .rights-flow {
    right: 3%;
    bottom: 4%;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 90%;
  }

  .rights-lines {
    display: none;
  }

  .rights-owner {
    width: 45%;
  }

  .roles-section {
    padding: 1.1rem;
  }

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

  .role-pane {
    min-height: 0;
  }

  .promo-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 479.98px) {
  .promo-nav-links .btn {
    padding-inline: 0.65rem;
    font-size: 0.75rem;
  }

  .hero-microproof span {
    width: 100%;
  }

  .product-stage {
    min-height: 440px;
  }

  .quiz-screen {
    top: 20%;
    width: 94%;
  }

  .editor-window {
    width: 53%;
  }

  .pult-window {
    width: 56%;
  }

  .stage-chip {
    font-size: 0.52rem;
  }

  .stage-chip-result {
    right: auto;
    bottom: 0;
    left: 3%;
  }

  .feature-visual {
    min-height: 380px;
  }

  .live-screen-card {
    width: 94%;
  }

  .online-panel {
    width: 86%;
  }

  .achievement-card,
  .goal-card {
    width: 86%;
  }

  .package-card {
    left: 4%;
    width: 91%;
  }

  .invite-chip {
    display: none;
  }

  .rights-flow {
    width: 94%;
  }

  .rights-owner {
    width: 58%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .role-pane,
  .feature-link i,
  .role-card-link i {
    transition: none;
  }
}
