:root {
  color-scheme: dark light;
  --color-background: #05090f;
  --color-surface: #0e1621;
  --color-surface-alt: #111b28;
  --color-text: #f5f7fa;
  --color-text-muted: #b4c2d3;
  --color-accent: #38d47b;
  --color-accent-strong: #2ab266;
  --color-border: rgba(255, 255, 255, 0.1);
  --max-width: 1100px;
  --font-base: "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 18px 40px rgba(3, 10, 22, 0.35);
  --shadow-sharp: 0 10px 24px rgba(0, 0, 0, 0.4);
  --transition-default: 220ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: radial-gradient(circle at 0% -20%, rgba(56, 212, 123, 0.15), transparent 55%),
    radial-gradient(circle at 100% 120%, rgba(56, 212, 123, 0.16), transparent 50%),
    var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

main {
  display: block;
}

section {
  padding: clamp(1.6rem, 3.5vw, 3rem) clamp(1.25rem, 4vw, 2.4rem);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: clamp(0.4rem, 2vw, 0.6rem);
}

.section-heading p {
  color: var(--color-text-muted);
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  padding: 0.75rem 1.2rem;
  background: var(--color-accent);
  color: #03121c;
  border-radius: 999px;
  z-index: 999;
  transition: top var(--transition-default);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(14px);
  background: rgba(5, 9, 15, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.nav {
  margin-left: auto;
  display: none;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--color-text);
}


.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0;
  border-radius: 14px;
  transition: transform 160ms ease, box-shadow var(--transition-default);
  line-height: 0;
}

.app-store-badge img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 160px;
}

.app-store-badge:hover {
  transform: translateY(-1px);
}

.app-store-badge:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.app-store-badge--large img {
  max-width: 200px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-default), color var(--transition-default), border-color var(--transition-default), transform 160ms ease;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.button--primary {
  background: var(--color-accent);
  color: #04121c;
  border-color: transparent;
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  background: var(--color-accent-strong);
}

.button--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
}

.button--alt {
  background: var(--color-accent);
  color: #04121c;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(56, 212, 123, 0.3);
  font-size: 1.15rem;
  border-radius: 22px;
  padding: 0.12rem 1.2rem;
  line-height: 1.1;
}

.button--alt:hover,
.button--alt:focus-visible {
  transform: translateY(-1px);
  background: var(--color-accent-strong);
}

.button--link {
  background: transparent;
  color: var(--color-accent);
  padding-inline: 0;
  border-radius: 0;
  border-bottom: 1px solid transparent;
}

.button--link:hover,
.button--link:focus-visible {
  border-color: rgba(56, 212, 123, 0.4);
}

.button--large {
  padding: 0.8rem 1.9rem;
  font-size: 1.1rem;
}

.menu-toggle {
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  display: block;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.mobile-nav {
  display: none;
  background: rgba(5, 9, 15, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav[aria-hidden="false"] {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1.2rem 1.5rem 2rem;
  display: grid;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--color-text);
  font-weight: 600;
}

.mobile-nav__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

/* Keep hero video framed without extra vertical space */
.hero {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1.5rem;
  overflow: hidden;
  background: #000;
}

.hero__media,
.hero__content {
  grid-area: 1 / 1;
}

.hero__media {
  width: min(100%, 1200px);
  justify-self: center;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.1);
  display: block;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 1.5rem;
  justify-self: center;
  align-self: center;
  text-align: center;
}

.hero__download {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 640px);
  margin-top: clamp(0.75rem, 2vw, 1.2rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.2rem);
  display: flex;
  justify-content: center;
}

.hero__download-desktop {
  display: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.hero__subtitle {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin: 0;
}

.hero__actions {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.hero__mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 12, 20, 0.28);
  backdrop-filter: blur(8px);
}

.hero-toggle {
  flex: 1 1 0;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition-default), color var(--transition-default), box-shadow var(--transition-default);
}

.hero-toggle:hover,
.hero-toggle:focus-visible {
  color: var(--color-text);
  outline: 2px solid rgba(56, 212, 123, 0.6);
  outline-offset: 2px;
}

.hero-toggle.is-active {
  background: var(--color-accent);
  color: #04121c;
  box-shadow: 0 12px 30px rgba(56, 212, 123, 0.35);
}



.feature-overview {
  background: var(--color-surface);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-surface-alt);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.road-track {
  background: linear-gradient(180deg, rgba(8, 14, 21, 0.95) 0%, rgba(5, 9, 15, 0.95) 100%);
}

.road-track__layout {
  display: grid;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.road-track__card {
  background: rgba(13, 20, 30, 0.9);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sharp);
}

.road-track__card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.road-track__card ul {
  margin: 1.2rem 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--color-text-muted);
}

.inline-link {
  color: var(--color-accent);
  font-weight: 600;
}

.reviews {
  background: var(--color-surface);
  padding-block: clamp(1.4rem, 3vw, 2.2rem);
  padding-inline: 0;
}

.reviews .section-heading {
  margin-bottom: clamp(1.2rem, 3.5vw, 1.8rem);
  padding-inline: clamp(1.25rem, 6vw, 3rem);
}

.reviews-carousel {
  width: 100%;
  margin: clamp(1rem, 3vw, 1.8rem) 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: rgba(11, 17, 26, 0.9);
  box-shadow: none;
}

.reviews-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-carousel__track {
  display: flex;
  --review-gap: clamp(1.1rem, 2.5vw, 1.5rem);
  gap: var(--review-gap);
  padding: clamp(1rem, 3vw, 1.8rem);
  width: max-content;
  min-height: 100%;
  will-change: transform;
  align-items: stretch;
}

