:root {
  --bg: #050b18;
  --bg-2: #08111f;
  --ink: #06101f;
  --text: #f5f7fb;
  --muted: #aab3c5;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(6, 16, 31, 0.12);
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --accent: #5dd7ff;
  --accent-2: #8b5cf6;
  --mint: #57f0c2;
  --coral: #ff8a6b;
  --light: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 14% 8%, rgba(93, 215, 255, 0.20), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(139, 92, 246, 0.22), transparent 34%),
    linear-gradient(180deg, #050b18 0%, #0a0f1d 52%, #f6f8fb 52%, #f6f8fb 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  line-height: 1.6;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(93, 215, 255, 0.78);
  outline-offset: 4px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(4, 10, 23, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: #c7d2e8;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-links a[hreflang] {
  padding: 6px 10px;
  border: 1px solid rgba(93, 215, 255, 0.28);
  border-radius: 999px;
}

.hero-shell {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 74px 0 82px;
  isolation: isolate;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(246, 248, 251, 0.92));
  z-index: -1;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 7% -12% auto 38%;
  height: 72%;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 18%, rgba(87, 240, 194, 0.18), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(255, 138, 107, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(93, 215, 255, 0.18), rgba(139, 92, 246, 0.15));
  filter: blur(6px);
  transform: rotate(-3deg);
}

.hero-copy {
  max-width: 720px;
  padding-top: 26px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.final-cta h2 {
  margin: 14px 0 18px;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin: 0;
  color: #d9e3f7;
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.btn-primary {
  color: #06101f;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  box-shadow: 0 20px 60px rgba(93, 215, 255, 0.24);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  color: var(--white);
  background: #06101f;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: #c7d2e8;
  font-size: 14px;
  font-weight: 800;
}

.trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 24px rgba(87, 240, 194, 0.9);
}

.desktop-preview {
  position: absolute;
  right: max(30px, calc((100vw - 1160px) / 2));
  top: 118px;
  width: min(620px, 48vw);
  min-height: 475px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.08), rgba(245, 247, 251, 0.02)),
    radial-gradient(circle at 20% 20%, rgba(93, 215, 255, 0.25), transparent 30%),
    radial-gradient(circle at 80% 16%, rgba(139, 92, 246, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(3, 12, 29, 0.96), rgba(12, 20, 42, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
}

.desktop-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.10) 31%, transparent 46%);
  transform: translateX(-120%);
  animation: shine 8s ease-in-out infinite;
  pointer-events: none;
}

.preview-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d9e3f7;
  font-size: 12px;
  font-weight: 900;
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.traffic span:nth-child(2) {
  background: #ffd166;
}

.traffic span:nth-child(3) {
  background: var(--mint);
}

.desktop-icons {
  position: absolute;
  left: 18px;
  top: 58px;
  display: grid;
  gap: 18px;
}

.desktop-icon {
  width: 74px;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #eaf2ff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.icon-box {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(93, 215, 255, 0.95), rgba(139, 92, 246, 0.95));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.window {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(250, 252, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: floatWindow 7s ease-in-out infinite;
}

.window.dark {
  background: rgba(8, 17, 31, 0.94);
}

.window-title {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #06101f;
  font-size: 11px;
  font-weight: 900;
  border-bottom: 1px solid rgba(6, 16, 31, 0.10);
}

.window.dark .window-title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.window-controls {
  display: flex;
  gap: 5px;
}

.window-controls span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(6, 16, 31, 0.22);
}

.window.dark .window-controls span {
  background: rgba(255, 255, 255, 0.32);
}

.window-body {
  padding: 13px;
  display: grid;
  gap: 10px;
}

.bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(6, 16, 31, 0.13);
}

.dark .bar {
  background: rgba(255, 255, 255, 0.14);
}

.bar.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.window.products {
  width: 310px;
  right: 56px;
  top: 80px;
}

.window.orders {
  width: 260px;
  right: 210px;
  top: 230px;
  animation-delay: -2s;
}

.window.analytics {
  width: 230px;
  right: 38px;
  top: 306px;
  animation-delay: -4s;
}

.start-menu {
  position: absolute;
  left: 96px;
  bottom: 57px;
  width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(6, 16, 31, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.start-row {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d9e3f7;
  font-size: 12px;
  font-weight: 800;
}

.start-row span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--mint));
}

.taskbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(3, 9, 20, 0.82);
  backdrop-filter: blur(14px);
}

