:root {
  color: #f4f7fb;
  background: #030507;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #030507;
  --panel: #0b1017;
  --panel-2: #101722;
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.64);
  --faint: rgba(244, 247, 251, 0.34);
  --line: rgba(244, 247, 251, 0.13);
  --cyan: #5be7ff;
  --blue: #6b7cff;
  --green: #a7f35a;
  --future-orange: #ff9a3d;
  --media-width: 720px;
  --hero-media-width: 820px;
  --comparison-media-width: 920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 74% 0%, rgba(107, 124, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 18% 10%, rgba(91, 231, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #050912 0%, #030507 48%, #05080c 100%);
  color: var(--text);
}

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

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 5, 7, 0.74);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-mark {
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(91, 231, 255, 0.42);
}

.site-header nav {
  gap: clamp(1rem, 2.6vw, 2.4rem);
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--text);
}

.hero,
.section {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  min-height: calc(100svh - 70px);
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0.9rem auto 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 670;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.lede {
  max-width: 820px;
  margin: 1.15rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.authors {
  margin: 1.25rem 0 0;
  padding: 0;
  color: rgba(244, 247, 251, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.16rem);
  line-height: 1.45;
}

.authors a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.authors a:hover {
  color: #ffffff;
  text-decoration: none;
}

.affiliations {
  margin: 0.42rem 0 0;
  color: rgba(244, 247, 251, 0.58);
  font-size: clamp(0.92rem, 1.08vw, 1.04rem);
  line-height: 1.45;
}

.contributions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.48rem 0 0;
  color: rgba(244, 247, 251, 0.48);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  line-height: 1.4;
}

.contributions sup {
  color: rgba(244, 247, 251, 0.72);
}

.actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 2.45rem;
  padding: 0.58rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.action-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.action-icon-image {
  object-fit: contain;
}

.actions a:hover {
  border-color: rgba(244, 247, 251, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.actions .primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #020408;
}

.hero-showcase {
  position: relative;
  justify-self: center;
  min-width: 0;
  width: min(var(--hero-media-width), calc(100vw - 2rem));
  margin: 0;
  aspect-ratio: 26 / 15;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(91, 231, 255, 0.18), transparent 42%),
    linear-gradient(45deg, #17202b, #06080c);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero-showcase video,
.showcase-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase video {
  z-index: 2;
}

.showcase-fallback {
  z-index: 1;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(91, 231, 255, 0.14) 36% 37%, transparent 37%),
    linear-gradient(135deg, rgba(107, 124, 255, 0.34), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 11%),
    #101722;
}

.showcase-caption {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(244, 247, 251, 0.16);
  border-radius: 12px;
  background: rgba(3, 5, 7, 0.68);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(14px);
}

.showcase-caption span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.showcase-caption strong {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 650;
}

.metric-row {
  width: min(880px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.metric-row article {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.82rem 0.92rem;
  text-align: center;
}

.metric-row strong {
  display: block;
  font-size: clamp(1.18rem, 1.75vw, 1.72rem);
  line-height: 1;
  white-space: nowrap;
}

.metric-row span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: clamp(0.6rem, 0.72vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}

.section-heading .eyebrow {
  position: absolute;
  top: 0;
  left: 0;
}

.section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 3.2rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.demos .section-heading h2 {
  font-size: clamp(1.65rem, 2.7vw, 3.1rem);
  white-space: nowrap;
}

.demos.title-wide .section-heading h2 {
  width: 100%;
  max-width: none;
  text-align: center;
}

.text-block {
  max-width: 960px;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.text-block p {
  margin: 0;
  text-wrap: pretty;
}

.future-orange {
  color: var(--future-orange);
  font-weight: 780;
}

.text-block p + p {
  margin-top: 1rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.capability-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  padding: clamp(1.15rem, 2.4vw, 1.8rem);
}

.capability-grid span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.capability-grid h3 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 620;
  letter-spacing: -0.02em;
}

.capability-grid p,
.demo-copy p,
.demo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.featured-demo {
  position: relative;
  min-height: 520px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #090d13;
}

.featured-demo video,
.featured-demo .video-fallback,
.demo-card video,
.demo-card .video-fallback,
.compare video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-demo video,
.featured-demo .video-fallback {
  position: absolute;
  inset: 0;
}

.featured-demo video,
.demo-card video {
  z-index: 2;
}

.video-fallback {
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(107, 124, 255, 0.22), transparent 44%),
    linear-gradient(45deg, #111a25, #05070a);
}

.featured-demo::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 5, 7, 0.88));
}

.demo-copy {
  position: absolute;
  z-index: 4;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  max-width: 720px;
}

.demo-copy span,
.demo-card span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.demo-copy p {
  margin-top: 0.55rem;
  color: rgba(244, 247, 251, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.expand {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(244, 247, 251, 0.28);
  border-radius: 999px;
  background: rgba(3, 5, 7, 0.62);
  color: var(--text);
  padding: 0.42rem 0.78rem;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.demo-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.demo-card video,
.demo-card .video-fallback {
  aspect-ratio: 16 / 10;
}

.demo-card video {
  position: relative;
}

.demo-card .video-fallback {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto 0;
}

.demo-card > div:not(.video-fallback) {
  padding: 1rem;
}

.demo-player {
  display: block;
  width: var(--media-width);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  margin-right: auto;
  margin-left: auto;
}

.demo-stage {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.demo-stage {
  position: relative;
  overflow: hidden;
  background: #090d13;
}

.demo-stage .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-stage video {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
  background: #090d13;
  transition: opacity 0.2s ease;
}

.demo-stage video.is-leaving {
  opacity: 0;
}

.demo-stage .demo-stage-video-next {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 3;
}

.demo-stage .demo-stage-video-next.is-ready {
  opacity: 1;
}

.demo-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  background: rgba(3, 5, 7, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
  backdrop-filter: blur(2px);
}

.demo-stage.is-loading::after {
  opacity: 1;
}

.demo-loading {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 2.35rem;
  padding: 0.5rem 0.86rem;
  border: 1px solid rgba(244, 247, 251, 0.28);
  border-radius: 999px;
  background: rgba(3, 5, 7, 0.84);
  color: rgba(244, 247, 251, 0.94);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 6px));
  transition: opacity 0.16s ease, transform 0.16s ease;
  backdrop-filter: blur(12px);
}

.demo-loading::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid rgba(244, 247, 251, 0.24);
  border-top-color: var(--cyan);
  border-radius: 999px;
  animation: demo-loading-spin 0.8s linear infinite;
}

.demo-stage.is-loading .demo-loading {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@keyframes demo-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.demo-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(766px, 100%);
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.demo-picker.is-dense {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.42rem;
}

.demo-carousel {
  position: relative;
  width: var(--media-width);
  margin: 1rem auto 0;
}

.demo-carousel .demo-picker,
.demo-carousel .demo-picker.is-dense {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(86px, 16vw, 104px);
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 0.3rem 2.75rem 0.65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2.75rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.demo-carousel .demo-picker::-webkit-scrollbar {
  display: none;
}

.demo-carousel .demo-picker.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

.demo-carousel .demo-option {
  scroll-snap-align: start;
}

.demo-carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 1px solid rgba(244, 247, 251, 0.28);
  border-radius: 999px;
  background: rgba(3, 5, 7, 0.82);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-56%);
  transition: border-color 0.18s, background 0.18s, opacity 0.18s, transform 0.18s;
  backdrop-filter: blur(12px);
}

.demo-carousel-button:hover:not(:disabled),
.demo-carousel-button:focus-visible {
  border-color: rgba(91, 231, 255, 0.82);
  background: rgba(11, 20, 29, 0.94);
  outline: none;
  transform: translateY(-56%) scale(1.05);
}

.demo-carousel-button:disabled {
  opacity: 0.28;
  cursor: default;
}

.demo-carousel-button.is-prev {
  left: 0.35rem;
}

.demo-carousel-button.is-next {
  right: 0.35rem;
}

.comparison-picker {
  grid-template-columns: repeat(3, minmax(0, 180px));
  justify-content: center;
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.comparison .demo-player {
  position: relative;
  left: 50%;
  width: min(var(--comparison-media-width), calc(100vw - 2rem));
  margin-right: 0;
  margin-left: 0;
  transform: translateX(-50%);
}

.demo-option {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 0;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.demo-option:hover,
.demo-option:focus-visible,
.demo-option.is-active {
  border-color: rgba(91, 231, 255, 0.82);
  background: rgba(91, 231, 255, 0.09);
  outline: none;
}

.demo-option.is-active {
  box-shadow: 0 0 24px rgba(91, 231, 255, 0.22);
}

.demo-option:hover,
.demo-option:focus-visible {
  transform: translateY(-1px);
}

.demo-option img,
.demo-option video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.82);
  transition: filter 0.18s, transform 0.18s;
}

.demo-option:hover img,
.demo-option:hover video,
.demo-option:focus-visible img,
.demo-option:focus-visible video,
.demo-option.is-active img,
.demo-option.is-active video {
  filter: saturate(1.05) brightness(1);
}

.demo-option.is-active img,
.demo-option.is-active video {
  transform: scale(1.015);
}

.compare {
  position: relative;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  aspect-ratio: 16 / 8;
  background:
    linear-gradient(135deg, rgba(91, 231, 255, 0.18), transparent),
    #090d13;
  cursor: ew-resize;
}

.compare-top {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 1rem;
  border: 1px solid rgba(244, 247, 251, 0.2);
  border-radius: 999px;
  background: rgba(3, 5, 7, 0.64);
  padding: 0.32rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.compare-label.left {
  left: 1rem;
}

.compare-label.right {
  right: 1rem;
  color: var(--green);
}

.compare-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  padding: 0;
  border: 0;
  background: white;
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 247, 251, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(244, 247, 251, 0.72) 45% 55%, transparent 55%),
    rgba(3, 5, 7, 0.68);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.citation {
  display: block;
}

.citation-box {
  position: relative;
  min-width: 0;
  width: min(760px, 100%);
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #070a0f;
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
}

.citation-box pre {
  margin: 0;
  overflow-x: auto;
  color: rgba(244, 247, 251, 0.78);
  font-size: 0.86rem;
  line-height: 1.64;
}

.notice {
  width: min(980px, calc(100% - 2rem));
  margin: clamp(1.4rem, 3vw, 2.4rem) auto 0;
  color: rgba(244, 247, 251, 0.5);
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: left;
}

.notice p {
  margin: 0;
}

.notice strong {
  color: rgba(244, 247, 251, 0.68);
  font-weight: 720;
}

.copy {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: 1px solid rgba(244, 247, 251, 0.2);
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.05);
  padding: 0.38rem 0.76rem;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-information {
  color: var(--faint);
  font-size: 0.78rem;
}

.meta-information ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.65;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(3, 5, 7, 0.9);
  backdrop-filter: blur(16px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox video {
  width: min(94vw, 1500px);
  max-height: 84vh;
  background: black;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(244, 247, 251, 0.24);
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.06);
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .section-heading,
  .demo-player,
  .citation {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .capability-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 799px) {
  .demo-player,
  .demo-carousel,
  .comparison .demo-player {
    width: 100%;
  }

  .comparison .demo-player {
    width: min(var(--comparison-media-width), calc(100vw - 2rem));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .site-header nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .section-heading {
    padding-top: 1.75rem;
  }

  .showcase-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-demo {
    min-height: 380px;
  }

  .compare {
    aspect-ratio: 1 / 1;
  }
}