.review-card {
  flex: 0 0 auto;
  width: clamp(200px, 90vw, 320px);
  min-height: clamp(220px, 32vw, 280px);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  display: grid;
  gap: 1rem;
  align-content: start;
  background: rgba(7, 12, 20, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.review-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

.review-card .stars {
  color: #ffd700;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  font-size: 1.4rem;
}

.stars {
  letter-spacing: 0.15em;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}


.screenshots {
  background: var(--color-surface);
  padding-inline: clamp(0.75rem, 4vw, 1.5rem);
}

.screenshots .section-heading {
  padding-inline: clamp(0.75rem, 4vw, 1.5rem);
}

.screen-stack {
  display: grid;
  gap: clamp(1.3rem, 3.5vw, 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.screen-card {
  display: grid;
  gap: 1.35rem;
  background: rgba(12, 19, 28, 0.92);
  border-radius: 22px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.screen-card figure {
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}


.screen-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}



.screen-card__intro {
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}

.screen-card__intro h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
}

.screen-card__intro p {
  margin: 0 0 0.2rem;
  color: var(--color-text-muted);
}

.screen-card__intro ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

@media (max-width: 767px) {
  .screen-card {
    padding: clamp(1rem, 4vw, 1.25rem);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    gap: 0.75rem;
    box-shadow: var(--shadow-soft);
    margin-inline: 0;
  }

  .screen-card__intro {
    padding: 0;
    gap: 0.3rem;
  }

  .screen-card__intro ul {
    padding-left: 0.85rem;
    gap: 0.24rem;
  }

  .screen-card figure {
    justify-content: flex-start;
    margin: 0;
  }

  .screen-card img {
    border-radius: 16px;
  }
}

.tech-specs {
  background: var(--color-surface);
}

.tech-specs .spec-table-wrapper {
  max-width: 940px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 17, 26, 0.85);
  box-shadow: var(--shadow-soft);
}

.tech-specs table {
  width: 100%;
  border-collapse: collapse;
}

.tech-specs th,
.tech-specs td {
  padding: 1.1rem 1.4rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-specs th {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.tech-specs th:first-child,
.tech-specs td:first-child {
  width: 22%;
}

@media (max-width: 1023px) {
  .hero__content {
    gap: 1.05rem;
  }

  .hero__actions {
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .tech-specs th:first-child,
  .tech-specs td:first-child,
  .tech-specs th:last-child,
  .tech-specs td:last-child {
    width: auto;
  }

  .section-heading {
    margin-bottom: clamp(1.1rem, 5vw, 1.8rem);
  }

  .section-heading h2 {
    margin-bottom: clamp(0.3rem, 2.5vw, 0.5rem);
  }

  .site-header__inner {
    padding: 0.6rem 1rem;
    gap: 0.8rem;
  }

  section {
    padding: 1.8rem 1rem;
  }

  .reviews {
    padding-top: 1.5rem;
  }

  .accessory-grid {
    margin: 0 auto;
    gap: 1.2rem;
  }

  .hero {
    padding: 0;
    padding-bottom: clamp(0.75rem, 2vw, 1.2rem);
  }

  .hero__media {
    width: 100%;
    border-radius: 0;
  }

  .hero__content {
    padding: 1.6rem 1.2rem;
    margin: 0;
    gap: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.1rem);
    margin-top: -0.2rem;
  }

  .hero__actions {
    gap: 0.65rem;
  }
}

.tech-specs td {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.tech-specs tr:last-child th,
.tech-specs tr:last-child td {
  border-bottom: none;
}

.tech-specs__note {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-align: left;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.accessories {
  background: var(--color-surface-alt);
}

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.accessory-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  background: rgba(10, 15, 24, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accessory-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.35);
}

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

.accessory-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3.8vw, 2.1rem) clamp(2rem, 4.2vw, 2.5rem) clamp(1.6rem, 3.8vw, 2.3rem) clamp(1.6rem, 4.8vw, 2.6rem);
  word-wrap: break-word;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.accessory-card__body h3 {
  margin: 0;
  font-size: 1.25rem;
  width: 100%;
}

.accessory-card__body p {
  margin: 0;
  color: var(--color-text-muted);
  width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.accessory-card__promo {
  text-align: center;
  font-weight: 600;
  color: var(--color-text);
}

.accessory-card__body ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  width: 100%;
}

.accessory-card__note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.badge {
  display: inline-flex;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 212, 123, 0.2);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.accessory-card .button {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding-inline: 1.2rem;
}

.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: var(--color-text-muted);
  background: #04070d;
  font-size: 0.95rem;
  display: grid;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition-default), transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(56, 212, 123, 0.25);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.faq {
  background: linear-gradient(180deg, rgba(5, 9, 15, 0.95) 0%, rgba(9, 14, 22, 0.98) 100%);
}

.faq__items {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details {
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  background: rgba(11, 18, 27, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq details p {
  margin-bottom: 0;
  margin-top: 0.8rem;
  color: var(--color-text-muted);
}

.download {
  text-align: center;
  background: var(--color-surface-alt);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.download h2 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.download p {
  margin: 0 auto 2rem;
  max-width: 620px;
  color: var(--color-text-muted);
}

.download__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: var(--color-text-muted);
  background: #04070d;
  font-size: 0.95rem;
  display: grid;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer nav a {
  color: var(--color-text-muted);
}

.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;
}

@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero__content {
    margin-left: 0;
  }

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

@media (min-width: 1024px) {
  .site-header__inner {
    padding-inline: 2rem;
  }

  section {
    padding-inline: clamp(2rem, 8vw, 4rem);
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__download {
    display: none;
  }

  .hero__download-desktop {
    display: inline-flex;
  }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

  .reviews-carousel__track {
    transition: none;
  }
}
+
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
