* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background-color: var(--semantic-color-bg-page);
}

html {
  background-color: var(--semantic-color-bg-page);
  overscroll-behavior: none;
  color-scheme: dark;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 1);
  color: var(--semantic-color-text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-055);
  overscroll-behavior: none;
}

body.nav-menu-open {
  overflow: hidden;
}

body.buy-license-open {
  overflow: hidden;
}

:root {
  --card-surface-bg: rgba(255, 255, 255, 0.01);
  --card-surface-border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
  --card-surface-hover-border: color-mix(in srgb, var(--semantic-color-text-primary) 15%, transparent);
  --card-surface-radius: 12px;
  --card-surface-hover-fill: rgba(255, 255, 255, 0.04);
  --card-surface-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.25);

  /* Discrete font sizing (no clamp) */
  --buy-license-price-size: 2.75rem;
  --buy-license-title-size: 2.5rem;
  --section-subtitle-size: 1.125rem;
  --casting-connected-label-size: 26px;
  --casting-downloads-title-size: 26px;
  --casting-player-title-size: 34px;
  --casting-ready-video-title-size: 18px;
  --casting-ready-time-chip-size: 10px;
  --numbers-value-size: 3rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 24px;
  transition: background-color 0.25s ease;
}

.nav--scrolled {
  background-color: color-mix(in srgb, var(--semantic-color-bg-page) 50%, transparent);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 1);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav__inner {
  max-width: 1144px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  box-sizing: border-box;
}

.nav__brand {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 46px;
  gap: 5.455px;
  color: var(--semantic-color-text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.nav__brand-name {
  font-family: inherit;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: var(--semantic-color-text-primary);
  white-space: nowrap;
  transform: translateY(-0.5px);
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  height: 40px;
}

.nav__snackbar {
  display: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 8px 16px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 69%, transparent);
  text-decoration: none;
  font-family: inherit;
  font-size: var(--text-050);
  line-height: var(--leading-relaxed);
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 120ms ease-in, background-color 120ms ease-in, border-color 120ms ease-in;
}

button.nav__link {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav__link-arrow {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  flex-shrink: 0;
  opacity: 0.72;
  transition: opacity 120ms ease-in;
}

.nav__link:hover {
  color: var(--semantic-color-text-primary);
  background: transparent;
}

.nav__link:hover .nav__link-arrow {
  opacity: 1;
}

.nav__link--active,
.nav__link--active:hover {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 13%, transparent);
}

.nav__link--outline {
  border: 1px solid var(--semantic-color-interactive-primary-default);
  margin-left: 16px;
  height: 46px;
  padding: 0 20px;
  background: var(--semantic-color-interactive-primary-default);
  color: var(--semantic-color-text-on-brand);
}

.nav__link--outline:hover {
  border-color: var(--semantic-color-interactive-primary-hover);
  background: var(--semantic-color-interactive-primary-hover);
  color: var(--semantic-color-text-on-brand);
}

.buy-license-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-backdrop-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes modal-dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)     scale(1);   }
}
@keyframes modal-dialog-out {
  from { opacity: 1; transform: translateY(0)     scale(1);   }
  to   { opacity: 0; transform: translateY(10px)  scale(0.97); }
}

.buy-license-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.74);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

/* open */
.buy-license-modal:not([hidden]) .buy-license-modal__backdrop {
  animation: modal-backdrop-in 260ms ease both;
}
.buy-license-modal:not([hidden]) .buy-license-modal__dialog {
  animation: modal-dialog-in 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* close — same specificity, placed after, wins */
.buy-license-modal.is-closing .buy-license-modal__backdrop {
  animation: modal-backdrop-out 180ms ease both;
}
.buy-license-modal.is-closing .buy-license-modal__dialog {
  animation: modal-dialog-out 180ms ease both;
}

.buy-license-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 48px));
  height: fit-content;
  max-height: calc(100vh - 48px);
  margin-top: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.98), rgba(11, 12, 16, 0.98));
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.48),
    0 20px 40px rgba(0, 0, 0, 0.36);
  padding: 24px 0;
}

.buy-license-modal__close {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 3;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: calc(var(--text-080) * 1.2);
  line-height: 1;
  cursor: pointer;
  transition: background-color 120ms ease-in, color 120ms ease-in;
}

.buy-license-modal__close:hover {
  color: var(--semantic-color-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.buy-license-modal__content {
  height: fit-content;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.buy-license-modal__summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 64px;
}

.buy-license-modal__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 24px;
  width: 100%;
}

.buy-license-modal__price {
  color: var(--semantic-color-text-primary);
  font-size: var(--buy-license-price-size);
  font-weight: var(--weight-semibold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.buy-license-modal__price-meta {
  color: color-mix(in srgb, var(--semantic-color-text-primary) 58%, transparent);
  font-size: var(--text-040);
  font-weight: var(--weight-regular);
  line-height: 1.2;
}

.buy-license-modal__divider {
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
}

.buy-license-modal__logo {
  display: block;
  width: 67px;
  height: 67px;
  object-fit: contain;
  margin-bottom: 16px;
}

.buy-license-modal__title {
  margin: 0;
  padding-top: 0;
  width: 100%;
  font-size: var(--buy-license-title-size);
}

.buy-license-modal__subtitle {
  margin: 0;
  padding-top: 16px;
  width: 100%;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 60%, transparent);
  font-size: var(--text-050);
  font-weight: 300;
  line-height: 1.45;
  max-width: 44rem;
}

.buy-license-modal__body {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-055);
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.buy-license-modal__body p {
  margin: 0;
  font-size: var(--text-050);
  font-weight: 300;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 56%, transparent);
  line-height: 1.45;
}

.buy-license-modal__body p:first-of-type {
  font-size: var(--text-050);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 68%, transparent);
  font-weight: 300;
}

.buy-license-modal__body p + p {
  margin-top: 0;
  font-size: var(--text-050);
}

.buy-license-modal__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-050);
  font-weight: 300;
  line-height: 1.4;
}

.buy-license-modal__list li {
  position: relative;
  padding-left: 28px;
  color: rgba(249, 249, 249, 1);
}

.buy-license-modal__list li::before {
  content: '✓';
  position: absolute;
  top: 0.05em;
  left: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.buy-license-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.buy-license-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  min-height: 0;
  margin-top: 40px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--semantic-color-bg-brand);
  color: var(--semantic-color-text-primary);
  font-size: var(--text-050);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 120ms ease-in;
}

.buy-license-modal__cta:hover {
  background: var(--semantic-color-interactive-primary-hover);
}

.buy-license-modal__footnote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
  text-align: left;
}

.nav__toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: rgba(39, 39, 39, 0.3);
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 14px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.nav__toggle-line {
  width: 100%;
  height: 2px;
  border-radius: 12px;
  background: var(--semantic-color-text-primary);
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease, width 160ms ease;
}

.nav__toggle-label {
  display: none;
}

.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(96px);
  pointer-events: none;
  will-change: auto;
  backface-visibility: hidden;
  opacity: 1;
  z-index: 1;
  mix-blend-mode: normal;
}

.blob--left {
  width: min(43.2vw, 648px);
  aspect-ratio: 754.6262488419561 / 818.2838436019993;
  left: calc(31% + 200px);
  top: calc(58%);
  transform: translate(-50%, -50%) rotate(34deg);
  animation: blob-left-drift 19.8s ease-in-out infinite;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(132, 214, 255, 0.70) 0%,
    rgba(88, 170, 226, 0.51) 29%,
    rgba(43, 92, 145, 0.4) 52%,
    rgba(17, 40, 68, 0.2) 69%,
    rgba(0, 0, 0, 0) 86%
  );
}

.blob--right {
  width: min(51.34vw, 938px);
  aspect-ratio: 1494.8689187392629 / 1454.9317329234873;
  left: 62%;
  top: calc(40% + 100px);
  opacity: 0.405;
  transform: translate(-50%, -50%) rotate(34deg);
  animation: blob-right-drift 22s ease-in-out infinite;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(60, 0, 231, 0.325) 0%,
    rgba(47, 0, 181, 0.26) 27%,
    rgba(29, 0, 118, 0.175) 52%,
    rgba(16, 0, 68, 0.10) 70%,
    rgba(0, 0, 0, 0) 86%
  );
}

@keyframes blob-left-drift {
  /* translate peaks ~20%, ~65%  |  scale peaks ~44%, trough ~84%  — clearly offset */
  0%   { transform: translate(-50%, -50%) rotate(34deg) translate(  0px,   0px) scale(1.00); }
  20%  { transform: translate(-50%, -50%) rotate(34deg) translate( 44px, -32px) scale(1.02); }
  44%  { transform: translate(-50%, -50%) rotate(34deg) translate(-16px,  18px) scale(1.20); }
  65%  { transform: translate(-50%, -50%) rotate(34deg) translate( 30px,  42px) scale(1.12); }
  84%  { transform: translate(-50%, -50%) rotate(34deg) translate(-14px, -18px) scale(1.00); }
  100% { transform: translate(-50%, -50%) rotate(34deg) translate(  0px,   0px) scale(1.00); }
}

@keyframes blob-right-drift {
  /* translate peaks ~23%, ~68%  |  scale peaks ~50%, trough ~88%  — clearly offset */
  0%   { transform: translate(-50%, -50%) rotate(34deg) translate(  0px,   0px) scale(1.00); }
  23%  { transform: translate(-50%, -50%) rotate(34deg) translate(-40px,  30px) scale(1.02); }
  50%  { transform: translate(-50%, -50%) rotate(34deg) translate( 28px, -20px) scale(1.18); }
  68%  { transform: translate(-50%, -50%) rotate(34deg) translate(-22px,  44px) scale(1.08); }
  88%  { transform: translate(-50%, -50%) rotate(34deg) translate( 16px, -12px) scale(0.82); }
  100% { transform: translate(-50%, -50%) rotate(34deg) translate(  0px,   0px) scale(1.00); }
}

.background {
  --hero-content-gutter: max(16px, calc((100vw - 1144px) / 2));
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  padding-left: 0;
  padding-right: 0;
  /* Clip decorative horizontal overflow WITHOUT creating a scroll container.
     Using `overflow-x: hidden` here coerced `overflow-y` to `auto` and made
     <main> a dead-end scroll container that swallowed wheel events. */
  overflow-x: clip;
  overflow-y: visible;
  background: var(--semantic-color-bg-page);
}


/* ── Triangle decorations (scattered across the whole page) ── */

.hero__tri {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 25;
  transform-origin: center;
  will-change: transform;
}
.hero__tri img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes hero-tri-in {
  from { opacity: 0; }
}

html.reveal-animations-ready .hero__tri {
  animation: hero-tri-in 1600ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--tri-anim-delay, 600ms);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-animations-ready .hero__tri {
    animation: none;
  }
}

.hero__tri--1  { --tri-anim-delay: 280ms; }
.hero__tri--2  { --tri-anim-delay: 460ms; }
.hero__tri--3  { --tri-anim-delay: 400ms; }
.hero__tri--4  { --tri-anim-delay: 540ms; }
.hero__tri--6  { --tri-anim-delay: 620ms; }
.hero__tri--7  { --tri-anim-delay: 500ms; }
.hero__tri--8  { --tri-anim-delay: 700ms; }
.hero__tri--10 { --tri-anim-delay: 760ms; }
.hero__tri--11 { --tri-anim-delay: 840ms; }
.hero__tri--12 { --tri-anim-delay: 780ms; }
.hero__tri--14 { --tri-anim-delay: 920ms; }
.hero__tri--15 { --tri-anim-delay: 580ms; }

/* Distribution across the full page (top %):
   ~3%, ~10%, ~18%, ~26%, ~34%, ~42%, ~50%, ~58%, ~66%, ~74%, ~82%, ~90% */

/* 1 — large, far: hero top-left, heavy blur */
.hero__tri--1 {
  width: 527px;
  top: 3%;
  left: 122px;
  opacity: 0.54;
  filter: blur(16px);
  transform: translateY(var(--py, 0px)) rotate(39deg);
}
/* 2 — medium, mid: hero top-right, mild blur */
.hero__tri--2 {
  width: 278px;
  top: 10%;
  right: 1.75%;
  opacity: 0.72;
  filter: blur(6px);
  transform: translateY(var(--py, 0px)) rotate(27deg);
}
/* 3 — medium, mid: mid-page right */
.hero__tri--3 {
  width: 248px;
  top: 74%;
  right: 6%;
  opacity: 0.72;
  filter: blur(8px);
  transform: translateY(var(--py, 0px)) rotate(-7deg);
}
/* 4 — medium, mid: mid-page left */
.hero__tri--4 {
  width: 263px;
  top: 50%;
  left: 7%;
  opacity: 0.9;
  filter: blur(2px);
  transform: translateY(var(--py, 0px)) rotate(36deg);
}
/* 5 — large, far: lower-center, heavy blur */
.hero__tri--5 {
  width: 396px;
  top: 60%;
  left: 27%;
  opacity: 0.46;
  filter: blur(18px);
  transform: translateY(var(--py, 0px)) rotate(-31deg);
}
/* 6 — medium, close: features area right */
.hero__tri--6 {
  width: 229px;
  top: 34%;
  right: calc(2% + 4px);
  opacity: 0.88;
  filter: blur(1px);
  transform: translateY(var(--py, 0px)) rotate(-14deg);
}
/* 7 — medium, mid: how-it-works right, mild blur */
.hero__tri--7 {
  width: 180px;
  top: 42%;
  right: 1%;
  opacity: 0.58;
  filter: blur(7px);
  transform: translateY(var(--py, 0px)) rotate(22deg);
}
/* 8 — small, close: FUTO area right, crisp */
.hero__tri--8 {
  width: 227px;
  top: 90%;
  right: 8%;
  opacity: 0.49;
  filter: blur(2px);
  transform: translateY(var(--py, 0px));
}
.hero__tri--8 img {
  transform: rotate(53deg);
}
/* 9 — large, far: top-center, heavy blur */
.hero__tri--9 {
  width: 340px;
  top: 5%;
  left: 36%;
  opacity: 0.36;
  filter: blur(22px);
  transform: translateY(var(--py, 0px)) rotate(13deg);
}
/* 10 — small, close: FAQ left, mild blur */
.hero__tri--10 {
  width: 120px;
  top: 82%;
  left: 11.12%;
  opacity: 0.70;
  filter: blur(3px);
  transform: translateY(var(--py, 0px)) rotate(-23deg);
}
.hero__tri--10 img {
  opacity: 0.38;
}
/* 11 — medium, mid: comparison center, mild blur */
.hero__tri--11 {
  width: 220px;
  top: 58%;
  left: 45%;
  opacity: 0.50;
  filter: blur(9px);
  transform: translateY(var(--py, 0px)) rotate(48deg);
}
/* 12 — small, close: plugins area left, crisp */
.hero__tri--12 {
  width: 96px;
  top: 18%;
  left: 22%;
  opacity: 0.5;
  filter: blur(1.5px);
  transform: translateY(var(--py, 0px)) rotate(135deg);
}
/* 13 — medium-large, far: bottom-right, heavy blur */
.hero__tri--13 {
  width: 290px;
  top: 80%;
  right: 18%;
  opacity: 0.44;
  filter: blur(13px);
  transform: translateY(var(--py, 0px)) rotate(22deg);
}
/* 14 — small-medium, mid: plugins/features right, mild blur */
.hero__tri--14 {
  width: 152px;
  top: 26%;
  right: 26%;
  opacity: 0.68;
  filter: blur(4px);
  transform: translateY(var(--py, 0px)) rotate(-58deg);
}
/* 15 — large, far: privacy/mission left, very heavy blur */
.hero__tri--15 {
  width: 380px;
  top: 66%;
  left: -2%;
  opacity: 0.30;
  filter: blur(20px);
  transform: translateY(var(--py, 0px)) rotate(8deg);
}

