:root {
  --primary: #63b1ff;
  --primary-light: #daecff;
  --primary-disabled: #bddeff;
  --indicator-disabled: #eef7ff;
  --black: #121212;
  --ink: #282a37;
  --muted: #5d5d5d;
  --soft: #888888;
  --white: #ffffff;
  --border: #e0dbdb;
  --divider: #ecedf2;
  --surface: #f6f8fe;
  --lime: #cdf731;
  --blue: #1788ea;
  --shadow: 0 26px 70px rgba(99, 177, 255, 0.22);
  --progress: 0;
  color-scheme: light;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #0b1117;
  color: var(--black);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: calc(var(--progress) * 100%);
  height: 3px;
  background: var(--primary);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  display: flex;
  width: min(1160px, calc(100% - 24px));
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 12px;
  border: 1px solid rgba(218, 236, 255, 0.24);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.42);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(18, 18, 18, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  gap: 2px;
}

.site-nav a {
  border-radius: 8px;
  padding: 12px 14px;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(218, 236, 255, 0.16);
  color: currentColor;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--primary-light);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: var(--black);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 104px 0 48px;
  background: #0b1117;
  color: var(--white);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background: url("assets/images/walkthrough_screen_2.png") center / cover;
  transform: scale(1.04);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 17, 23, 0.9) 0%, rgba(11, 17, 23, 0.74) 42%, rgba(11, 17, 23, 0.42) 100%),
    linear-gradient(180deg, rgba(11, 17, 23, 0.18) 0%, rgba(11, 17, 23, 0.92) 100%);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(390px, 1.07fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.download h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 {
  color: var(--white);
}

.hero-text p:not(.eyebrow),
.section-intro p:not(.section-label),
.flow-item p,
.sport-card p,
.scene p,
.quote p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-text p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  width: 182px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-badge:hover,
.store-badge:focus-visible {
  filter: drop-shadow(0 12px 18px rgba(18, 18, 18, 0.18));
  transform: translateY(-2px);
  outline: none;
}

.hero-stage {
  position: relative;
  min-height: 580px;
  perspective: 1400px;
}

.field-card {
  position: absolute;
  inset: 20px 0 auto auto;
  width: min(520px, 92%);
  height: 380px;
  overflow: hidden;
  border: 1px solid var(--divider);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(-4deg);
}

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

.device,
.float-card,
.field-card {
  will-change: transform, margin;
}

.device {
  position: absolute;
  right: 76px;
  top: 44px;
  width: 292px;
  aspect-ratio: 9 / 19.1;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(145deg, #30343a, #050608 58%);
  box-shadow:
    0 34px 76px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotateX(8deg) rotateY(-14deg) rotateZ(3deg);
}

.device-glass,
.mini-device {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: var(--black);
}

.device-island {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 5;
  width: 88px;
  height: 27px;
  border-radius: 999px;
  background: #050608;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.app-screen {
  min-height: 100%;
  padding: 54px 16px 16px;
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.96), rgba(255, 255, 255, 0.99) 46%),
    url("assets/images/Splash.png");
  background-size: cover;
  color: var(--black);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-header small,
.challenge-preview small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
}

.app-header strong {
  display: block;
  margin-top: 4px;
  font-size: 21px;
}

.app-header img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.challenge-preview {
  border: 1px solid rgba(224, 219, 219, 0.74);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(218, 236, 255, 0.9), rgba(255, 255, 255, 0.96)),
    url("assets/images/home-card-bg.png");
  background-size: cover;
  box-shadow: 0 18px 38px rgba(159, 159, 159, 0.18);
}

.challenge-preview h2 {
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.12;
}

.challenge-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.versus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.versus img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.versus span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.quick-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.quick-grid span:nth-child(even) {
  background: var(--black);
}

.app-nav {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-around;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--black);
}

.app-nav img {
  width: 22px;
  filter: brightness(0) invert(1);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 132px;
  gap: 4px;
  border: 1px solid rgba(224, 219, 219, 0.72);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.float-card span {
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.float-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-rating {
  right: 26px;
  top: 168px;
}

.card-match {
  right: 354px;
  bottom: 112px;
}

.product-strip {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 54px);
  border-block: 1px solid rgba(218, 236, 255, 0.18);
  background: #0b1117;
  color: var(--white);
  overflow: hidden;
}

.product-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
}