.taskbar-start {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.task-pill {
  width: 92px;
  height: 27px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.task-time {
  margin-left: auto;
  color: #d9e3f7;
  font-size: 11px;
  font-weight: 900;
}

section {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.section-dark {
  background: linear-gradient(180deg, #0a0f1d, #07111f);
}

.section-light {
  color: var(--ink);
  background: var(--light);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2,
.final-cta h2 {
  font-size: 52px;
}

.section-head p,
.final-cta p {
  margin: 0;
  color: inherit;
  opacity: .74;
  font-size: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.section-light .card {
  border-color: var(--line-dark);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(6, 16, 31, 0.08);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 215, 255, 0.46);
  box-shadow: 0 22px 70px rgba(6, 16, 31, 0.14);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: inherit;
  opacity: .74;
}

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

.app-card,
.workflow-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(6, 16, 31, 0.08);
}

.app-card {
  padding: 24px;
}

.app-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #06101f;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-card h3,
.workflow-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.16;
}

.app-card p,
.workflow-card p {
  margin: 0;
  color: rgba(6, 16, 31, 0.74);
}

.app-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.app-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(6, 16, 31, 0.78);
  font-weight: 700;
}

.app-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(93, 215, 255, 0.42);
}

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

.workflow-card {
  padding: 22px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-panel {
  min-height: 360px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 24px 76px rgba(6, 16, 31, 0.11);
}

.compare-panel.dark {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: #07111f;
}

.compare-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark .compare-head {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.classic-admin,
.shell-admin {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 304px;
}

.classic-menu {
  padding: 14px;
  background: #23282d;
}

.classic-menu span,
.classic-content span,
.shell-side span,
.shell-main span {
  display: block;
  height: 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.classic-content {
  padding: 18px;
  background: #f0f0f1;
}

.classic-content span {
  background: rgba(6, 16, 31, 0.12);
}

.shell-side {
  padding: 16px;
  background: rgba(6, 16, 31, 0.86);
}

.shell-main {
  position: relative;
  padding: 18px;
  background:
    radial-gradient(circle at 78% 14%, rgba(93, 215, 255, 0.20), transparent 26%),
    linear-gradient(135deg, #0a1530, #111a35);
}

.mini-window {
  position: absolute;
  width: 44%;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.mini-window.one {
  left: 18px;
  top: 34px;
}

.mini-window.two {
  right: 20px;
  top: 96px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #06101f;
  background: linear-gradient(135deg, var(--accent), var(--mint));
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.media-placeholder {
  min-height: 134px;
  display: grid;
  align-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed rgba(93, 215, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(93, 215, 255, 0.10), rgba(139, 92, 246, 0.10)),
    rgba(255, 255, 255, 0.04);
  color: inherit;
}

.placeholder-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-light .media-placeholder {
  background: #f8fbff;
  color: var(--ink);
}

.media-shot {
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #06101f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
  overflow: hidden;
}

.section-light .media-shot {
  border-color: var(--line-dark);
  box-shadow: 0 18px 44px rgba(6, 16, 31, 0.10);
}

.media-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 5;
  height: auto;
  object-fit: cover;
  transition: transform .24s ease, filter .24s ease;
}

.card:hover .media-shot img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.media-shot figcaption {
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(230, 238, 252, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.section-light .media-shot figcaption {
  border-top-color: var(--line-dark);
  color: rgba(6, 16, 31, 0.72);
}

.demo-stage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.demo-video {
  width: 100%;
  min-height: 380px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #06101f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.video-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 45% 38%, rgba(93, 215, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}

.play-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #06101f;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #06101f;
  margin-left: 4px;
}

.caption-list {
  display: grid;
  gap: 16px;
}

.caption-card {
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

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

.step-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--white);
  background: #06101f;
  font-weight: 900;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-item {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.07);
}

.roadmap-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.roadmap-item span {
  color: #c7d2e8;
  font-size: 14px;
}

.about-band {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 24px 76px rgba(6, 16, 31, 0.10);
}

.about-list {
  display: grid;
  gap: 10px;
}

.about-list span {
  padding: 11px 13px;
  border-radius: 8px;
  background: #f1f5fb;
  color: #263247;
  font-weight: 800;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin: 0 auto;
  max-width: 640px;
}

.final-cta .actions {
  justify-content: center;
}

.footer {
  padding: 34px 0;
  color: #aab3c5;
  background: #050b18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer a {
  color: #d9e3f7;
  font-weight: 800;
  text-decoration: none;
}

@keyframes floatWindow {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes shine {
  0%, 58%, 100% {
    transform: translateX(-120%);
  }
  72% {
    transform: translateX(120%);
  }
}

@media (max-width: 1020px) {
  .hero-shell {
    min-height: auto;
    padding: 66px 0 560px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .desktop-preview {
    top: auto;
    right: 50%;
    bottom: 72px;
    width: min(620px, calc(100% - 40px));
    transform: translateX(50%);
  }

  .grid,
  .grid.two,
  .app-grid,
  .comparison,
  .demo-stage,
  .about-band,
  .workflow-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0 14px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 9px;
    font-size: 13px;
  }

  .nav-links a[hreflang] {
    padding: 5px 8px;
  }

  .hero-shell {
    padding: 46px 0 430px;
  }

  .hero-copy h1,
  .section-head h2,
  .final-cta h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero-copy p,
  .section-head p,
  .final-cta p {
    font-size: 17px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .desktop-preview {
    min-height: 350px;
    bottom: 46px;
  }

  .window.products {
    width: 232px;
    right: 18px;
    top: 70px;
  }

  .window.orders {
    width: 210px;
    right: 95px;
    top: 192px;
  }

  .window.analytics {
    width: 190px;
    right: 16px;
    top: 248px;
  }

  .start-menu {
    display: none;
  }

  .desktop-icons {
    left: 12px;
    gap: 12px;
  }

  .desktop-icon {
    width: 58px;
    font-size: 10px;
  }

  .icon-box {
    width: 32px;
    height: 32px;
  }

  section {
    padding: 62px 0;
    scroll-margin-top: 150px;
  }

  .steps,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .demo-video {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