@media (max-width: 760px) {
  .hero__tri--1 { width: 252px; filter: blur(9px); opacity: 0.56; }
  .hero__tri--2 { width: 92px; right: 8%; filter: blur(1px); opacity: 0.95; }
  .hero__tri--3 { display: none; }
  .hero__tri--4 { width: 102px; filter: blur(1px); opacity: 0.9; }
  .hero__tri--5 { display: none; }
  .hero__tri--6 { display: none; }
  .hero__tri--7 { display: none; }
  .hero__tri--8 { width: 84px; top: 68%; right: 5%; }
  .hero__tri--9 { display: none; }
  .hero__tri--10 { width: 88px; }
  .hero__tri--11 { display: none; }
  .hero__tri--12 { width: 72px; }
  .hero__tri--13 { display: none; }
  .hero__tri--14 { display: none; }
  .hero__tri--15 { display: none; }
}

.hero {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 240px;
  padding-bottom: 0px;
  box-sizing: border-box;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 760px;
  margin-top: 0;
  padding-left: 0px;
  padding-right: 0px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  line-height: 32px;
}

@property --shine-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero__announce {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 0 0 8px;
  background: color-mix(in srgb, var(--semantic-color-text-primary) 4%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 7%, transparent);
  border-radius: 12px;
  position: relative;
  text-decoration: none;
}

.hero__announce[hidden] {
  display: none !important;
}

.hero__announce::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: conic-gradient(
    from var(--shine-angle),
    rgba(255, 255, 255, 0.036) 0deg,
    rgba(255, 255, 255, 0.264) 38deg,
    rgba(255, 255, 255, 0.036) 72deg,
    rgba(255, 255, 255, 0.036) 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: badge-shine 5.3s ease-in-out infinite,
             badge-fade 8.7s ease-in-out infinite;
  pointer-events: none;
}

.hero__announce-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  height: 26px;
  background: var(--semantic-color-text-success);
  border-radius: 12px;
  font-size: var(--text-040);
  font-weight: 500;
  color: var(--semantic-color-text-inverse);
}

.hero__announce-text {
  width: 100%;
  font-size: var(--text-040);
  font-weight: 300;
  color: var(--semantic-color-text-primary);
  line-height: 28px;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/* Section eyebrows — Figma chip (Grayjay Web · node 3302-11196); shell tokens in colors.css */
.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 39px;
  gap: var(--eyebrow-gap);
  padding: var(--eyebrow-padding-y) var(--eyebrow-padding-x-end) var(--eyebrow-padding-y) var(--eyebrow-padding-x-start);
  border: 1px solid var(--eyebrow-border);
  border-radius: var(--eyebrow-radius);
  background-color: var(--eyebrow-bg);
  font-family: var(--font-sans);
  font-size: var(--text-040);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: var(--leading-caption);
  color: var(--eyebrow-color);
  white-space: nowrap;
  text-decoration: none;
}

.eyebrow--privacy      { --eyebrow-color: var(--eyebrow-accent-privacy); }
.eyebrow--plugins      { --eyebrow-color: var(--eyebrow-accent-plugins); align-self: flex-start; }
.eyebrow--features     { --eyebrow-color: var(--eyebrow-accent-comparison); }
.eyebrow--how-it-works { --eyebrow-color: var(--eyebrow-accent-how-it-works); }
.eyebrow--casting      { --eyebrow-color: var(--eyebrow-accent-casting); }
.eyebrow--comparison   { --eyebrow-color: var(--eyebrow-accent-comparison); }

.eyebrow__icon {
  flex-shrink: 0;
  width: var(--eyebrow-icon-size);
  height: var(--eyebrow-icon-size);
  display: block;
  color: inherit;
}

.eyebrow__text {
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0px;
  color: inherit;
  white-space: nowrap;
  line-height: inherit;
}

.hero__title,
#hero-title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  letter-spacing: 0px;
  color: var(--semantic-color-text-primary);
  text-shadow: 0 71px 80px rgba(0, 0, 0, 0.33), 0 46.019px 46.852px rgba(0, 0, 0, 0.25), 0 27.348px 25.481px rgba(0, 0, 0, 0.20), 0 14.2px 13px rgba(0, 0, 0, 0.17), 0 5.785px 6.519px rgba(0, 0, 0, 0.13), 0 1.315px 3.148px rgba(0, 0, 0, 0.08);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.06);
  font-family: var(--font-heading);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  max-width: 700px;
}

.hero__title-muted {
  display: block;
  width: 100%;
  margin: 16px 0 0;
  opacity: 0.5;
  color: var(--semantic-color-text-primary);
  font-family: var(--font-heading);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 0;
  text-shadow: 0 71px 80px rgba(0, 0, 0, 0.33), 0 46.019px 46.852px rgba(0, 0, 0, 0.25), 0 27.348px 25.481px rgba(0, 0, 0, 0.20), 0 14.2px 13px rgba(0, 0, 0, 0.17), 0 5.785px 6.519px rgba(0, 0, 0, 0.13), 0 1.315px 3.148px rgba(0, 0, 0, 0.08);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.06);
}

.hero__subtitle {
  margin: 24px 0 0;
  width: 100%;
  max-width: 100%;
  color: rgba(249, 249, 249, 0.75);
  font-size: 20px;
  font-weight: 400;
  line-height: var(--leading-relaxed);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  box-shadow: none;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 40px;
  width: fit-content;
  height: 50px;
}

.hero__cta-note {
  margin: 20px 0 0;
  display: block;
  width: fit-content;
  max-width: 100%;
  position: relative;
  z-index: 2;
  color: rgba(249, 249, 249, 0.6);
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.86);
  font-family: var(--font-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0.6px;
}

.hero__proof {
  margin: 32px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: var(--text-040);
  font-weight: 300;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 60%, transparent);
  text-align: left;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero__proof-link {
  color: var(--text-primary);
  text-decoration: none;
}

.hero__proof-link:hover {
  text-decoration: underline;
}

.hero__proof-sep {
  margin: 0 7px;
  color: rgba(248, 248, 248, 1);
  opacity: 1;
  font-weight: 700;
}

.hero__cta,
.buy-license-modal__cta,
.download-card__btn-name,
.sources__cta,
.casting__screen-cta-label,
.qr-modal__cta,
.plugins-page__install-btn {
  font-size: var(--text-050);
  font-weight: 700;
  line-height: 1.4;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  padding: 0 40px;
  margin-left: 0;
  margin-right: 0;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.39);
  background: #ffffff;
  box-shadow: 0 138px 80px 0 rgba(0, 0, 0, 0.33), 0 89.444px 46.852px 0 rgba(0, 0, 0, 0.25), 0 53.156px 25.481px 0 rgba(0, 0, 0, 0.20), 0 27.6px 13px 0 rgba(0, 0, 0, 0.17), 0 11.244px 6.519px 0 rgba(0, 0, 0, 0.13), 0 2.556px 3.148px 0 rgba(0, 0, 0, 0.08);
  color: var(--semantic-color-text-inverse);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms ease-in;
  will-change: transform;
}

.hero__cta:hover {
  background: #f1f4f7;
}

.hero__cta--android {
  position: relative;
  gap: 4px;
  border-radius: 6px;
  height: 50px;
  width: 220px;
  padding-left: 40px;
  padding-right: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(521.1px);
  -webkit-backdrop-filter: blur(521.1px);
  box-shadow: 0 138px 80px 0 rgba(0, 0, 0, 0.33), 0 89.444px 46.852px 0 rgba(0, 0, 0, 0.25), 0 53.156px 25.481px 0 rgba(0, 0, 0, 0.20), 0 27.6px 13px 0 rgba(0, 0, 0, 0.17), 0 11.244px 6.519px 0 rgba(0, 0, 0, 0.13), 0 2.556px 3.148px 0 rgba(0, 0, 0, 0.08);
  color: var(--semantic-color-text-primary);
}

.hero__cta--android:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero__cta--android img {
  flex-shrink: 0;
}

.hero-android-wrap {
  position: relative;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-android-popup {
  --hero-android-popup-shift-x: 0px;
  --hero-android-popup-shift-y: 0px;
  position: absolute;
  top: 50%;
  left: 247px;
  width: min(592px, calc(100vw - 24px));
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translate(
    calc(var(--hero-android-popup-shift-x) + 6px),
    calc(-50% + var(--hero-android-popup-shift-y))
  );
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hero-android-popup__tip {
  display: none;
}

.hero-android-popup__body {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.94), rgba(11, 12, 16, 0.94));
  border: var(--card-surface-border);
  border-radius: 16px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 71px 80px 0 rgba(0, 0, 0, 0.14), 0 46.019px 46.852px 0 rgba(0, 0, 0, 0.11), 0 27.348px 25.481px 0 rgba(0, 0, 0, 0.09), 0 14.2px 13px 0 rgba(0, 0, 0, 0.07), 0 5.785px 6.519px 0 rgba(0, 0, 0, 0.05), 0 1.315px 3.148px 0 rgba(0, 0, 0, 0.03);
}

.hero-android-popup__body::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -7px;
  width: 13px;
  height: 13px;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.94), rgba(11, 12, 16, 0.94));
  border: var(--card-surface-border);
  border-top: none;
  border-right: none;
  transform: translateY(-50%) rotate(45deg);
}

.hero-android-popup__qr {
  width: 245px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-android-popup__qr-wrap {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 6%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 12px;
  padding: 20px 16px;
}

.hero-android-popup__qr-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-android-popup__qr-text {
  margin: 0;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 60%, transparent);
  font-size: var(--text-040);
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
}

.hero-android-popup__links {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-android-popup__item {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  text-decoration: none;
  color: var(--semantic-color-text-primary);
  transition: background-color 120ms ease-in;
}

.hero-android-popup__item:hover {
  background: var(--bg-surface);
}

.hero-android-popup__content {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-android-popup__title {
  color: var(--semantic-color-text-primary);
  font-size: var(--text-040);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}

.hero-android-popup__meta {
  color: color-mix(in srgb, var(--semantic-color-text-primary) 50%, transparent);
  font-size: var(--text-030);
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
}

.hero-android-popup__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-android-popup__icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.hero-android-popup__divider {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero-android-wrap.is-open .hero-android-popup,
  .hero-android-wrap:hover .hero-android-popup,
  .hero-android-wrap:focus-within .hero-android-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translate(
      var(--hero-android-popup-shift-x),
      calc(-50% + var(--hero-android-popup-shift-y))
    );
  }
}

.hero__media {
  margin-top: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: fit-content;
  overflow: visible;
  z-index: 1;
}

.hero__frame {
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1.346px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(98px);
  -webkit-backdrop-filter: blur(98px);
  box-sizing: border-box;
}

.hero__frame--desktop {
  position: relative;
  width: 100%;
  padding: 8px;
  /*left: 18%;
  top: -16%;*/
  flex-shrink: 0;
  margin-top: 0;
  /*transform: rotate(-17.28deg) scaleY(0.95) skewX(18.14deg);*/
  transform-origin: 50% 50%;
}

.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.hero__frame--phone {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(861.4px);
  -webkit-backdrop-filter: blur(861.4px);
}

.hero__phone-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (min-width: 761px) {
  .hero__frame--phone {
    display: block;
    position: absolute;
    right: 24px;
    bottom: 18px;
    width: 27.3%;
    max-width: 340px;
    padding: 7px;
    border-radius: 23px;
    /*transform: rotate(-17.28deg) scaleY(0.95) skewX(18.14deg);*/
    transform-origin: 50% 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(861.4px);
    -webkit-backdrop-filter: blur(861.4px);
    box-shadow: 0 128px 84px 0 rgba(0, 0, 0, 0.46), 0 83px 49px 0 rgba(0, 0, 0, 0.35), 0 49px 27px 0 rgba(0, 0, 0, 0.28), 0 26px 14px 0 rgba(0, 0, 0, 0.23), 0 10px 7px 0 rgba(0, 0, 0, 0.18), 0 2px 3px 0 rgba(0, 0, 0, 0.11);
  }
}

.hero__mockup {
  position: relative;
  width: 100%;
  height: fit-content;
  flex-shrink: 0;
  padding-bottom: 72px;
  overflow: visible;
  z-index: 1;
}
.parallax-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140svh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.7) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.7) 84%,
    rgba(0, 0, 0, 0) 100%
  );
}


.parallax-layer__asset {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.54;
  user-select: none;
  -webkit-user-drag: none;
}

.parallax-layer__triangle-1 {
  width: min(33vw, 470px);
  left: -3vw;
  top: 32%;
  opacity: 0.58;
}

.parallax-layer__triangle-2 {
  width: min(14vw, 250px);
  left: 46%;
  top: 18%;
  opacity: 0.42;
}

.parallax-layer__triangle-3 {
  width: min(34vw, 560px);
  right: -8vw;
  top: 36%;
  opacity: 0.5;
}

.parallax-layer__triangle-4 {
  width: min(40vw, 620px);
  right: -18vw;
  top: -6%;
  opacity: 0.42;
}

/* Hero triangles — rendered above the CRT canvas (hero z-index: 20) */
@keyframes badge-shine {
  to { --shine-angle: 360deg; }
}

@keyframes badge-fade {
  0%, 100% { opacity: 0.76; }
  38%       { opacity: 0.10; }
  72%       { opacity: 0.84; }
}

/* ── Hero — responsive ───────────────────────────────────── */

/* ── CRT Hero Canvas ── */

#crt-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1300px;
  z-index: 5;
  display: block;
  pointer-events: none;
  background: var(--semantic-color-bg-page);
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 62%,
    rgba(0, 0, 0, 0.92) 72%,
    rgba(0, 0, 0, 0.6) 84%,
    rgba(0, 0, 0, 0.24) 93%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 62%,
    rgba(0, 0, 0, 0.92) 72%,
    rgba(0, 0, 0, 0.6) 84%,
    rgba(0, 0, 0, 0.24) 93%,
    rgba(0, 0, 0, 0) 100%
  );
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__announce::before { animation: none; }

  #crt-canvas,
  #download-crt-canvas {
    display: none;
  }

  .casting__screen-cta {
    animation: none;
  }
}

.crt-controls__toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 24px;
  padding: 0;
  background: rgba(8, 8, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 10000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color 100ms ease, border-color 100ms ease;
}

.crt-controls__toggle:hover {
  color: var(--semantic-color-text-primary);
  border-color: rgba(255, 255, 255, 0.35);
}

.crt-controls {
  position: fixed;
  bottom: 52px;
  right: 20px;
  width: 280px;
  max-height: calc(100vh - 80px);
  display: none;
  flex-direction: column;
  background: rgba(8, 8, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.crt-controls.is-open {
  display: flex;
}

.crt-controls__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: var(--text-020);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.crt-controls__close {
  background: none;
  border: none;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.35);
  font-size: var(--text-050);
  line-height: 1;
  cursor: pointer;
  transition: color 100ms ease;
}

.crt-controls__close:hover {
  color: var(--semantic-color-text-primary);
}

.crt-controls__body {
  overflow-y: auto;
  padding: 6px 0;
}

.crt-ctrl-row {
  display: grid;
  grid-template-columns: 108px 1fr 34px;
  align-items: center;
  gap: 6px;
  padding: 3px 14px;
}

.crt-ctrl-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  user-select: none;
}

.crt-ctrl-row input[type='range'] {
  width: 100%;
  margin: 0;
  accent-color: var(--semantic-color-bg-brand);
  cursor: pointer;
}