.sports,
.reviews {
  padding: 108px 0;
}

.product {
  position: relative;
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(99, 177, 255, 0.16), transparent 42%),
    #121212;
  color: var(--white);
}

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(218, 236, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 236, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.product > .page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
}

.product .section-intro h2,
.product .flow-item h3 {
  color: var(--white);
}

.product .flow-item p,
.product .section-intro p:not(.section-label) {
  color: rgba(255, 255, 255, 0.68);
}

.product .flow-item {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.section-intro {
  max-width: 850px;
  margin-bottom: 30px;
}

.flow {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.flow-preview {
  position: sticky;
  top: clamp(96px, 12svh, 126px);
  display: grid;
  min-height: clamp(705px, 56vw, 790px);
  place-items: center;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(218, 236, 255, 0.14);
  background:
    radial-gradient(circle at 50% 20%, rgba(205, 247, 49, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(218, 236, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.mini-device {
  position: relative;
  width: clamp(310px, 27vw, 350px);
  max-width: calc(100% - 36px);
  height: auto;
  max-height: none;
  aspect-ratio: 9 / 19.1;
  padding: 0;
  border: 10px solid var(--black);
  border-radius: 38px;
  background: var(--black);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  height: auto;
  align-content: start;
  color: var(--black);
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.98), rgba(255, 255, 255, 0.99) 44%),
    url("assets/images/Splash.png");
  background-size: cover;
  border-radius: 28px;
  padding: 62px 18px 18px;
  overflow: hidden;
}

.scene span {
  justify-self: start;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(23, 136, 234, 0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scene h3 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.05;
}

.scene-art {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(99, 177, 255, 0.22), rgba(205, 247, 49, 0.24)),
    var(--primary-light);
  box-shadow: inset 0 0 0 1px rgba(23, 136, 234, 0.12);
}

.scene-art img {
  width: 84%;
  max-height: 88%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.scene.is-changing .scene-art img {
  transform: translateY(10px) scale(0.96);
}

.scene p {
  margin: 0;
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(18, 18, 18, 0.08);
  font-size: 13px;
  line-height: 1.55;
}

.flow-list {
  position: relative;
}

.flow-track {
  display: grid;
  gap: clamp(18px, 4svh, 30px);
}

.flow-item {
  min-height: clamp(150px, 24svh, 230px);
  border-top: 1px solid var(--divider);
  border-radius: 8px;
  padding: 28px 18px 22px;
  display: grid;
  align-content: center;
  opacity: 0.52;
  transform: translateY(18px) scale(0.98);
  transition: background 220ms ease, border-color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.flow-item.is-active {
  border-top-color: rgba(99, 177, 255, 0.72);
  background:
    linear-gradient(90deg, rgba(99, 177, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.flow-item span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.flow-item h3 {
  max-width: 660px;
  margin: 14px 0 12px;
  color: var(--black);
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1.07;
  font-weight: 900;
}

.flow-item p {
  max-width: 620px;
  margin: 0;
}

.sports {
  background:
    linear-gradient(180deg, var(--primary-light), var(--white) 58%);
}

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

.sport-card {
  position: relative;
  display: grid;
  min-height: 470px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(159, 159, 159, 0.15);
  transform-style: preserve-3d;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.sport-card:nth-child(1) {
  background: linear-gradient(180deg, var(--primary-light), var(--white));
}

.sport-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(66, 120, 164, 0.2), rgba(166, 151, 59, 0.14));
}

.sport-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(41, 128, 188, 0.2), var(--white));
}

.sport-card:hover {
  box-shadow: var(--shadow);
}

.sport-card img {
  position: absolute;
  right: -12%;
  top: 34px;
  width: 82%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(18, 18, 18, 0.12));
}

.sport-card div {
  position: relative;
  z-index: 2;
}

.sport-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.sport-card p {
  margin: 14px 0 0;
  font-size: 14px;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 1fr 1fr;
  gap: 14px;
}

.review-grid article {
  min-height: 220px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.review-grid strong {
  display: block;
  color: var(--black);
  font-size: 70px;
  line-height: 0.9;
  font-weight: 900;
}

.review-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote {
  display: grid;
  align-content: start;
  gap: 16px;
}

.quote img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.quote p {
  margin: 0;
  color: var(--black);
  font-size: 17px;
}

.reviews {
  background: var(--white);
}

.reviews.page-shell {
  width: 100%;
}

.reviews > .section-intro,
.reviews > .review-grid {
  width: min(1160px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.reviews > .section-intro {
  margin-bottom: 48px;
}

.download {
  position: relative;
  display: grid;
  min-height: 84svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.download-media {
  position: absolute;
  inset: 0;
}

.download-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.download::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.12), rgba(18, 18, 18, 0.78)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.76), rgba(18, 18, 18, 0.18));
}

.download-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 70px;
}

.download .section-label {
  color: var(--lime);
}

.download h2 {
  max-width: 920px;
  margin-bottom: 28px;
  color: var(--white);
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--divider);
  background: var(--white);
}

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

.footer nav {
  display: flex;
  gap: 14px;
}

.footer nav a,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-copy {
    grid-template-columns: 1fr;
  }

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

  .field-card {
    right: 50%;
    transform: translateX(50%) rotate(-3deg);
  }

  .device {
    right: calc(50% - 159px);
  }

  .card-rating {
    right: calc(50% - 250px);
  }

  .card-match {
    right: calc(50% + 96px);
  }

  .flow {
    grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
  }

  .flow-preview {
    top: clamp(96px, 12svh, 120px);
    min-height: clamp(680px, 62vw, 744px);
  }

  .flow-list {
    min-height: 0;
  }

  .sport-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    width: calc(100% - 20px);
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 44px rgba(18, 18, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero h1,
  .section-intro h2,
  .download h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

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

  .field-card {
    width: 94%;
    height: 340px;
  }

  .device {
    width: 272px;
    right: calc(50% - 136px);
    top: 70px;
  }

  .float-card {
    display: none;
  }

  .product,
  .sports,
  .reviews {
    padding: 78px 0;
  }

  .product {
    padding: 86px 0;
  }

  .product > .page-shell {
    padding: 0;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-preview {
    top: 88px;
    height: auto;
    min-height: 714px;
    padding: 17px;
    place-items: center;
  }

  .mini-device {
    width: min(320px, 82vw);
    max-width: 82vw;
    height: auto;
    max-height: none;
    aspect-ratio: 9 / 19.1;
    border: 8px solid var(--black);
    border-radius: 34px;
    padding: 0;
    background: var(--black);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    overflow: hidden;
  }

  .mini-device .device-island {
    display: block;
    top: 11px;
    width: 76px;
    height: 24px;
  }

  .scene {
    min-height: 0;
    height: auto;
    border-radius: 24px;
    padding: 52px 14px 14px;
    gap: 10px;
    overflow: hidden;
  }

  .scene h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .scene-art {
    min-height: 0;
  }

  .scene-art img {
    max-height: 88%;
  }

  .scene p {
    padding: 11px 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  .flow-list {
    min-height: 0;
  }

  .flow-item {
    min-height: clamp(138px, 22svh, 200px);
    padding: 20px 16px 18px;
  }

  .flow-item.is-active {
    transform: none;
  }

  .flow-item h3 {
    font-size: clamp(22px, 7vw, 31px);
  }

  .sport-card {
    min-height: 380px;
  }

  .sport-card img {
    width: 68%;
  }

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

@media (max-width: 440px) {
  .store-badge {
    width: 148px;
    height: 44px;
  }

  .product {
    padding: 78px 0;
  }

  .flow-preview {
    min-height: 664px;
    padding: 14px;
  }

  .flow-list {
    min-height: 0;
  }

  .mini-device {
    width: min(300px, 82vw);
    max-width: 78vw;
    height: auto;
    padding: 0;
  }

  .scene {
    padding: 44px 9px 9px;
    gap: 8px;
  }

  .scene-art {
    min-height: 0;
  }

  .scene-art img {
    max-height: 88%;
  }

  .product-strip {
    justify-content: flex-start;
    padding: 0 18px;
    overflow-x: auto;
  }
}

@media (max-width: 374px) {
  .flow-preview {
    top: 84px;
    min-height: 602px;
    z-index: 3;
    padding: 10px;
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(18, 18, 18, 0.68)),
      rgba(255, 255, 255, 0.05);
  }

  .flow-list {
    min-height: 0;
  }

  .mini-device {
    width: min(274px, 76vw);
    max-width: 74vw;
    height: auto;
  }

  .flow-item {
    min-height: 172px;
  }
}

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