:root {
  --ink: #f8f8ff;
  --ink-muted: #b9bed9;
  --navy: #080b24;
  --navy-soft: #101535;
  --blue: #6da8f8;
  --cyan: #55e4ed;
  --pink: #ed70df;
  --violet: #a778f8;
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.065);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(167, 120, 248, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 45%, rgba(85, 228, 237, 0.08), transparent 30rem),
    var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy);
  background: white;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(8, 11, 36, 0.78);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  color: #101535;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  border-radius: 12px;
  font-size: 1.35rem;
  box-shadow: 0 8px 26px rgba(237, 112, 223, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: white;
}

.site-nav .nav-cta {
  padding: 11px 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 46px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  min-height: 590px;
  gap: 50px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9dcf0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin: 28px 0;
  font-size: clamp(3.8rem, 6.9vw, 6.9rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 em,
h2 em {
  color: transparent;
  background: linear-gradient(100deg, var(--pink) 8%, var(--violet) 48%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 36px;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 178px;
  padding: 12px 20px;
  color: var(--navy);
  background: white;
  border: 1px solid white;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.05;
  box-shadow: 0 15px 40px rgba(85, 228, 237, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(85, 228, 237, 0.18);
}

.play-button small {
  display: block;
  margin-bottom: 3px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.play-symbol {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--violet);
  filter: drop-shadow(6px 0 0 var(--cyan));
}

.text-link {
  color: #d9dcf0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 2;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.96);
  background: #7aaef6;
  border-radius: 35px;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  z-index: 3;
  top: 3%;
  left: 50%;
  width: 282px;
  aspect-ratio: 333 / 592;
  transform: translateX(-50%) rotate(1.5deg);
  animation: float 6s ease-in-out infinite;
}

.phone-left,
.phone-right {
  top: 22%;
  width: 214px;
  aspect-ratio: 333 / 592;
  opacity: 0.58;
  filter: saturate(0.8);
}

.phone-left {
  left: 0;
  transform: rotate(-10deg);
}

.phone-right {
  right: 0;
  transform: rotate(11deg);
}

.orbit {
  position: absolute;
  z-index: -1;
  top: 44%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-color: rgba(237, 112, 223, 0.22);
}

.note {
  position: absolute;
  z-index: 5;
  color: var(--cyan);
  text-shadow: 0 0 25px rgba(85, 228, 237, 0.7);
}

.note-one {
  top: 5%;
  right: 9%;
  font-size: 2.4rem;
  transform: rotate(12deg);
}

.note-two {
  bottom: 20%;
  left: 5%;
  color: var(--pink);
  font-size: 2rem;
  transform: rotate(-14deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -200px;
  right: -90px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(237, 112, 223, 0.23), transparent 68%);
}

.hero-glow-two {
  bottom: -260px;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(85, 228, 237, 0.12), transparent 69%);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 30px;
  padding: 24px 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.trust-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.trust-item strong {
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--ink-muted);
  font-size: 0.77rem;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p,
.showcase-copy > p {
  margin-bottom: 4px;
  color: var(--ink-muted);
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--navy-soft);
  border-radius: 26px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(237, 112, 223, 0.36);
  transform: translateY(-5px);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(109, 168, 248, 0.16), transparent 68%);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 658px;
  background:
    radial-gradient(circle at 75% 80%, rgba(85, 228, 237, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(167, 120, 248, 0.15), rgba(255, 255, 255, 0.03)),
    var(--navy-soft);
}

.feature-card-wide {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.feature-icon {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  margin-bottom: 60px;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(237, 112, 223, 0.7), rgba(109, 168, 248, 0.65));
  border-radius: 16px;
  font-size: 1.3rem;
  box-shadow: 0 13px 35px rgba(167, 120, 248, 0.15);
}

.feature-card h3 {
  max-width: 330px;
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.feature-card p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-card-large .feature-icon {
  margin-bottom: 90px;
}

.mini-library {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  gap: 10px;
}

.mini-library span {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(237, 112, 223, 0.5) 0 32px, transparent 32px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 48px 48%, transparent 48%);
  border-radius: 10px;
  opacity: 0.65;
}

.feature-card-wide .feature-icon {
  margin-bottom: 24px;
}

.control-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.65);
}

.control-demo span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  font-size: 0.85rem;
}

.control-demo .demo-pause {
  width: 64px;
  height: 64px;
  color: var(--navy);
  background: white;
  border-radius: 50%;
  font-weight: 900;
}

.showcase-section {
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(167, 120, 248, 0.07) 50%, transparent),
    radial-gradient(circle at 85% 50%, rgba(237, 112, 223, 0.12), transparent 32rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 700px;
  gap: 90px;
}

.showcase-copy h2 {
  margin: 26px 0 30px;
}

.showcase-copy > p {
  min-height: 84px;
}

.screen-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 34px;
}

.screen-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.screen-tab span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
}

.screen-tab:hover,
.screen-tab.is-active {
  color: white;
  border-color: rgba(85, 228, 237, 0.38);
  background: rgba(85, 228, 237, 0.08);
}