.crt-ctrl-val {
  font-size: var(--text-020);
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  :root {
    --buy-license-title-size: 2.125rem;
    --buy-license-price-size: 2.2rem;
    --section-subtitle-size: 1.0625rem;
    --casting-connected-label-size: 24px;
    --casting-downloads-title-size: 24px;
    --casting-player-title-size: 30px;
    --casting-ready-video-title-size: 16px;
    --casting-ready-time-chip-size: 9px;
    --numbers-value-size: 2.5rem;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 0px;
  }

  .hero__inner {
    padding-inline: 0;
  }

  .hero__title,
  #hero-title,
  .hero__title-muted {
    font-size: 48px;
    line-height: 1.08;
    max-width: 380px;
  }

  .hero__subtitle {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.45;
    max-width: 380px;
  }

  .hero__ctas {
    margin-top: 40px;
    max-width: 460px;
    gap: 12px;
  }

  .hero__cta,
  .hero__cta--android {
    flex: 1 1 0;
    width: auto;
    padding-inline: 24px;
  }

  .hero-android-popup {
    top: calc(100% + 12px);
    left: auto;
    right: 0;
    width: min(520px, calc(100vw - 40px));
    transform: translate(
      var(--hero-android-popup-shift-x),
      calc(var(--hero-android-popup-shift-y) + 6px)
    );
  }

  .hero-android-popup__body {
    padding: 18px;
    gap: 14px;
  }

  .hero-android-popup__body::before {
    top: -7px;
    left: auto;
    right: 28px;
    border: var(--card-surface-border);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
  }

  .hero-android-popup__qr {
    width: 188px;
    gap: 8px;
  }

  .hero-android-popup__qr-wrap {
    padding: 16px 14px;
  }

  .hero-android-popup__links {
    gap: 6px;
  }

  .hero-android-popup__item {
    padding: 10px 12px;
  }

  .hero-android-popup__title {
    line-height: 1.2;
  }

  .hero-android-popup__meta {
    line-height: 1.25;
  }

  .hero__tri--1 {
    width: min(38vw, 440px);
    left: -16vw;
    top: 42svh;
  }

  .hero__tri--2 {
    width: min(20vw, 220px);
    left: 48vw;
    top: 18svh;
  }

  .hero__tri--3 {
    width: min(44vw, 500px);
    left: auto;
    right: -14vw;
    top: 41svh;
  }

  .hero__tri--4 {
    width: min(46vw, 540px);
    right: -30vw;
    top: -4svh;
  }

  .hero-android-wrap.is-open .hero-android-popup,
  .hero-android-wrap:hover .hero-android-popup,
  .hero-android-wrap:focus-within .hero-android-popup {
    transform: translate(
      var(--hero-android-popup-shift-x),
      var(--hero-android-popup-shift-y)
    );
  }
}

@media (max-width: 760px) {
  .hero__inner {
    padding-inline: 0;
  }

  .hero__media {
    margin-top: 99px;
  }

  .hero__announce-badge {
    font-size: var(--text-030);
    height: 24px;
  }

  .hero__announce-text {
    font-size: var(--text-050);
    line-height: normal;
  }

  .hero {
    padding-top: 160px;
    padding-bottom: 0px;
  }

  .hero__title,
  #hero-title,
  .hero__title-muted {
    font-size: 2.5rem;
    line-height: 1.15;
    max-width: none;
  }

  .hero__subtitle {
    margin-top: 20px;
    font-size: 20px;
    max-width: none;
  }

  .hero__ctas {
    width: 100%;
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    max-width: none;
    height: auto;
  }

  .hero__ctas > * {
    min-width: 0;
  }

  .hero-android-wrap {
    width: 100%;
    max-width: none;
  }

  .hero__cta,
  .hero__cta--android {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 50px;
    font-size: var(--text-050);
    padding-inline: 20px;
  }

  .hero-android-wrap .hero__cta--android {
    width: 100%;
  }

  .hero__cta-note {
    margin-top: 20px;
    font-size: 12px;
  }

  .hero-android-popup {
    display: none;
  }

  .hero__mockup {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }

  .hero__frame--desktop {
    display: none;
  }

  .hero__frame--phone {
    display: block;
    position: relative;
    width: 90%;
    max-width: none;
    box-sizing: border-box;
    padding: 9px;
    border-radius: 23px;
    transform: none;
    transform-origin: 50% 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(861.4px);
    -webkit-backdrop-filter: blur(861.4px);
    box-shadow: 0 128px 84px 0 rgba(0, 0, 0, 0.46), 0 83px 49px 0 rgba(0, 0, 0, 0.35), 0 49px 27px 0 rgba(0, 0, 0, 0.28), 0 26px 14px 0 rgba(0, 0, 0, 0.23), 0 10px 7px 0 rgba(0, 0, 0, 0.18), 0 2px 3px 0 rgba(0, 0, 0, 0.11);
    margin: 0 auto;
  }

  .hero__phone-img {
    border-radius: 12px;
  }

  .hero__tri--1 {
    width: min(55vw, 310px);
    left: -22vw;
    top: 48svh;
  }

  .hero__tri--2 {
    width: min(32vw, 180px);
    left: 62vw;
    top: 29svh;
  }

  .hero__tri--3 {
    display: none;
  }

  .hero__tri--4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 56px;
  }

  .hero__inner {
    align-items: flex-start;
  }

  .hero__copy {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero__title,
  #hero-title,
  .hero__title-muted,
  .hero__subtitle {
    text-align: left;
  }

  .hero__cta-note {
    text-align: left;
  }

  .hero__proof {
    justify-content: flex-start;
    text-align: left;
  }

  .hero__title,
  #hero-title,
  .hero__title-muted {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__frame--phone {
    width: 90%;
    max-width: none;
  }

  /* Hide desktop download button */
  .hero__cta:not(.hero__cta--android) {
    display: none;
  }

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

  .hero-android-wrap,
  .hero__cta--android {
    width: 100%;
    flex-basis: 100%;
  }

  /* Android button becomes primary white */
  .hero__cta--android {
    background: #ffffff;
    border: 0;
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
    color: var(--semantic-color-text-inverse);
    font-weight: 700;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__cta--android img {
    filter: invert(1);
  }

  .hero__cta--android:hover {
    background: #f1f4f7;
    border: 0;
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
  }

  .hero-android-wrap {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .parallax-layer__asset {
    transform: none;
  }

  .hero__announce::before { animation: none; }
}

@media (max-width: 1024px) {
  .nav {
    padding: 18px 24px;
  }

  .nav__inner {
    width: 100%;
  }

  .nav__links {
    gap: 3px;
  }

  .nav__link {
    padding: 8px 13px;
    font-size: var(--text-040);
  }

  .nav__link--outline {
    margin-left: 10px;
  }

  .blob--left {
    width: min(72vw, 700px);
    left: 30%;
    top: calc(88% + 100px);
  }

  .blob--right {
    width: min(86vw, 984px);
    left: 58%;
    top: calc(43% + 100px);
  }

  .parallax-layer__triangle-1 {
    width: min(38vw, 440px);
    left: -16vw;
    top: 42%;
  }

  .parallax-layer__triangle-2 {
    width: min(20vw, 220px);
    left: 48%;
    top: 18%;
  }

  .parallax-layer__triangle-3 {
    width: min(44vw, 500px);
    right: -14vw;
    top: 41%;
  }

  .parallax-layer__triangle-4 {
    width: min(46vw, 540px);
    right: -30vw;
    top: -4%;
  }


}

@media (max-width: 760px) {
  .nav {
    padding: 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .nav.nav--menu-open {
    background: var(--semantic-color-bg-page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__inner {
    width: calc(100% - 48px);
    max-width: none;
    min-height: 52px;
    padding: 12px 0;
    position: relative;
    z-index: 102;
  }

  .nav__brand {
    width: auto;
    height: 40px;
    gap: 4px;
  }

  .nav__logo {
    width: 44px;
    height: 44px;
  }

  .nav__brand-name {
    font-size: var(--text-050);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    transform: none;
  }

  .nav__toggle {
    display: inline-flex;
    z-index: 103;
    width: auto;
    padding: 0 12px;
    flex-direction: row;
    gap: 8px;
  }

  .nav__toggle-label {
    display: inline;
    font-family: inherit;
    font-size: var(--text-040);
    font-weight: 700;
    line-height: 1;
    color: var(--semantic-color-text-primary);
    letter-spacing: 0;
  }

  .nav--menu-open .nav__toggle-icon {
    gap: 0;
  }

  .nav--menu-open .nav__toggle-line:nth-child(1) {
    transform: translateY(2px) rotate(45deg);
  }

  .nav--menu-open .nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav--menu-open .nav__toggle-line:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
  }

  .nav__links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 20px;
    background: var(--semantic-color-bg-page);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav--menu-open .nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    width: 100%;
    height: 48px;
    padding: 8px 12px;
    font-size: var(--text-040);
    font-weight: 700;
    line-height: 1.4;
    color: var(--semantic-color-text-primary);
  }

  .nav__link-arrow {
    width: 12px;
    height: 12px;
    margin-left: 8px;
    opacity: 1;
  }

  .nav__link--outline {
    display: none;
  }

  .nav__snackbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    position: sticky;
    bottom: 20px;
    padding: 20px 16px;
    background: #121212;
    border: 1px solid #232323;
    border-radius: 12px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
  }

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

  .nav__snackbar-title {
    margin: 0;
    font-size: var(--text-050);
    font-weight: 700;
    color: var(--semantic-color-text-primary);
    line-height: 1.3;
  }

  .nav__snackbar-desc {
    margin: 0;
    font-size: var(--text-040);
    font-weight: 300;
    color: var(--semantic-color-text-tertiary);
    line-height: 20px;
  }

  .nav__snackbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 20px;
    background: var(--semantic-color-bg-brand);
    border: 1px solid #259ffe;
    border-radius: 12px;
    color: var(--semantic-color-text-primary);
    text-decoration: none;
    font-size: var(--text-040);
    font-weight: 700;
    line-height: 1;
    transition: background-color 120ms ease-in;
  }

  button.nav__snackbar-btn {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .nav__snackbar-btn:hover {
    background: var(--semantic-color-interactive-primary-hover);
  }

  .buy-license-modal {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .buy-license-modal__dialog {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px 0;
  }

  .buy-license-modal__close {
    right: 10px;
    z-index: 3;
  }

  .buy-license-modal__content {
    padding: 22px 20px 24px;
    gap: 18px;
  }

  .buy-license-modal__summary {
    padding-right: 52px;
  }

  .buy-license-modal__title {
    margin-top: 0;
    font-size: var(--buy-license-title-size);
  }

  .buy-license-modal__subtitle {
    font-size: var(--text-045);
    line-height: 1.45;
  }

  .buy-license-modal__body {
    font-size: var(--text-045);
  }

  .buy-license-modal__price {
    font-size: var(--buy-license-price-size);
  }

  .buy-license-modal__price-meta {
    font-size: var(--text-040);
  }

  .buy-license-modal__list li {
    padding-left: 24px;
    font-size: var(--text-050);
  }

  .buy-license-modal__cta {
    height: 50px;
    min-height: 0;
    border-radius: 12px;
    font-size: var(--text-050);
    line-height: 1.4;
  }

  .buy-license-modal__footnote {
    font-size: 14px;
  }

  .blob--left {
    width: 240vw;
    left: 42%;
    top: calc(82% + 100px);
  }

  .blob--right {
    width: 312vw;
    left: 68%;
    top: calc(36% + 100px);
  }

  .parallax-layer__triangle-1 {
    width: min(55vw, 310px);
    left: -22vw;
    top: 48%;
  }

  .parallax-layer__triangle-2 {
    width: min(32vw, 180px);
    left: 62%;
    top: 29%;
  }

  .parallax-layer__triangle-3 {
    display: none;
  }

  .parallax-layer__triangle-4 {
    display: none;
  }

  /* New sections — 760px */
  .casting__content,
  .comparison__intro,
  .privacy__content,
  .mission__content {
    max-width: 100%;
  }

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

  .footer-cta__buttons {
    gap: 8px;
  }

  .casting .page-section__inner {
    gap: 0;
  }

  .casting__visual {
    justify-content: flex-start;
  }

  .casting__screen {
    padding: 22px;
  }

  .casting__screen-copy {
    max-width: 86%;
  }

  .casting__screen-title {
    font-size: clamp(24px, 4vw, 36px);
  }

  .casting__screen-body {
    font-size: var(--text-040);
    line-height: 1.35;
  }

}

@media (max-width: 480px) {
  .background {
    padding-left: 0;
    padding-right: 0;
  }

  .casting {
    background: url('./imgs/casting-mobile-bg.svg') center top / cover no-repeat;
  }

  .casting__visual {
    width: 100%;
    margin-left: 0;
  }

  .page-section__inner {
    width: 100%;
    max-width: none;
    padding-inline: 20px;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-it-works-card {
    padding: 28px 24px;
    min-height: 0;
  }

  .how-it-works-card__visual {
    height: fit-content;
  }

  .nav__inner {
    width: calc(100% - 32px);
  }

  .nav__links {
    padding: 20px;
    gap: 24px;
  }

  .nav__link {
    font-size: var(--text-055);
  }

  /* New sections — 480px */
  .numbers .page-section__inner {
    padding-inline: 20px;
  }

  .numbers__grid {
    flex-direction: column;
    gap: 32px;
  }
  .numbers__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .numbers__availability {
    margin-top: 32px;
  }

  .futo-products__grid {
    grid-template-columns: 1fr;
  }

}

/* ================================
   Section divider
   ================================ */

.section-divider {
  width: 100%;
  margin: 0 auto;
  height: 1px;
  background: color-mix(in srgb, white 7%, transparent);
}

/* ================================
   Page Section (shared base)
   ================================ */

.page-section {
  position: relative;
  width: 100%;
  background-color: unset;
  --section-gap: 0px;
}

.page-section__inner {
  max-width: 1144px;
  width: 100%;
  padding-inline: 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap, 0px);
  box-sizing: border-box;
}

.section__title {
  margin: 16px 0 0;
  width: 100%;
  font-size: var(--text-100);
  font-weight: 400;
}

.section__desc {
  margin: 16px 0 0;
  width: 100%;
  color: var(--semantic-color-text-copy);
  font-size: var(--text-050);
  font-weight: 200;
  line-height: 24px;
}

.privacy .section__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 640px;
  max-width: 100%;
}

/* ================================
   How It Works Section
   ================================ */

.how-it-works {
  --section-gap: 0;
  z-index: 26;
  padding: var(--space-section-top) 0 0;
  height: fit-content;
}

.how-it-works .page-section__inner {
  align-items: flex-start;
  gap: 0;
  height: fit-content;
  padding-inline: 20px;
  margin-bottom: 48px;
}

.how-it-works__intro {
  width: 100%;
  max-width: 640px;
}

.how-it-works__intro .section__title {
  margin-top: 12px;
}

.how-it-works__intro .section__desc {
  margin-top: 12px;
}

.how-it-works__grid {
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 16px;
}

.how-it-works-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 24px;
  --card-surface-radius: 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  overflow: hidden;
  transition: border-color 140ms ease;
}

.how-it-works-card__visual {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-card__visual-frame {
  position: relative;
  width: 100%;
  height: fit-content;
}

.how-it-works-card--install {
  height: fit-content;
  min-height: 0;
}

.how-it-works-card--platforms {
  padding: 24px;
}

/* Card visual images */
.how-it-works-card__visual-frame .hiw-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: opacity 0.4s ease;
  user-select: none;
}
.hiw-img--default { opacity: 1; }
.hiw-img--active  { opacity: 0; pointer-events: none; }

.how-it-works-card.is-sequence-active .hiw-img--default { opacity: 0; }
.how-it-works-card.is-sequence-active .hiw-img--active  { opacity: 1; }

/* Card glow on sequence/hover */
.how-it-works-card:hover,
.how-it-works-card.is-sequence-active {
  border-color: rgba(249, 249, 249, 0.01);
}


/* ── Card 1: file + cursor slides right, border fades in, bar fills ── */
.hiw-c1-movable {
  transition: transform 0.63s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works-card--install.is-sequence-active .hiw-c1-movable {
  transform: translate(118.625px, -4.911px);
}

.hiw-c1-border {
  opacity: 0;
  transition: opacity 0.21s ease 0.27s;
}
.how-it-works-card--install.is-sequence-active .hiw-c1-border {
  opacity: 1;
}

.hiw-c1-bar {
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); /* leave: no delay */
}
.how-it-works-card--install.is-sequence-active .hiw-c1-bar {
  transform: scaleX(1);
  transition: transform 0.78s cubic-bezier(0.4, 0, 0.2, 1) 0.24s; /* enter: delayed */
}

/* ── Card 2: rows light up with individual stagger ───────────────── */
.hiw-c2-icon {
  fill: #262626;
  transition: fill 0.27s ease;
}
.hiw-c2-text {
  transition: fill-opacity 0.27s ease;
}
.hiw-c2-pill {
  transition: fill 0.27s ease, fill-opacity 0.27s ease;
}
.hiw-c2-toggle {
  transition: transform 0.27s cubic-bezier(0.4, 0, 0.2, 1), fill-opacity 0.27s ease;
}

.hiw-c2-r2 .hiw-c2-icon,
.hiw-c2-r2 .hiw-c2-text,
.hiw-c2-r2 .hiw-c2-pill,
.hiw-c2-r2 .hiw-c2-toggle { transition-delay: 66ms; }

.hiw-c2-r3 .hiw-c2-icon,
.hiw-c2-r3 .hiw-c2-text,
.hiw-c2-r3 .hiw-c2-pill,
.hiw-c2-r3 .hiw-c2-toggle { transition-delay: 150ms; }

.hiw-c2-r4 .hiw-c2-icon,
.hiw-c2-r4 .hiw-c2-text,
.hiw-c2-r4 .hiw-c2-pill,
.hiw-c2-r4 .hiw-c2-toggle { transition-delay: 252ms; }

.how-it-works-card--platforms.is-sequence-active .hiw-c2-icon { fill: rgba(255, 255, 255, 0.2); }

.how-it-works-card--platforms.is-sequence-active .hiw-c2-text { fill-opacity: 0.3; }

.how-it-works-card--platforms.is-sequence-active .hiw-c2-pill { fill: #0182e7; fill-opacity: 1; }

.how-it-works-card--platforms.is-sequence-active .hiw-c2-toggle { transform: translateX(8.637px); fill-opacity: 1; }

/* ── Card 3: icons brighten + checks pop in with individual stagger ── */
.hiw-c3-icon {
  fill: #212121;
  transition: fill 0.24s ease;
}
.hiw-c3-text {
  transition: fill-opacity 0.24s ease;
}
.hiw-c3-check {
  opacity: 0;
  transform: scale(0.3);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.17s ease, transform 0.19s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hiw-c3-r2 .hiw-c3-icon,
.hiw-c3-r2 .hiw-c3-text { transition-delay: 108ms; }
.hiw-c3-r2 .hiw-c3-check { transition-delay: 132ms; }

.hiw-c3-r3 .hiw-c3-icon,
.hiw-c3-r3 .hiw-c3-text { transition-delay: 228ms; }
.hiw-c3-r3 .hiw-c3-check { transition-delay: 258ms; }

.hiw-c3-r4 .hiw-c3-icon { transition-delay: 336ms; }

.how-it-works-card--import.is-sequence-active .hiw-c3-icon { fill: rgba(255, 255, 255, 0.2); }

.how-it-works-card--import.is-sequence-active .hiw-c3-icon--dim { fill: rgba(255, 255, 255, 0.06); }

.how-it-works-card--import.is-sequence-active .hiw-c3-text { fill-opacity: 0.07; }

.how-it-works-card--import.is-sequence-active .hiw-c3-check { opacity: 1; transform: scale(1); }

.how-it-works-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-it-works-card__title {
  margin: 0;
  color: var(--semantic-color-text-primary);
  font-size: var(--text-060);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-normal);
}

.how-it-works-card__desc {
  margin: 0;
  color: var(--semantic-color-text-copy);
  font-size: var(--text-050);
  font-weight: var(--weight-regular);
  line-height: 24px;
}

/* ================================
   Download Section
   ================================ */

.download {
  --section-gap: 48px;
  z-index: 30;
  padding: var(--space-section-top) 0 0;
  overflow: visible;
}

.download__bg {
  display: none;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*gap: 10px;*/
  text-align: center;
  max-width: 1144px;
}

.section_title {
  margin: 0;
  padding-top: 16px;
  font-size: var(--text-080);
  font-weight: var(--weight-bold);
  color: var(--semantic-color-text-primary);
  line-height: var(--leading-normal);
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.20), 0 14.259px 46.852px rgba(0, 0, 0, 0.15), 0 8.474px 25.481px rgba(0, 0, 0, 0.12), 0 4.4px 13px rgba(0, 0, 0, 0.10), 0 1.793px 6.519px rgba(0, 0, 0, 0.08), 0 0.407px 3.148px rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, var(--semantic-color-text-primary), var(--semantic-color-text-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__subtitle {
  margin: 0;
  padding-top: 16px;
  font-size: var(--section-subtitle-size);
  font-weight: var(--weight-light);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 52%, transparent);
  line-height: var(--leading-body);
}

.download__grid {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-top: 0px;
  margin-top: 0px;
  isolation: isolate;
}

/* Card */

.download-card {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 20px;
}

.download-card:focus-within {
  z-index: 40;
}

.download-card--popup-open {
  z-index: 40;
}

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

.download-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.download-card__name {
  margin: 6px 0 0;
  font-size: var(--text-060);
  font-weight: 700;
  color: var(--semantic-color-text-primary);
  line-height: var(--leading-normal);
}

.download-card__desc {
  margin: 6px 0 0;
  font-size: var(--text-030);
  font-weight: 300;
  color: var(--semantic-color-text-copy);
  line-height: var(--leading-caption);
}

.download-card__cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  min-height: 52px;
}

.download-card__cta--row {
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
}

.download-card__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 10px;
  background: var(--semantic-color-interactive-primary-default);
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 140ms ease, box-shadow 140ms ease;
}

.download-card__btn-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-size: var(--text-050);
  font-weight: 500;
  line-height: 20px;
  color: var(--semantic-color-text-on-brand);
  text-align: center;
}

.download-card__btn-meta {
  display: block;
  font-size: var(--text-030);
  font-weight: 400;
  color: color-mix(in srgb, var(--semantic-color-text-on-brand) 50%, transparent);
  line-height: var(--leading-snug);
}

.download-card__qr {
  width: 52px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 26%, transparent);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease;
}

button.download-card__qr {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  padding: 0;
}

/* QR popup */
.qr-popup-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  z-index: 5;
}

.qr-popup-wrap:hover,
.qr-popup-wrap:focus-within {
  z-index: 60;
}

.qr-popup {
  --popup-shift-x: 0px;
  --popup-shift-y: 0px;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  width: 285px;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translate(
    calc(-50% + var(--popup-shift-x)),
    calc(var(--popup-shift-y) + 6px)
  );
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.qr-popup--android {
  left: auto;
  right: 0;
  transform: translate(
    var(--popup-shift-x),
    calc(var(--popup-shift-y) + 6px)
  );
}

.qr-popup-wrap:hover .qr-popup,
.qr-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(
    calc(-50% + var(--popup-shift-x)),
    var(--popup-shift-y)
  );
}

.qr-popup-wrap:hover .qr-popup--android,
.qr-popup--android.is-open {
  transform: translate(
    var(--popup-shift-x),
    var(--popup-shift-y)
  );
}

.qr-popup__body {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.98), rgba(11, 12, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.48),
    0 16px 32px rgba(0, 0, 0, 0.36);
}

/* Arrow pointing down toward the QR button */
.qr-popup__body::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: rgba(13, 15, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-left: none;
  transform: translateX(-50%) rotate(45deg);
}

.qr-popup--android .qr-popup__body::after {
  left: auto;
  right: 18px;
  transform: rotate(45deg);
}

.qr-popup__img-wrap {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 6%, transparent);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.qr-popup__img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-popup__text {
  margin: 0;
  font-size: var(--text-040);
  font-weight: 300;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 60%, transparent);
  line-height: var(--leading-normal);
}

.download-card__qr img {
  width: 30px;
  height: 30px;
  display: block;
}

.download-card__rule {
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 8%, transparent);
  margin: 20px 0 0;
}

.download-card__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  min-height: 52px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-040);
  font-weight: 400;
  color: var(--semantic-color-text-primary);
  line-height: var(--leading-normal);
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.download-card__qr:hover,
.download-card__more:hover {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 4%, transparent);
}

.download-card__qr:hover {
  border-color: color-mix(in srgb, var(--semantic-color-text-primary) 18%, transparent);
}

.other-builds-wrap {
  position: relative;
}

.other-builds-popup {
  --popup-shift-x: 0px;
  --popup-shift-y: -50%;
  --popup-pointer-y: 50%;
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  width: min(285px, calc(100vw - 48px));
  z-index: 9999;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.98), rgba(11, 12, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.48),
    0 16px 32px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--popup-shift-x), var(--popup-shift-y)) translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.other-builds-popup::before {
  content: '';
  position: absolute;
  top: var(--popup-pointer-y);
  left: -7px;
  width: 13px;
  height: 13px;
  background: rgba(13, 15, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-right: none;
  transform: translateY(-50%) rotate(45deg);
}

.other-builds-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--popup-shift-x), var(--popup-shift-y));
  
}

.other-builds-popup__item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  width: 100%;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--semantic-color-text-primary);
  text-decoration: none;
  transition: background-color 120ms ease-in;
}

.other-builds-popup__divider {
  position: relative;
  height: 8px;
  pointer-events: none;
}

.other-builds-popup__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--semantic-color-border-subtle);
  transform: translateY(-50%);
  pointer-events: none;
}

.other-builds-popup__item:hover {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 3%, transparent);
}

.other-builds-popup__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.other-builds-popup__title {
  font-size: var(--text-040);
  font-weight: 500;
  line-height: 1.2;
  color: var(--semantic-color-text-primary);
}

.other-builds-popup__meta {
  font-size: var(--text-030);
  font-weight: 300;
  line-height: 1.2;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 50%, transparent);
}

.other-builds-popup__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.other-builds-popup__icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.download-card__alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0 0px;
  text-align: left;
  
}

.download-card__alt-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: var(--text-040);
  font-weight: 400;
  color: var(--semantic-color-text-primary);
  line-height: var(--leading-normal);
  text-decoration: none;
  transition: color 120ms ease-in;
}

.download-card__alt-link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}

.download-card__alt-link:hover {
  color: var(--semantic-color-text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download-card__alt-sub {
  width: 100%;
  text-align: center;
  font-size: var(--text-030);
  font-weight: 300;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 41%, transparent);
  line-height: var(--leading-caption);
}

/* ================================
   Sources Section
   ================================ */

.sources {
  z-index: 20;
  padding: var(--space-section-top) 0 0;
}

.sources .section__subtitle {
  width: 100%;
  max-width: 1144px;
  color: var(--semantic-color-text-secondary);
}

.sources__grid {
  width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.source-card {
  height: 152px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #121213;
  overflow: hidden;
}

.source-card__inner {
  width: 100%;
  max-width: 306px;
  height: 110.206px;
  padding: 21.857px 45.9px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.source-card__logo {
  display: block;
  width: auto;
  max-width: 160px;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.source-card__logo--youtube {
  max-width: 160px;
}

.source-card__logo--spotify {
  max-width: 110px;
}

.source-card__logo--rumble {
  max-width: 110px;
}

.source-card--coming {
  border: 1px dashed var(--semantic-color-border-default);
  background: transparent;
}

.source-card--coming span {
  font-size: var(--text-055);
  font-weight: 400;
  color: var(--semantic-color-text-secondary);
  line-height: 1;
}

.sources__cta {
  margin-top: 40px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 4%, transparent);
  background: color-mix(in srgb, var(--semantic-color-text-primary) 3%, transparent);
  color: var(--semantic-color-text-primary);
  text-decoration: none;
  font-size: var(--text-050);
  font-weight: 500;
  line-height: 24px;
  transition: background-color 120ms ease-in, border-color 120ms ease-in;
}

.sources__cta:hover {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 6%, transparent);
  border-color: color-mix(in srgb, var(--semantic-color-text-primary) 16%, transparent);
}

@media (max-width: 1024px) {
  .faq__tabs {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 3px 5px;
    scrollbar-width: none;
  }

  .faq__tabs::-webkit-scrollbar {
    display: none;
  }

  .faq__tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: 18px;
  }

  .feature-highlights__mockup {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .feature-highlights__plugin-grid {
    top: 86px;
  }

  .how-it-works {
    padding: var(--space-section-top) 0 0;
  }

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

  .how-it-works-card {
    height: fit-content;
    min-height: 0;
    gap: 8px;
  }

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

  .download-card {
    flex: unset;
  }

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

  /* New sections — 1024px */
  .futo-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .numbers__grid {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .numbers__stat {
    flex: 1 1 calc(50% - 1px);
  }
  .numbers__divider:nth-of-type(2) {
    display: none;
  }

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

  .mission__list-item,
  .mission__list-item:nth-child(1),
  .mission__list-item:nth-child(2),
  .mission__list-item:nth-child(3),
  .mission__list-item:nth-child(4),
  .mission__list-item:nth-child(5) {
    grid-column: span 1;
    min-height: 0;
  }

  .mission__list-item:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .feature-highlights {
    padding-top: 0;
  }

  .feature-highlights__tabs {
    margin-top: 28px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .feature-highlights__tabs::-webkit-scrollbar {
    display: none;
  }

  .feature-highlights__tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding-right: 20px;
  }

  .feature-highlights__shell {
    margin-top: 24px;
  }

  .feature-highlights__mockup {
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 0;
  }

  .feature-highlights__service-pills,
  .feature-highlights__privacy-flags,
  .feature-highlights__import-flow {
    max-width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
  }

  .feature-highlights__badge {
    top: 16px;
    left: 16px;
  }

  .feature-highlights__plugin-grid {
    top: 74px;
    left: 16px;
    right: 16px;
  }

  .feature-highlights__plugin-chip {
    min-height: 58px;
    min-width: calc(50% - 6px);
    padding: 14px 16px;
  }

  .feature-highlights__import-arrow {
    font-size: 20px;
  }

  .how-it-works__grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .how-it-works-card {
    height: fit-content;
    min-height: 0;
    padding: 28px 24px;
  }

  .how-it-works-card:last-child {
    grid-column: auto;
  }

  .how-it-works-card__visual {
    height: fit-content;
  }

  .how-it-works-card__title {
    font-size: 18px;
  }

  .how-it-works-card__desc {
    font-size: 15px;
  }

  .section_title {
    font-size: var(--text-060);
  }

  .section__subtitle {
    font-size: var(--text-050);
  }

  .section__title {
    font-size: 30px;
    line-height: 36px;
  }

  .download-card {
    flex: 1 1 100%;
  }

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

  .sources .page-section__inner {
    padding-inline: 20px;
  }

  .sources__grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .source-card {
    height: 132px;
    padding: 22px 24px;
  }

  .source-card__inner {
    height: 95px;
    padding: 16px 36px;
  }

  .source-card--coming span {
    font-size: var(--text-055);
  }

  .sources__cta {
    width: 100%;
    max-width: 280px;
  }

  /* New sections — 600px */
  .comparison__table-card {
    min-width: 560px;
  }

  .mission__body {
    font-size: 16px;
  }

  .mission__closing {
    font-size: 16px;
  }

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

  .mission__list-item,
  .mission__list-item:nth-child(1),
  .mission__list-item:nth-child(2),
  .mission__list-item:nth-child(3),
  .mission__list-item:nth-child(4),
  .mission__list-item:nth-child(5) {
    grid-column: 1 / -1;
  }

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

  .futo-products {
    gap: 32px;
  }

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

  .footer-cta__title {
    font-size: 30px;
    line-height: 36px;
  }

  .footer-cta__visual {
    margin: 36px auto 28px;
    padding-inline: 16px;
  }

  .footer-cta .download__grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .numbers__grid {
    flex-direction: column;
    gap: 24px;
  }

  .numbers__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .numbers__divider:nth-of-type(2) {
    display: block;
  }

  .numbers__stat {
    flex: 1 1 auto;
  }

  .feature-highlights__tabs {
    gap: 12px;
    margin-top: 28px;
  }

  .feature-highlights__tab {
    padding-right: 0;
  }
}

/* ================================
   Section 5: Casting
   ================================ */

.casting {
  z-index: 32;
  padding: 140px 0 80px;
  width: 100%;
  background: url('./imgs/casting-bg.svg') center top / cover no-repeat;
  position: relative;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 220px);
  mask-image: linear-gradient(to bottom, transparent 0px, black 220px);
}

.casting::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}


.casting .page-section__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-inline: 20px;
  height: 100%;
}