.screen-stage {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
}

.stage-ring {
  position: absolute;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.016),
    0 0 0 110px rgba(255, 255, 255, 0.01);
}

.screen-preview {
  position: relative;
  width: min(300px, 70vw);
  padding: 0;
  overflow: hidden;
  border: 7px solid white;
  background: #70a9f5;
  border-radius: 38px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transform: rotate(2deg);
  transition: transform 220ms ease;
}

.screen-preview:hover {
  transform: rotate(0) scale(1.02);
}

.screen-preview img {
  width: 100%;
  aspect-ratio: 333 / 592;
  object-fit: cover;
}

.screen-preview.is-switching img {
  animation: screen-swap 280ms ease;
}

.preview-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: white;
  background: rgba(8, 11, 36, 0.72);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.screen-preview:hover .preview-hint,
.screen-preview:focus-visible .preview-hint {
  opacity: 1;
  transform: translateY(0);
}

.download-section {
  padding-top: 70px;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 410px;
  padding: 64px;
  overflow: hidden;
  color: #0c1030;
  background:
    radial-gradient(circle at 86% 15%, rgba(255, 255, 255, 0.55), transparent 12rem),
    linear-gradient(125deg, #ee76dd, #aa7cf6 48%, #66dfe8);
  border-radius: 34px;
  box-shadow: 0 30px 100px rgba(167, 120, 248, 0.2);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  pointer-events: none;
}

.download-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.download-copy .eyebrow {
  color: #202652;
}

.download-copy .eyebrow > span {
  background: #202652;
}

.download-copy h2 {
  margin: 25px 0 22px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.download-copy p {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(12, 16, 48, 0.72);
}

.play-button-light {
  position: relative;
  z-index: 2;
  margin-left: 42px;
  background: #0c1030;
  border-color: #0c1030;
  color: white;
}

.download-notes span {
  position: absolute;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 800;
}

.download-notes span:nth-child(1) {
  top: 34px;
  left: 48%;
  font-size: 3rem;
  transform: rotate(12deg);
}

.download-notes span:nth-child(2) {
  right: 8%;
  bottom: 18px;
  font-size: 5rem;
  transform: rotate(-14deg);
}

.download-notes span:nth-child(3) {
  left: 25%;
  bottom: 20px;
  font-size: 2rem;
  transform: rotate(15deg);
}

.site-footer {
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.footer-inner > p {
  margin: 0;
}

.footer-inner > span {
  justify-self: end;
}

.footer-inner .brand {
  color: white;
}

.footer-inner .brand-mark {
  width: 34px;
  border-radius: 10px;
}

.lightbox {
  width: min(94vw, 470px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  color: white;
  border: 1px solid var(--border);
  background: #0b0f2e;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(2, 4, 18, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.lightbox-inner {
  padding: 18px;
}

.lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 14px;
}

.lightbox-head h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lightbox-head button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox img {
  width: min(78vw, 370px);
  max-height: calc(94vh - 86px);
  margin-inline: auto;
  object-fit: contain;
  border-radius: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(1.5deg);
  }
  50% {
    transform: translateX(-50%) translateY(-13px) rotate(0deg);
  }
}

@keyframes screen-swap {
  from {
    opacity: 0.3;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 128px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 600px;
    margin-top: 30px;
  }

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

  .feature-card-large {
    grid-row: auto;
    min-height: 400px;
  }

  .feature-card-wide {
    grid-column: 1 / -1;
  }

  .showcase-grid {
    gap: 30px;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .play-button-light {
    width: max-content;
    margin: 36px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-shell {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto;
    display: grid;
    gap: 3px;
    padding: 16px;
    border: 1px solid var(--border);
    background: rgba(8, 11, 36, 0.96);
    border-radius: 20px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    gap: 20px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.1rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-main {
    width: 252px;
  }

  .phone-left,
  .phone-right {
    top: 25%;
    width: 175px;
  }

  .phone-left {
    left: -42px;
  }

  .phone-right {
    right: -42px;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 330px;
    height: 330px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 6px;
    padding: 26px;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
    margin-inline: auto;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  h2 {
    font-size: clamp(2.7rem, 13.4vw, 4rem);
  }

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

  .feature-card,
  .feature-card-large {
    min-height: 340px;
  }

  .feature-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-card-large .feature-icon {
    margin-bottom: 60px;
  }

  .control-demo {
    justify-content: flex-start;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-copy > p {
    min-height: 110px;
  }

  .screen-stage {
    min-height: 650px;
  }

  .stage-ring {
    width: 330px;
  }

  .download-section {
    padding-top: 30px;
  }

  .download-card {
    min-height: 520px;
    padding: 44px 30px;
    border-radius: 28px;
  }

  .download-card::before {
    inset: 12px;
    border-radius: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner > span {
    justify-self: center;
  }
}

@media (max-width: 390px) {
  .screen-nav {
    grid-template-columns: 1fr;
  }

  .showcase-copy > p {
    min-height: 138px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