.casting__content {
  max-width: 640px;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

.casting__visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 40px;
  gap: 0px;
}

.casting__visual-media {
  position: relative;
  width: min(100%, 1144px);
}

.casting__visual-image {
  width: 100%;
  height: fit-content;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.38));
  backdrop-filter: blur(770.4px);
  -webkit-backdrop-filter: blur(770.4px);
}

.casting__screen {
  /* Positioned to match the inner screen rect of casting-tv.svg:
     SVG 1144×677, screen rect x=12 y=12 w=1120 h=620 rx=20 */
  position: absolute;
  top: 1.77%;      /* 12/677 */
  left: 1.05%;     /* 12/1144 */
  right: 1.05%;    /* 12/1144 */
  height: 91.58%;  /* 620/677 */
  padding: clamp(20px, 3vw, 40px);
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  border-radius: 1.79% / 3.23%;  /* 20px radius on a 1120×620 inner screen */
  background:
    radial-gradient(circle at 0% 0%, rgba(47, 31, 143, 0.24), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(22, 38, 115, 0.24), transparent 34%),
    linear-gradient(180deg, #09090C, #08080A);
  overflow: hidden;
  isolation: isolate;
}

.casting__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 30% 42% at 20% 0%, rgba(51, 43, 159, 0.26), transparent 72%),
    radial-gradient(ellipse 42% 50% at 72% 92%, rgba(16, 25, 84, 0.42), transparent 76%),
    radial-gradient(ellipse 28% 22% at 50% 100%, rgba(11, 191, 236, 0.2), transparent 72%);
  pointer-events: none;
}

.casting__screen::after {
  content: '';
  position: absolute;
  left: 31%;
  right: 31%;
  bottom: -3%;
  height: 22%;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(0, 162, 214, 0.25), rgba(0, 0, 0, 0) 72%);
  filter: blur(32px);
  pointer-events: none;
}

.casting__screen-copy,
.casting__screen-cta {
  position: relative;
  z-index: 1;
}

.casting__screen-copy {
  max-width: min(620px, 82%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 260ms ease, transform 260ms ease;
}

.casting__screen-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 0px;
  width: 88px;
  height: fit-content;
}

.casting__screen-logo-image {
  width: 100%;
  height: fit-content;
  display: block;
}

.casting__screen-title {
  margin: 0;
  margin-top: 40px;
  color: var(--semantic-color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-110);
  font-weight: var(--weight-bold);
  line-height: 1.05;
  letter-spacing: var(--tracking-h2);
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.casting__screen-body {
  margin: 24px 0 0;
  width: 450px;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: var(--weight-light);
  line-height: 1.32;
}

.casting__screen-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(234px, 46%);
  min-width: 180px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(38, 38, 41, 0.88), rgba(20, 20, 22, 0.9));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02),
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 3px 8px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
  animation: casting-continue-breathe 2.8s ease-in-out infinite;
}

.casting__screen-cta:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(42, 42, 46, 0.92), rgba(23, 23, 26, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 14px 30px rgba(0, 0, 0, 0.24),
    0 4px 10px rgba(0, 0, 0, 0.18);
}

.casting__screen-cta:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02),
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.14);
}

.casting__screen-cta:hover,
.casting__screen-cta:focus-visible,
.casting__screen-cta:active {
  animation-play-state: paused;
}

.casting__screen-cta-label {
  color: var(--semantic-color-text-primary);
  font-size: var(--text-050);
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.52);
}

@keyframes casting-continue-breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(255, 255, 255, 0.02),
      0 12px 28px rgba(0, 0, 0, 0.22),
      0 3px 8px rgba(0, 0, 0, 0.16);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.065),
      inset 0 -1px 0 rgba(255, 255, 255, 0.025),
      0 14px 30px rgba(0, 0, 0, 0.24),
      0 4px 10px rgba(0, 0, 0, 0.18);
  }
}

.casting__screen-demo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
  transform: scale(0.985);
}

.casting__screen-demo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.casting__screen-demo-tv {
  width: clamp(72px, 8.6vw, 100px);
  height: clamp(54px, 6.1vw, 76px);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(121, 121, 121, 0.85), rgba(79, 79, 79, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.casting__screen-demo-base {
  width: clamp(36px, 4vw, 48px);
  height: 4px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(124, 124, 124, 0.7);
}

.casting__screen-demo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: clamp(192px, 11.5vw, 215px);
  margin: 8px 0 10px;
  opacity: 1;
}

.casting__screen-demo-dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(196, 196, 196, 0.95);
  opacity: 0.18;
}

.casting__screen-demo-phone {
  position: relative;
  width: clamp(16px, 1.8vw, 22px);
  height: clamp(34px, 3.8vw, 40px);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(127, 127, 127, 0.86), rgba(90, 90, 90, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.casting__screen-demo-phone-notch {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(38, 38, 38, 0.92);
  transform: translateX(-50%);
}

.casting__screen-connected {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
  transform: scale(0.985);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.casting__screen-connected-icon {
  position: relative;
  width: 48px;
  height: 48px;
  transform: scale(1.2);
  transform-origin: center;
}

.casting__screen-connected-phone {
  position: absolute;
  left: 50%;
  top: 1px;
  width: 26px;
  height: 46px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}

.casting__screen-connected-phone-notch {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}

.casting__screen-connected-check {
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 2px 10px rgba(48, 209, 88, 0.32);
}

.casting__screen-connected-checkmark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.casting__screen-connected-label {
  margin: 24px 0 0;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 17.105%, #b4b4b4 78.947%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: var(--weight-semibold);
  line-height: 1.05;
  letter-spacing: var(--tracking-h3);
}

.casting__screen-ready-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
}

.casting__screen-ready-frame-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.casting__screen-ready-frame-fade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 49.901%, rgba(0, 0, 0, 0.63) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 49.901%, rgba(0, 0, 0, 0.4) 100%);
}

.casting__screen-ready-frame-controls {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(24px, 6.05%, 58px) 20px;
}

.casting__screen-ready-frame-video-title {
  margin: 0;
  width: fit-content;
  padding-bottom: 24px;
  color: #e4e6ed;
  font-size: var(--casting-ready-video-title-size);
  font-weight: var(--weight-medium);
  line-height: 1.5;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.casting__screen-ready-frame-progress-track {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.casting__screen-ready-frame-progress-fill {
  display: block;
  width: 8.13%;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
}

.casting__screen-ready-frame-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.casting__screen-ready-frame-time-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px;
  color: var(--semantic-color-text-primary);
  font-size: var(--casting-ready-time-chip-size);
  font-weight: var(--weight-light);
  line-height: 1;
}

.casting__screen-ready-frame-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 8px;
}

.casting__screen-ready-frame-spacer,
.casting__screen-ready-frame-actions {
  width: clamp(96px, 20.84vw, 200px);
}

.casting__screen-ready-frame-main-action {
  padding-bottom: 12px;
}

.casting__screen-ready-frame-pause-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5.2vw, 50px);
  height: clamp(40px, 5.2vw, 50px);
  border-radius: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(133.14deg, rgba(52, 52, 52, 0.6) 6.7%, rgba(20, 20, 20, 0.6) 92.77%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 58px 80px rgba(0, 0, 0, 0.26),
    0 34.15px 41.73px rgba(0, 0, 0, 0.19),
    0 17.54px 19.58px rgba(0, 0, 0, 0.15),
    0 7.05px 8.58px rgba(0, 0, 0, 0.11),
    0 1.58px 3.71px rgba(0, 0, 0, 0.07);
}

.casting__screen-ready-frame-pause-icon {
  width: 19.2px;
  height: 19.2px;
  display: block;
}

.casting__screen-ready-frame-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.1vw, 20px);
}

.casting__screen-ready-frame-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.casting__screen-ready-frame-action--cc {
  width: clamp(30px, 4.16vw, 40px);
  height: clamp(30px, 4.16vw, 40px);
}

.casting__screen-ready-frame-control-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.casting__screen-ready-frame-settings-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 4.16vw, 40px);
  height: clamp(30px, 4.16vw, 40px);
  border: 0.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 56px;
  background: linear-gradient(133.14deg, rgba(52, 52, 52, 0.1) 6.7%, rgba(20, 20, 20, 0.1) 92.77%);
}

.casting__screen-ready-frame-settings-icon {
  width: clamp(14px, 1.89vw, 18.18px);
  height: clamp(14px, 1.89vw, 18.18px);
  display: block;
}

@media (max-width: 760px) {
  .casting__screen-ready-frame-controls {
    padding: 0 18px 14px;
  }

  .casting__screen-ready-frame-video-title {
    width: min(100%, 280px);
    padding-bottom: 16px;
  }

  .casting__screen-ready-frame-main-action {
    padding-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .casting__screen-ready-frame-controls {
    padding: 0 12px 10px;
  }

  .casting__screen-ready-frame-video-title {
    width: min(100%, 210px);
    padding-bottom: 12px;
    font-size: var(--casting-ready-video-title-size);
    line-height: 1.35;
  }

  .casting__screen-ready-frame-time-row {
    padding-top: 6px;
  }

  .casting__screen-ready-frame-time-chip {
    min-width: 44px;
    padding: 3px 4px;
    font-size: var(--text-010);
  }

  .casting__screen-ready-frame-bottom {
    padding-top: 6px;
  }
}

.casting__screen-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
  transform: scale(0.985);
}

.casting__screen-player-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
  overflow: hidden;
  border: 0;
  background: #000000;
  box-shadow: none;
}

.casting__screen-player-poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2vw, 26px);
  background:
    radial-gradient(circle at 20% 12%, rgba(63, 38, 162, 0.42), transparent 28%),
    radial-gradient(circle at 80% 88%, rgba(22, 98, 166, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(13, 14, 20, 0.92), rgba(6, 7, 10, 0.98));
}

.casting__screen-player-glow {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.casting__screen-player-glow--left {
  top: -12%;
  left: -10%;
  background: rgba(66, 48, 178, 0.52);
}

.casting__screen-player-glow--right {
  right: -8%;
  bottom: -16%;
  background: rgba(24, 120, 214, 0.38);
}

.casting__screen-player-topbar,
.casting__screen-player-center,
.casting__screen-player-controls {
  position: relative;
  z-index: 1;
}

.casting__screen-player-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.casting__screen-player-app {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.casting__screen-player-app-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24a6ff, #0d73f1);
  box-shadow: 0 0 10px rgba(36, 166, 255, 0.55);
}

.casting__screen-player-app-label,
.casting__screen-player-cast {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-030);
  font-weight: var(--weight-medium);
  line-height: 1.2;
}

.casting__screen-player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 20px 0;
}

.casting__screen-player-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(68px, 7vw, 88px);
  height: clamp(68px, 7vw, 88px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.casting__screen-player-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #ffffff;
}

.casting__screen-player-copy {
  width: min(420px, 80%);
}

.casting__screen-player-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-030);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.casting__screen-player-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: var(--weight-semibold);
  line-height: 1.05;
  letter-spacing: var(--tracking-h3);
}

.casting__screen-player-body {
  margin: 10px 0 0;
  color: rgba(230, 230, 230, 0.56);
  font-size: var(--text-040);
  font-weight: var(--weight-light);
  line-height: 1.3;
}

.casting__screen-player-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casting__screen-player-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.casting__screen-player-progress-fill {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1ba7ff, #66d4ff);
}

.casting__screen-player-controlbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.casting__screen-player-controlgroup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.casting__screen-player-control {
  position: relative;
  display: inline-flex;
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.casting__screen-player-control::before,
.casting__screen-player-control::after {
  content: '';
  position: absolute;
}

.casting__screen-player-control--play::before {
  left: 4px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgba(255, 255, 255, 0.9);
}

.casting__screen-player-control--back::before,
.casting__screen-player-control--forward::before {
  top: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.casting__screen-player-control--back::before {
  left: 1px;
  border-right: 8px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-control--back::after {
  left: 9px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-control--forward::before {
  right: 1px;
  border-left: 8px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-control--forward::after {
  right: 9px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-control--cc::before {
  inset: 2px 0 2px 0;
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  border-radius: 4px;
}

.casting__screen-player-control--cc::after {
  left: 4px;
  top: 5px;
  width: 8px;
  height: 4px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.76);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-control--settings::before {
  inset: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.casting__screen-player-control--settings::after {
  left: 7px;
  top: 0;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: rotate(45deg);
}

.casting__screen-player-control--fullscreen::before {
  inset: 1px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.76);
  border-left: 1.5px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-control--fullscreen::after {
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.76);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.76);
}

.casting__screen-player-time {
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--text-030);
  font-weight: var(--weight-medium);
  line-height: 1.2;
}

.casting__downloads {
  width: 100%;
  margin-top: 80px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 320ms ease, transform 360ms ease;
}

.casting__downloads-copy {
  width: 560px;
  height: fit-content;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0px;
  opacity: 0;
  transform: translateY(16px) scale(0.992);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.casting__downloads-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: fit-content;
  height: fit-content;
  padding-bottom: 0;
  flex: 0 0 auto;
}

.casting__downloads-logo {
  display: block;
  width: 56px;
  height: fit-content;
  object-fit: contain;
}

.casting__downloads-tv {
  width: 55px;
  height: 38px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(128, 128, 128, 0.88), rgba(86, 86, 86, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.casting__downloads-base {
  width: 31px;
  height: 4px;
  margin-top: 5px;
  border-radius: 999px;
  background: rgba(124, 124, 124, 0.72);
}

.casting__downloads-title {
  margin: 0;
  margin-top: 16px;
  padding: 0 0 0.1em;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 17.105%, #b4b4b4 78.947%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: var(--weight-semibold);
  line-height: 1.12;
  letter-spacing: var(--tracking-h3);
}

.casting__downloads-body {
  margin: 12px 0 0;
  width: 100%;
  color: rgba(230, 230, 230, 0.5);
  font-size: var(--text-050);
  font-weight: var(--weight-light);
  line-height: 1.2;
  text-align: left;
}

.casting__downloads-actions {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.casting__screen-ready-column {
  display: grid;
  column-gap: 0px;
  row-gap: 12px;
}

.casting__screen-ready-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 120ms ease-out,
    background-color 120ms ease-out,
    box-shadow 120ms ease-out;
}

.casting__screen-ready-button:hover,
.casting__screen-ready-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.1);
}

.casting__screen-ready-button-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.casting__screen-ready-button-icon {
  width: 28px;
  height: 28px;
  opacity: 0.96;
  object-fit: contain;
}

.casting__screen-ready-button-icon-wrap .casting__screen-ready-button-icon[src*="amazon-logo"] {
  width: 32px;
  height: 32px;
}

.casting__screen-ready-button-icon--brand {
  filter: brightness(0) invert(1);
}

.casting__screen-ready-button-icon[src*="google-play-logo"] {
  width: 24px;
  height: 24px;
}

.casting__screen-ready-button-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.casting__screen-ready-button-title {
  color: rgba(255, 255, 255, 0.96);
  font-size: var(--text-050);
  font-weight: var(--weight-medium);
  line-height: 1.2;
}

.casting__screen-ready-button-meta {
  color: rgba(218, 227, 238, 0.56);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.2;
}

.casting__screen.is-demo-visible .casting__screen-copy,
.casting__screen.is-demo-visible .casting__screen-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.casting__screen.is-demo-visible .casting__screen-demo {
  opacity: 1;
  transform: scale(1);
}

.casting__screen.is-demo-visible .casting__screen-demo-link {
  animation: none;
}

.casting__screen.is-demo-visible .casting__screen-demo-dot {
  animation: casting-demo-dot-pulse 1.15s linear infinite;
}

.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(1) { animation-delay: 0.8s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(2) { animation-delay: 0.72s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(3) { animation-delay: 0.64s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(4) { animation-delay: 0.56s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(5) { animation-delay: 0.48s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(6) { animation-delay: 0.4s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(7) { animation-delay: 0.32s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(8) { animation-delay: 0.24s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(9) { animation-delay: 0.16s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(10) { animation-delay: 0.08s; }
.casting__screen.is-demo-visible .casting__screen-demo-dot:nth-child(11) { animation-delay: 0s; }

.casting__screen.is-connected-visible .casting__screen-copy,
.casting__screen.is-connected-visible .casting__screen-cta,
.casting__screen.is-connected-visible .casting__screen-demo,
.casting__screen.is-connected-visible .casting__screen-player {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.985);
}

.casting__screen.is-connected-visible .casting__screen-connected {
  opacity: 1;
  transform: scale(1);
}

.casting__screen.is-ready-visible .casting__screen-copy,
.casting__screen.is-ready-visible .casting__screen-cta,
.casting__screen.is-ready-visible .casting__screen-demo,
.casting__screen.is-ready-visible .casting__screen-connected {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.985);
}

.casting__screen.is-ready-visible .casting__screen-player {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.casting__visual.is-ready-visible .casting__downloads {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 140ms;
  pointer-events: auto;
}

.casting__visual.is-ready-visible .casting__downloads-copy {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 220ms;
}

.casting__visual.is-ready-visible .casting__downloads-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 300ms;
}

.casting__visual.is-ready-visible .casting__screen-ready-button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger only opacity/transform; border/background/box-shadow stay delay 0 so hovers respond immediately */
.casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(1) .casting__screen-ready-button:nth-of-type(1) { transition-delay: 400ms, 400ms, 0s, 0s, 0s; }
.casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(1) .casting__screen-ready-button:nth-of-type(2) { transition-delay: 470ms, 470ms, 0s, 0s, 0s; }
.casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(1) .casting__screen-ready-button:nth-of-type(3) { transition-delay: 540ms, 540ms, 0s, 0s, 0s; }
.casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(2) .casting__screen-ready-button:nth-of-type(1) { transition-delay: 440ms, 440ms, 0s, 0s, 0s; }
.casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(2) .casting__screen-ready-button:nth-of-type(2) { transition-delay: 510ms, 510ms, 0s, 0s, 0s; }
.casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(2) .casting__screen-ready-button:nth-of-type(3) { transition-delay: 580ms, 580ms, 0s, 0s, 0s; }

@media (max-width: 760px) {
  .casting__downloads {
    padding: 0;
    border-radius: 0;
  }

  .casting__downloads-actions {
    width: min(100%, 92%);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(1) .casting__screen-ready-button:nth-of-type(1) { transition-delay: 400ms, 400ms, 0s, 0s, 0s; }
  .casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(1) .casting__screen-ready-button:nth-of-type(2) { transition-delay: 460ms, 460ms, 0s, 0s, 0s; }
  .casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(1) .casting__screen-ready-button:nth-of-type(3) { transition-delay: 520ms, 520ms, 0s, 0s, 0s; }
  .casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(2) .casting__screen-ready-button:nth-of-type(1) { transition-delay: 580ms, 580ms, 0s, 0s, 0s; }
  .casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(2) .casting__screen-ready-button:nth-of-type(2) { transition-delay: 640ms, 640ms, 0s, 0s, 0s; }
  .casting__visual.is-ready-visible .casting__screen-ready-column:nth-child(2) .casting__screen-ready-button:nth-of-type(3) { transition-delay: 700ms, 700ms, 0s, 0s, 0s; }
}

@media (prefers-reduced-motion: reduce) {
  .casting__downloads,
  .casting__downloads-copy,
  .casting__downloads-actions,
  .casting__screen-ready-button {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.casting__secondary {
  margin: 40px 0 0;
  width: 640px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 38%, transparent);
  font-size: var(--text-040);
  font-weight: var(--weight-regular);
  line-height: var(--leading-relaxed);
}

.casting__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--semantic-color-text-primary);
  opacity: 0.7;
  font-size: var(--text-050);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.casting__cta:hover {
  opacity: 1;
}

@keyframes casting-demo-dot-pulse {
  0%, 100% {
    opacity: 0.18;
  }

  35% {
    opacity: 1;
  }

  60% {
    opacity: 0.38;
  }
}

/* Casting: hide TV frame, mobile layout at ≤1024px */
@media (max-width: 1024px) and (min-width: 761px) {
  .casting {
    padding-top: 120px;
    padding-bottom: 0px;
  }

  .casting__content {
    padding-inline: 0px;
  }

  .casting__visual {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .casting__visual-image {
    display: none;
  }

  .casting__visual-media {
    width: 100%;
    max-width: none;
  }

  .casting__screen {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0;
    padding: 48px 24px 80px;
    background: none;
  }

  .casting__screen::before,
  .casting__screen::after {
    display: none;
  }

  .casting__screen-copy {
    max-width: 480px;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .casting__screen-logo {
    width: 64px;
    height: auto;
  }

  .casting__screen-title {
    font-size: clamp(22px, 5vw, 32px);
    line-height: var(--leading-snug);
    margin-top: 16px;
  }

  .casting__screen-body {
    font-size: var(--text-050);
    margin-top: 12px;
    line-height: var(--leading-relaxed);
    width: 100%;
  }

  .casting__screen-cta {
    margin-top: 28px;
    width: min(300px, 80%);
    min-width: 160px;
  }

  .casting__secondary {
    display: none;
  }

  .casting__downloads {
    display: none;
  }
}

/* ================================
   Section 6: Comparison
   ================================ */

.comparison {
  z-index: 32;
  padding: 140px 0 0;
}

.comparison .page-section__inner {
  align-items: flex-start;
  gap: 0;
  padding-inline: 20px;
}

.comparison__intro {
  width: 100%;
}

#comparison-title {
  width: 100%;
  margin-top: 8px;
  letter-spacing: 0;
}

.comparison__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 48px 0 48px;
}

.comparison__table-card {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
  min-width: 580px;
}

.comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* ── Header row ── */

.comparison__table thead tr {
  /* borders handled at th level */
}

.comparison__table th {
  padding: 0 20px 20px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 76%, transparent);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0;
  vertical-align: bottom;
  border-bottom: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
}

.comparison__table th:first-child {
  width: 280px;
  text-align: left;
  padding: 0 24px 20px 0;
}

.comparison__table th.comparison__th--highlight {
  padding-top: 20px;
}

.comparison__th-name {
  display: block;
}

.comparison__th--highlight .comparison__th-name {
  color: #fff;
  font-weight: var(--weight-medium);
  font-size: 15px;
}

.comparison__th-logo {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
}

/* ── Body rows ── */

.comparison__table tbody tr {
  /* borders handled at td level */
}

.comparison__table tbody tr:last-child {
  /* handled at td level */
}

.comparison__table td {
  height: 64px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: var(--weight-regular);
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 7%, transparent);
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Feature name column ── */

.comparison__table td.comparison__feature-cell {
  text-align: left;
  padding: 14px 24px 14px 0;
  height: auto;
  vertical-align: middle;
}

.comparison__feature-name {
  display: block;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 88%, transparent);
  font-size: var(--text-050);
  font-weight: var(--weight-light);
  line-height: 1.3;
}

.comparison__feature-sub {
  display: none;
}

/* ── Grayjay highlight column ── */

.comparison__th--highlight {
  background: color-mix(in srgb, var(--color-blue-070) 30%, transparent);
  position: relative;
  border-radius: 12px 12px 0 0;
  padding-bottom: 24px;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(120, 180, 255, 0.35);
  border-left: 1px solid rgba(120, 180, 255, 0.35);
  border-right: 1px solid rgba(120, 180, 255, 0.35);
}

.comparison__th--highlight::before {
  display: none;
}

.comparison__cell--highlight {
  background: color-mix(in srgb, var(--color-blue-070) 30%, transparent);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(120, 180, 255, 0.35);
  border-right: 1px solid rgba(120, 180, 255, 0.35);
}

.comparison__cell--highlight::before {
  display: none;
}

.comparison__table tbody tr:last-child .comparison__cell--highlight {
  border-bottom: 1px solid rgba(120, 180, 255, 0.35);
  border-radius: 0 0 12px 12px;
}

.comparison__table tbody tr:last-child .comparison__cell--highlight::before {
  display: none;
}

/* ── Icons ── */

.comparison__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--semantic-color-text-accent);
  line-height: 1;
}

.comparison__cell--highlight .comparison__check {
  color: #fff;
}

.comparison__check svg {
  display: block;
  flex-shrink: 0;
}

.comparison__check--dim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 72%, transparent);
}

.comparison__check--dim svg {
  display: block;
  flex-shrink: 0;
}

/* ── Em-dash (unavailable) ── */

.comparison__cross {
  display: inline-block;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 52%, transparent);
  font-size: 18px;
  line-height: 1;
}

/* ── Text notes ── */

.comparison__note {
  font-size: 13px;
  font-weight: var(--weight-medium);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 74%, transparent);
  white-space: nowrap;
}

.comparison__note--muted {
  color: color-mix(in srgb, var(--semantic-color-text-primary) 62%, transparent);
}

@media (max-width: 760px) {
  .comparison__table th:first-child {
    width: 170px;
  }

  .comparison__table th {
    padding: 0 14px 18px;
    font-size: 13px;
  }

  .comparison__table td {
    padding: 0 14px;
  }

  .comparison__table td.comparison__feature-cell {
    padding-right: 14px;
  }

  .comparison__feature-name {
    font-size: 13px;
  }

  .comparison__feature-sub {
    font-size: 11px;
  }
}

/* ================================
   Section 7: Privacy
   ================================ */

.privacy {
  --section-gap: 20px;
  z-index: 32;
  padding: 100px 0 100px;
  background-color: rgba(255, 255, 255, 0.01);
}

.privacy .page-section__inner {
  align-items: flex-start;
  padding-inline: 20px;
}

.privacy__content {
  max-width: 1144px;
}

#privacy-title {
  width: 640px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.privacy__proof {
  width: 150%;
  max-width: none;
  overflow: visible;
  margin-top: 32px;
  margin-left: -25%;
  height: fit-content;
}

.privacy__proof .app-proof__frame {
  overflow: visible;
  height: 762px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.privacy__proof .app-proof__image {
  width: 100%;
  max-width: none;
  height: 761px;
}

.privacy__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.privacy__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px;
}

.privacy__subhead {
  margin: 28px 0 0;
  font-size: var(--text-060);
  font-weight: var(--weight-medium);
  color: var(--semantic-color-text-primary);
  line-height: var(--leading-normal);
  letter-spacing: 0px;
}

.privacy__card .privacy__subhead {
  margin-top: 0;
}

.privacy__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy__card .privacy__list {
  margin-top: 0;
}

.privacy__list li {
  position: relative;
  padding-left: 20px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 61%, transparent);
  font-size: var(--text-050);
  font-weight: var(--weight-light);
  line-height: var(--leading-body);
}

.privacy__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 28%, transparent);
}

.privacy__subhead--telemetry {
  margin-top: 0;
}

.privacy__telemetry-body {
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 50%, transparent);
  font-size: var(--text-050);
  font-weight: var(--weight-light);
  line-height: var(--leading-body);
}

.privacy__card .privacy__telemetry-body {
  margin-top: 0;
}

/* ================================
   Section 8: Mission / Built by FUTO
   ================================ */

.mission {
  z-index: 32;
  padding: var(--space-section-top) 0 140px;
  padding-top: 80px;
  padding-bottom: 100px;
  background: unset;
  background-color: unset;
}

.mission .page-section__inner {
  align-items: center;
  padding-inline: 20px;
}

.mission__content {
  max-width: 1144px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mission__title {
  margin: 0;
  text-align: center;
}

#mission-title {
  width: min(820px, 100%);
}

.mission__body {
  margin: 16px 0 0;
  text-align: center;
  width: min(820px, 100%);
  font-weight: 400;
}

.mission__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: 16px;
  column-gap: 16px;
  width: 100%;
}

.mission__list-item {
  grid-column: span 6;
  min-height: 136px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mission__list-item:nth-child(1),
.mission__list-item:nth-child(5) {
  grid-column: span 7;
}

.mission__list-item:nth-child(2),
.mission__list-item:nth-child(4) {
  grid-column: span 5;
}

.mission__list-item:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 124px;
}

.mission__list-title {
  margin: 0;
  font-size: var(--text-050);
  font-weight: var(--weight-semibold);
  color: var(--semantic-color-text-primary);
  line-height: 1.28;
}

.mission__list-copy {
  margin: 0;
  font-size: var(--text-050);
  font-weight: var(--weight-regular);
  color: var(--semantic-color-text-copy);
  line-height: var(--leading-body);
}

.mission__list-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mission__list-links a {
  color: var(--semantic-color-text-link);
  text-decoration: none;
  transition: color 120ms ease-in;
}

.mission__list-links a:hover {
  color: var(--semantic-color-text-brand-strong);
}

.mission__closing {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: var(--weight-extralight);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 82%, transparent);
  line-height: var(--leading-relaxed);
  width: 100%;
  text-align: center;
}

/* ================================
   Section 9: Numbers / Stats
   ================================ */

.numbers {
  --section-gap: 12px;
  position: relative;
  z-index: 32;
  padding: 100px 0 120px;
  background: unset;
  height: fit-content;
  overflow: visible;
}

.numbers .page-section__inner {
  position: relative;
  z-index: 2;
  gap: 0;
  padding-inline: 0;
}

.numbers__blob,
.footer-cta__blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(96px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  mix-blend-mode: plus-lighter;
}

.numbers__blob--left {
  width: min(38vw, 520px);
  aspect-ratio: 1 / 1;
  left: 30%;
  top: 42%;
  transform: translateY(calc(-100% - 250px));
  background: radial-gradient(
    circle at 50% 50%,
    rgba(97, 197, 255, 0.24) 0%,
    rgba(52, 136, 219, 0.18) 36%,
    rgba(17, 50, 99, 0.08) 68%,
    rgba(0, 0, 0, 0) 86%
  );
}

.numbers__blob--right {
  width: min(44vw, 620px);
  aspect-ratio: 1 / 1;
  right: 22%;
  top: 18%;
  transform: translateY(-100%);
  opacity: 0.78;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(82, 60, 221, 0.26) 0%,
    rgba(48, 31, 160, 0.18) 34%,
    rgba(20, 13, 82, 0.08) 68%,
    rgba(0, 0, 0, 0) 86%
  );
}

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

.numbers__intro {
  text-align: center;
  margin-bottom: 0;
  height: fit-content;
}

.numbers__logo {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  pointer-events: none;
  user-select: none;
}

.numbers__title {
  margin: 0 0 10px;
}

.numbers__subtitle {
  margin: 0;
}

.numbers__intro .section__desc.numbers__subtitle {
  font-weight: 200;
  color: rgba(248, 248, 248, 0.75);
}

.numbers__grid {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 40px 0 0;
  padding: 0;
}

.numbers__divider {
  width: 1px;
  flex-shrink: 0;
  background: var(--semantic-color-bg-surface-subtle-hi);
  margin: 0 14px;
}

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

.numbers__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 82%, transparent);
  background: color-mix(in srgb, var(--semantic-color-text-primary) 5%, transparent);
  border: 0;
  border-image: none;
  box-shadow: none;
}

.numbers__icon svg {
  width: 40px;
  height: 32px;
  display: block;
}

.numbers__value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--numbers-value-size);
  font-weight: 700;
  background: linear-gradient(90deg, #01D6E6 0%, #0182E7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}

.numbers__label {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--semantic-color-text-primary);
  line-height: var(--leading-caption);
}

.numbers__source {
  display: block;
  margin-top: 4px;
  font-size: var(--text-040);
  font-weight: 400;
  color: var(--semantic-color-text-caption);
  text-decoration: none;
  transition: color 120ms ease;
}

.numbers__source:hover {
  color: var(--semantic-color-text-copy-strong);
  text-decoration: underline;
}

.numbers__availability {
  margin: 48px 0 0;
  font-size: var(--text-040);
  font-weight: 300;
  color: var(--semantic-color-text-caption);
  text-align: center;
  line-height: var(--leading-relaxed);
}

/* ================================
   Section 10: FAQ
   ================================ */

.faq {
  z-index: 32;
  padding: var(--space-section-top) 0 0;
}

#faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 64px;
}

@media (min-width: 1025px) {
  #faq {
    padding-top: 100px;
  }
}

.faq .page-section__inner {
  align-items: center;
  gap: 0px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

#faq-title {
  letter-spacing: 0px;
}

.faq__tabs {
  display: flex;
  gap: 2px;
  margin-top: 40px;
  padding: 3px;
  height: fit-content;
  background: color-mix(in srgb, var(--semantic-color-text-primary) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 8%, transparent);
  border-radius: 8px;
  width: 100%;
  max-width: 1144px;
}

.faq__tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 14px;
  background: none;
  border: none;
  border-radius: 6px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 40%, transparent);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
  letter-spacing: 0.01em;
}

#faq-tab-general {
  border-radius: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.faq__tab:hover {
  color: color-mix(in srgb, var(--semantic-color-text-primary) 70%, transparent);
}

.faq__tab--active,
.faq__tab[aria-selected="true"] {
  background: color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
  color: var(--semantic-color-text-primary);
}

.faq__panels {
  position: relative;
  width: 100%;
  max-width: 1144px;
  margin-top: 40px;
}

.faq__panel {
  width: 100%;
  max-width: 1144px;
  margin-top: 0;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: color-mix(in srgb, var(--semantic-color-text-primary) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 9%, transparent);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 8%, transparent);
  overflow: hidden;
}

.faq__item:last-child {
  border-bottom: 0;
}

.faq__item summary.faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 400;
  color: var(--semantic-color-text-primary);
  cursor: pointer;
  user-select: none;
}

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

.faq__item summary.faq__question::marker {
  display: none;
  content: '';
}

.faq__item summary.faq__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: var(--text-070);
  font-weight: 300;
  line-height: 1;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 45%, transparent);
  transition: transform 240ms ease, color 120ms ease;
}

.faq__item[open] > summary.faq__question::after {
  transform: rotate(45deg);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 70%, transparent);
}

.faq__item[open] {
  border-bottom-color: color-mix(in srgb, var(--semantic-color-text-primary) 16%, transparent);
}

.faq__answer {
  overflow: hidden;
  transition: height 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding: 0 24px 22px;
}

.faq__answer p {
  margin: 0 0 10px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 55%, transparent);
  font-size: var(--text-050);
  font-weight: var(--weight-light);
  line-height: var(--leading-body);
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__answer ul,
.faq__answer ol {
  margin: 8px 0 0;
  padding-left: 20px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 55%, transparent);
  font-size: var(--text-040);
  font-weight: var(--weight-light);
  line-height: var(--leading-body);
}

.faq__answer li {
  margin-bottom: 4px;
}

.faq__answer code {
  font-family: var(--font-sans);
  font-size: 0.9em;
  background: color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
  border-radius: 12px;
  padding: 1px 5px;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 75%, transparent);
}

.faq__answer a {
  color: var(--semantic-color-text-link);
  text-decoration: none;
  transition: color 120ms ease-in;
}

.faq__answer a:hover {
  color: var(--semantic-color-text-brand-strong);
}

/* ── FAQ — responsive ────────────────────────────────────── */

@media (max-width: 760px) {
  .faq__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .faq__tabs::-webkit-scrollbar { display: none; }
  .faq__tab { flex: 0 0 auto; }
}

@media (max-width: 600px) {
  .faq__tab {
    font-size: var(--text-030);
    height: 42px;
    padding: 0 12px;
  }
}

/* ─────────────────────────────────────────────────────────── */

/* ================================
   Section 11: FUTO Products
   ================================ */

.futo-products {
  z-index: 32;
  padding: 100px 0 100px;
}

@media (max-width: 1024px) {
  .futo-products {
    padding: var(--space-section-top) 0 100px;
  }
}

.futo-products .page-section__inner {
  align-items: center;
  gap: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.futo-products__header {
  text-align: center;
  max-width: 1144px;
}

#futo-products-title {
  letter-spacing: 0;
}

.futo-products__header .section__desc {
  margin-top: 16px;
}

.futo-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 16px;
  width: 100%;
  padding: 40px 0 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  gap: 24px;
  min-height: 211px;
  padding: 24px;
  text-decoration: none;
}

.product-card__logo-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.product-card__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.product-card__logo--keyboard {
  width: 42px;
  max-height: 29.647px;
}

.product-card__logo--voice {
  width: 42px;
  max-height: 32.516px;
}

.product-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  flex: 1;
}

.product-card__name {
  font-size: var(--text-070);
  font-weight: var(--weight-semibold);
  color: var(--semantic-color-text-primary);
  line-height: 1.1;
}

.product-card__desc {
  font-size: var(--text-040);
  font-weight: var(--weight-regular);
  color: var(--semantic-color-text-copy);
  line-height: 1.2;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-top: auto;
  padding-top: 16px;
  font-size: var(--text-050);
  font-weight: var(--weight-medium);
  color: var(--semantic-color-text-link);
}

.futo-products__all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 32px;
  padding: 0;
  background: none;
  border: none;
  font-size: var(--text-050);
  font-weight: 700;
  line-height: normal;
  color: var(--semantic-color-text-brand);
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 150ms ease;
}

.futo-products__all:hover {
  opacity: 0.8;
}

@media (max-width: 980px) {
  .futo-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 16px;
  }
}

@media (max-width: 680px) {
  .futo-products__grid {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 16px;
  }

  .product-card {
    min-height: auto;
  }
}

/* ================================
   Section 12: Footer CTA
   ================================ */

#download {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.68) 100%),
    url("./imgs/download-section-bg.svg") center / cover no-repeat,
    rgba(0, 0, 0, 1);
  padding-top: 80px;
  padding-bottom: 100px;
}

#download::before,
#download::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 1;
}

#download::before {
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12) 18%, rgba(255, 255, 255, 0.12) 82%, rgba(255, 255, 255, 0));
}

#download::after {
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0.08) 82%, rgba(255, 255, 255, 0));
}

#download-crt-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
  will-change: transform;
}

.footer-cta {
  position: relative;
  z-index: 32;
  padding: 100px 0 100px;
  overflow: visible;
}

.footer-cta .page-section__inner {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 0;
  padding-inline: 20px;
}

.footer-cta__blob--left {
  width: min(42vw, 600px);
  aspect-ratio: 1 / 1;
  left: 24%;
  top: 28%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(94, 201, 255, 0.2) 0%,
    rgba(53, 143, 224, 0.14) 38%,
    rgba(14, 42, 92, 0.06) 70%,
    rgba(0, 0, 0, 0) 86%
  );
}

.footer-cta__blob--right {
  width: min(50vw, 720px);
  aspect-ratio: 1 / 1;
  right: 18%;
  top: 18%;
  opacity: 0.8;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(64, 47, 214, 0.22) 0%,
    rgba(39, 27, 154, 0.16) 34%,
    rgba(18, 14, 74, 0.06) 68%,
    rgba(0, 0, 0, 0) 86%
  );
}

.footer-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  height: fit-content;
}

.footer-cta__title {
  margin: 0;
  font-size: 36px;
}

.footer-cta__sub {
  margin: 0;
  margin-top: 8px;
  padding-top: 0;
}

.footer-cta__visual {
  width: min(100%, 1500px);
  margin: 24px auto 0px;
  padding-inline: 24px;
  min-height: auto;
  height: fit-content;
}

.footer-cta__devices {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.footer-quote {
  width: 100%;
  margin-top: 80px;
  padding: 48px 0;
  border-top: 1px solid var(--semantic-color-border-hairline);
  display: flex;
  justify-content: center;
}

.footer-quote blockquote {
  margin: 0 auto;
  max-width: 1144px;
  text-align: center;
}

.footer-quote blockquote p {
  margin: 0;
  font-style: italic;
  font-size: var(--text-040);
  font-weight: var(--weight-light);
  line-height: var(--leading-body);
  color: var(--semantic-color-text-caption);
}

.footer-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: var(--text-030);
  color: var(--semantic-color-text-faint);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background-image: url("./imgs/noise-tex.png");
  background-repeat: repeat;
  background-size: 600px 600px;
  opacity: 0.24;
  mix-blend-mode: soft-light;
  filter: contrast(115%) brightness(92%);
}

/* ================================
   Plugins / Sources Marquee
   ================================ */

.plugins {
  padding: var(--space-section-top) 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 34;
}

#platforms {
  color: rgba(249, 249, 249, 0);
  background: unset;
  background-color: unset;
  padding-top: 140px;
  padding-bottom: 100px;
}

.plugins .page-section__inner {
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  padding-left: 0;
  padding-right: 0;
}

.plugins__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 100%;
}

.plugins__intro {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  width: 100%;
  padding-inline: 0;
}

.plugins .section__title {
  margin-top: 16px;
}

.eyebrow--plugins .eyebrow__icon {
  background-color: currentColor;
  -webkit-mask-image: url("imgs/plugins-eyebrow-icon.svg");
  mask-image: url("imgs/plugins-eyebrow-icon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.plugins__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-top: 32px;
  padding: 0;
  background: none;
  border: none;
  font-size: var(--text-050);
  font-weight: 700;
  line-height: normal;
  color: var(--semantic-color-text-brand);
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 150ms ease;
}

.plugins__cta:hover {
  opacity: 0.8;
}

.plugins__cta img {
  flex-shrink: 0;
}

.plugins__marquees {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card-surface-bg);
}

.plugins__marquee {
  overflow: hidden;
}


.plugins__track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.plugins__set {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.plugins__track--fwd {
  animation: plugins-fwd 107.25s linear infinite;
}

.plugins__track--rev {
  animation: plugins-fwd 139.425s linear infinite;
  animation-delay: -69.7125s;
  margin-left: 184px;
}

@keyframes plugins-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 6px)); }
}

.plugins__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 368px;
  height: 152px;
  padding: 20px 24px;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.plugins__card--link {
  text-decoration: none;
  color: inherit;
}

.plugins__card-arrow {
  display: none;
}

.plugins__card:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--semantic-color-text-brand) 65%, transparent);
  outline-offset: 2px;
}

.plugins__card img {
  width: 160px;
  height: 44px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.08) contrast(1.1);
  transform: translate(var(--plugins-logo-offset-x, 0px), var(--plugins-logo-offset-y, 0px));
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.plugins__card img[src*="Property%201%3D008"] {
  --plugins-logo-offset-x: 6px;
}

.plugins__card img[src*="Property%201%3D020"] { /* bilibili */
  --plugins-logo-offset-x: 10px;
}

.plugins__card img[src*="Property%201%3D004"] { /* Odysee */
  --plugins-logo-offset-x: 8px;
}

.plugins__card img[src*="Property%201%3D002"] { /* Spotify */
  --plugins-logo-offset-x: 6px;
}

.plugins__card img[src*="Property%201%3D003"] { /* Rumble */
  --plugins-logo-offset-x: 8px;
}

.plugins__card img[src*="Property%201%3D009"] { /* PeerTube */
  --plugins-logo-offset-x: 10px;
}

.plugins__card img[src*="Property%201%3D016"] { /* Curiosity Stream */
  --plugins-logo-offset-x: 7px;
}

.plugins__card img[src*="Property%201%3D015"] { /* Dailymotion */
  --plugins-logo-offset-x: 6px;
}

.plugins__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 20px 20px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  background: transparent;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.plugins__hover-title {
  margin: 0;
  font-size: var(--text-060);
  font-weight: 700;
  line-height: 1.2;
  color: var(--semantic-color-text-primary);
}

.plugins__hover-desc {
  margin: 0;
  font-size: var(--text-040);
  line-height: 1.35;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 53%, transparent);
}

.plugins__hover-cta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-040);
  font-weight: 700;
  line-height: 1.2;
  color: var(--semantic-color-text-link);
}

.plugins__hover-cta::after {
  content: "→";
  color: var(--semantic-color-text-link);
}

.plugins__card[data-href] {
  cursor: pointer;
}

.plugins__card:hover,
.plugins__card:focus-within {
  border-color: color-mix(in srgb, var(--semantic-color-text-primary) 16%, transparent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.plugins__card:hover img,
.plugins__card:focus-within img {
  opacity: 0;
  transform: translate(var(--plugins-logo-offset-x, 0px), var(--plugins-logo-offset-y, 0px)) translateY(-6px) scale(0.985);
}

.plugins__card:hover .plugins__hover,
.plugins__card:focus-within .plugins__hover {
  opacity: 1;
  transform: translateY(0);
  background: var(--card-surface-hover-fill);
}

.eyebrow--features .eyebrow__icon {
  background-color: currentColor;
  -webkit-mask-image: url("imgs/e-icon-sources.svg");
  mask-image: url("imgs/e-icon-sources.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ================================
   Feature Highlights
   ================================ */

.feature-highlights {
  padding: 80px 0 80px;
  background-color: #000;
}

.feature-highlights .page-section__inner {
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}

.feature-highlights__intro {
  width: 100%;
  max-width: 760px;
}

.feature-highlights__tabs {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0px;
  scrollbar-width: none;
  width: 100%;
}

.feature-highlights__tabs::-webkit-scrollbar {
  display: none;
}

.feature-highlights__tab {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: max-content;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 12%, transparent);
  background: transparent;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 62%, transparent);
  font-size: var(--text-050);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease;
}

.feature-highlights__tab:hover {
  color: var(--semantic-color-text-primary);
}

.feature-highlights__tab--active {
  color: var(--semantic-color-text-primary);
  border-color: var(--semantic-color-text-brand);
}

.feature-highlights__shell {
  margin-top: 0px;
  width: 100%;
  min-height: 0;
  overflow: clip;
}

.feature-highlights__panel {
  width: 100%;
  min-height: 0;
  overflow: clip;
}

.feature-highlights__caption {
  margin: 16px 0 0;
  color: color-mix(in srgb, var(--semantic-color-text-primary) 78%, transparent);
  font-size: var(--text-040);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.feature-highlights__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.74);
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 12%, transparent);
  color: var(--semantic-color-text-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-highlights__frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-highlights__mockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1532px;
  max-width: none;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  margin-top: 16px;
}

.feature-highlights__image {
  display: block;
  width: 110%;
  max-width: none;
  height: auto;
  margin-left: -5%;
  user-select: none;
  pointer-events: none;
}

.feature-highlights__panel,
.feature-highlights__frame,
.feature-highlights__mockup {
  overflow: visible;
}

.feature-highlights__shell,
.feature-highlights__shell .feature-highlights__panel {
  overflow: visible;
}

.feature-highlights__image--native {
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.feature-highlights__device-frame {
  width: 100%;
}

.feature-highlights__device-frame--phone {
  z-index: 2;
}

.feature-highlights__cover-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

#feature-panel-privacy .feature-highlights__cover-image {
  width: calc(100% + 8px);
  max-width: none;
  margin-left: -4px;
}

.feature-highlights__service-pills,
.feature-highlights__privacy-flags,
.feature-highlights__import-flow {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 48px);
}

.feature-highlights__service-pills span,
.feature-highlights__privacy-flags span,
.feature-highlights__import-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
  background: rgba(11, 11, 14, 0.7);
  color: var(--semantic-color-text-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-highlights__plugin-grid {
  position: absolute;
  top: 94px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-highlights__plugin-chip {
  min-height: 72px;
  min-width: 120px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 10%, transparent);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-highlights__plugin-chip img {
  width: min(132px, 100%);
  height: 34px;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.08) contrast(1.05);
}

.feature-highlights__import-flow {
  align-items: center;
}

.feature-highlights__import-arrow {
  color: var(--semantic-color-text-brand);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.feature-highlights__cast-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.78);
  border: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 12%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-highlights__cast-badge img {
  width: 24px;
  height: 24px;
}

.feature-highlights__cast-badge span {
  color: var(--semantic-color-text-primary);
  font-size: 14px;
  font-weight: 700;
}

.app-proof__frame {
  width: 100%;
  overflow: hidden;
}

.app-proof__image {
  display: block;
  width: min(100%, 1320px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

/* Homepage card surface unification */
.how-it-works-card,
.download-card,
.faq__list,
.privacy__card,
.plugins__card,
.source-card,
.plugins-page__card,
.product-card,
.mission__list-item {
  background: var(--card-surface-bg);
  border: var(--card-surface-border);
  border-radius: var(--card-surface-radius);
  box-shadow: var(--card-surface-shadow);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  transition: border-color 140ms ease;
}

.plugins__card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background-color: rgba(14, 14, 15, 1);
  box-shadow: none;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.01);
}

.privacy__card {
  box-shadow: none;
}

.download-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(39px);
  -webkit-backdrop-filter: blur(39px);
}

.how-it-works-card:hover,
.faq__list:hover,
.privacy__card:hover,
.plugins__card:hover,
.plugins__card:focus-within,
.source-card:hover,
.product-card:hover {
  border-color: var(--card-surface-hover-border);
}

.mission__list-item:hover {
  border-color: var(--card-surface-hover-border);
}

/* Scroll reveal */
html.reveal-animations-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-animations-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.reveal-animations-ready .reveal--soft {
  transform: translate3d(0, 18px, 0) scale(0.992);
}

html.reveal-animations-ready .reveal--section {
  transform: translate3d(0, 36px, 0) scale(0.982);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-animations-ready .reveal,
  html.reveal-animations-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   Section padding — apply 20px inline at ≤1024px.
   Keeps content sections off the screen edges while leaving the
   supported-platform marquee/cards full-bleed.
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-section:not(.plugins) > .page-section__inner {
    padding-inline: 20px;
  }

  .plugins__header {
    padding-inline: 20px;
  }
}

@media (max-width: 760px) {
  .privacy__proof {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }

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

  .mission__list-item,
  .mission__list-item:nth-child(1),
  .mission__list-item:nth-child(2),
  .mission__list-item:nth-child(3),
  .mission__list-item:nth-child(4),
  .mission__list-item:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .mission__list-item {
    padding: 24px;
  }

  .privacy__cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 64px;
  }

  .privacy__card {
    padding: 24px;
  }

  .plugins__header {
    padding-inline: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .numbers__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .numbers__icon svg {
    width: 20px;
    height: 20px;
  }

  .plugins__card {
    width: 154px;
    height: 77px;
    padding: 14px 17px;
  }

  .plugins__card img {
    width: 112px;
    height: 31px;
  }

  .plugins__hover {
    padding: 14px 16px;
    gap: 6px;
  }

  .plugins__hover-title {
    font-size: var(--text-040);
  }

  .plugins__hover-desc,
  .plugins__hover-cta {
    font-size: 11px;
  }
}

/* ================================
   Plugins Page
   ================================ */

.plugins-page {
  margin: 0;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(39, 118, 214, 0.16), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(63, 38, 162, 0.18), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(22, 98, 166, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.96) 0%, rgba(5, 6, 10, 1) 100%);
  color: var(--semantic-color-text-primary);
}

.plugins-page::before,
.plugins-page::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(72px);
  opacity: 0.8;
}

.plugins-page::before {
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  top: 120px;
  left: -140px;
  background: radial-gradient(circle at center, rgba(72, 190, 255, 0.18), rgba(0, 0, 0, 0) 72%);
}

.plugins-page::after {
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  right: -180px;
  bottom: 8%;
  background: radial-gradient(circle at center, rgba(71, 49, 214, 0.2), rgba(0, 0, 0, 0) 74%);
}

.plugins-page__header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 4, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plugins-page__header-inner {
  width: min(1144px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plugins-page__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.plugins-page__brand-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.plugins-page__brand-name {
  color: var(--semantic-color-text-primary);
  font-size: var(--text-060);
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.plugins-page__links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.plugins-page__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 14px;
  color: var(--semantic-color-text-primary);
  text-decoration: none;
  font-size: var(--text-040);
  font-weight: var(--weight-medium);
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.plugins-page__link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.plugins-page__link--primary {
  border-color: rgba(42, 147, 255, 0.42);
  background: rgba(42, 147, 255, 0.15);
}

.plugins-page__link--primary:hover {
  border-color: rgba(42, 147, 255, 0.62);
  background: rgba(42, 147, 255, 0.24);
}

.plugins-page__main {
  width: min(1144px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 52px;
}

.plugins-page__hero {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.plugins-page__eyebrow {
  margin: 0;
  color: var(--semantic-color-text-copy-soft);
  line-height: 1.2;
}

.plugins-page__title {
  margin: 0;
  color: var(--semantic-color-text-primary);
}

.plugins-page__body {
  margin: 0;
  width: min(760px, 100%);
  color: var(--semantic-color-text-copy);
}

.plugins-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plugins-page__directory {
  margin-top: 40px;
}

.plugins-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plugins-page__card {
  min-height: 164px;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  transition: none;
}

.plugins-page__card-logo-wrap {
  width: 100%;
  height: 72px;
  min-height: 72px;
  display: flex;
  align-items: center;
}

.plugins-page__card-logo {
  width: auto;
  height: 48px;
  max-width: 144px;
  object-fit: contain;
}

.plugins-page__card-title {
  margin: 0;
  margin-top: 20px;
  color: var(--semantic-color-text-primary);
  font-size: var(--text-055);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.plugins-page__card-desc {
  margin: 0;
  padding-top: 12px;
  color: var(--semantic-color-text-copy);
  font-size: var(--text-040);
  font-weight: var(--weight-regular);
  line-height: 1.35;
}

/* ================================
   Plugin Install Button + QR modal
   ================================ */

.plugins-page__install-btn {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--semantic-color-text-primary);
  font-family: inherit;
  font-size: var(--text-035);
  font-weight: var(--weight-medium);
  line-height: 1;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease;
}

.plugins-page__install-btn:hover {
  background: var(--semantic-color-interactive-primary-hover);
  color: var(--semantic-color-text-on-brand);
  border-color: var(--semantic-color-interactive-primary-hover);
  font-weight: 600;
}

.plugins-page__install-btn:active {
  background: var(--semantic-color-interactive-primary-pressed);
  color: var(--semantic-color-text-on-brand);
  border-color: var(--semantic-color-interactive-primary-pressed);
}

body.qr-modal-open {
  overflow: hidden;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, 0.74);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.qr-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 48px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.98), rgba(11, 12, 16, 0.98));
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.48),
    0 20px 40px rgba(0, 0, 0, 0.36);
}

.qr-modal__close {
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 3;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: calc(var(--text-080) * 1.2);
  line-height: 1;
  cursor: pointer;
  transition: background-color 120ms ease-in, color 120ms ease-in;
}

.qr-modal__close:hover {
  color: var(--semantic-color-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.qr-modal__body {
  width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.qr-modal__eyebrow {
  align-self: flex-start;
  margin: 0 0 6px;
  color: var(--semantic-color-text-copy);
  font-size: var(--text-030);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-align: left;
}

.qr-modal__title {
  align-self: flex-start;
  margin: 0 0 0;
  color: var(--semantic-color-text-primary);
  font-size: 24px;
  font-weight: var(--weight-semibold);
  line-height: 1.15;
  text-align: left;
}

.qr-modal__desc {
  align-self: flex-start;
  margin: 0 0 20px;
  color: var(--semantic-color-text-copy);
  font-size: var(--text-040);
  font-weight: var(--weight-regular);
  line-height: 1.45;
  text-align: left;
}

.qr-modal__qr-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 0;
  width: 100%;
}

.qr-modal__qr canvas,
.qr-modal__qr img {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
}

.qr-modal__hint {
  margin: 0;
  color: var(--semantic-color-text-copy);
  font-size: var(--text-035);
  line-height: 1.45;
  width: 100%;
  max-width: none;
}

.qr-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--semantic-color-bg-brand);
  color: var(--semantic-color-text-primary);
  font-family: inherit;
  font-size: var(--text-050);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
}

#qr-modal-open-link {
  margin-top: 0px;
}

.plugins-page__embed-wrap {
  border: 1px solid var(--semantic-color-border-soft);
  border-radius: 12px;
  overflow: hidden;
  background: #0b0d12;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.plugins-page__embed {
  display: block;
  width: 100%;
  height: min(74vh, 940px);
  border: 0;
  background: #0b0d12;
}

.plugins-page__fallback {
  margin: 14px 0 0;
  color: var(--semantic-color-text-copy);
  font-size: 13px;
  line-height: 1.4;
}

.plugins-page__fallback a {
  color: var(--semantic-color-text-link);
}

@media (max-width: 760px) {
  .plugins-page__header-inner {
    min-height: 64px;
  }

  .plugins-page__brand-name {
    font-size: var(--text-055);
  }

  .plugins-page__links {
    gap: 8px;
  }

  .plugins-page__link {
    min-height: 34px;
    padding: 0 10px;
    font-size: var(--text-030);
  }

  .plugins-page__main {
    padding: 94px 0 40px;
  }

  .plugins-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .plugins-page__card {
    min-height: 150px;
    padding: 14px;
  }

  .plugins-page__card-title {
    margin-top: 20px;
    font-size: var(--text-050);
  }

  .plugins-page__card-desc {
    padding-top: 12px;
    font-size: 13px;
  }
}

/* ================================
   Site Footer
   ================================ */

.site-footer {
  position: relative;
  z-index: 32;
  background-color: rgba(0, 0, 0, 1);
  border-top: 1px solid color-mix(in srgb, var(--semantic-color-text-primary) 8%, transparent);
}

.site-footer__inner {
  width: min(1144px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
}

/* Brand column */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 360px;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--semantic-color-text-primary);
  width: fit-content;
}

.site-footer__logo {
  display: block;
  width: 130px;
  height: fit-content;
  flex-shrink: 0;
}

.site-footer__quote {
  margin: 0;
  padding: 0;
}

.site-footer__quote p {
  margin: 0;
  font-size: var(--text-040);
  font-style: italic;
  font-weight: var(--weight-light);
  line-height: var(--leading-body);
  color: var(--semantic-color-text-caption);
}

.site-footer__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: var(--text-030);
  font-weight: var(--weight-regular);
  color: var(--semantic-color-text-faint);
}

/* Social icons */
.site-footer__socials {
  display: flex;
  gap: 8px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--semantic-color-border-soft);
  color: var(--semantic-color-text-copy-soft);
  text-decoration: none;
  transition: color 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

.site-footer__social:hover {
  color: var(--semantic-color-text-primary);
  border-color: var(--semantic-color-border-soft-strong);
  background-color: var(--semantic-color-bg-surface-subtle);
}

/* Nav columns */
.site-footer__nav {
  display: flex;
  gap: 64px;
  padding-top: 4px;
}

.site-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 140px;
}

.site-footer__nav-heading {
  margin: 0;
  font-size: var(--text-030);
  font-weight: var(--weight-semibold);
  color: color-mix(in srgb, var(--semantic-color-text-primary) 30%, transparent);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--semantic-color-text-copy-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 120ms ease;
}

.site-footer__nav-link:hover {
  color: var(--semantic-color-text-primary);
}

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid var(--semantic-color-border-hairline);
}

.site-footer__bottom-inner {
  width: min(1144px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__copy {
  font-size: var(--text-030);
  color: var(--semantic-color-text-faint);
  font-weight: var(--weight-regular);
}

.site-footer__privacy-link {
  font-size: var(--text-030);
  color: var(--semantic-color-text-faint);
  text-decoration: none;
  font-weight: var(--weight-regular);
  transition: color 120ms ease;
}

.site-footer__privacy-link:hover {
  color: var(--semantic-color-text-copy);
}

/* ── Site footer — responsive ─────────────────────────── */

@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 0 40px;
  }

  .site-footer__brand {
    max-width: none;
    gap: 24px;
  }

  .site-footer__nav {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .site-footer__nav {
    gap: 32px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 0;
  }
}

/* Shared button radius */
.nav__link--outline,
.buy-license-modal__cta,
.hero__cta,
.hero-android-popup__item,
.nav__snackbar-btn,
.download-card__btn,
.download-card__qr,
.download-card__more,
.other-builds-popup__item,
.sources__cta,
.faq__tab,
.plugins__cta,
.plugins-page__install-btn,
.qr-modal__cta {
  border-radius: 6px;
}

/* Shared hover for filled primary blue buttons */
.nav__link--outline:hover,
.buy-license-modal__cta:hover,
.download-card__btn:hover,
.plugins-page__install-btn:hover {
  background: var(--semantic-color-interactive-primary-hover);
  border-color: var(--semantic-color-interactive-primary-hover);
}

.download-card__btn:hover {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, white 10%, transparent);
}
