:root {
  color-scheme: light;
  --bg: #f2f6f9;
  --bg-deep: #081120;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.68);
  --surface-dark: rgba(255, 255, 255, 0.12);
  --text: #0e172a;
  --text-soft: #5c677d;
  --line: rgba(14, 23, 42, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff8a1d;
  --accent-strong: #ffb748;
  --accent-cool: #1bb5ff;
  --accent-mint: #39d0a4;
  --shadow-soft: 0 18px 48px rgba(8, 17, 32, 0.08);
  --shadow-deep: 0 28px 72px rgba(8, 17, 32, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --display-font: "Space Grotesk", "IBM Plex Sans", "Manrope", sans-serif;
  --body-font: "IBM Plex Sans", "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(27, 181, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 29, 0.18), transparent 26%),
    linear-gradient(180deg, #f9fbfd 0%, #f2f6f9 48%, #eef3f7 100%);
  line-height: 1.65;
}

a {
  color: #0a63d8;
}

img {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 80%);
  z-index: -1;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 252, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 23, 42, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.88;
}

.nav a:hover,
.logo:hover {
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 108px;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 20%, rgba(27, 181, 255, 0.34), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255, 183, 72, 0.28), transparent 24%),
    linear-gradient(135deg, #081120 0%, #0a1830 56%, #122344 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -180px;
  background: rgba(57, 208, 164, 0.16);
  filter: blur(8px);
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -80px;
  top: 30px;
  background: rgba(255, 138, 29, 0.12);
  filter: blur(12px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: end;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

.eyebrow,
.section-kicker,
.mini-label,
.product-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.section-kicker,
.mini-label {
  color: #b25300;
  background: rgba(255, 183, 72, 0.16);
  border: 1px solid rgba(255, 183, 72, 0.22);
}

.product-label {
  margin-bottom: 8px;
  background: rgba(27, 181, 255, 0.1);
  border: 1px solid rgba(27, 181, 255, 0.18);
  color: #0d63ac;
}

.hero h1,
.section-head h2,
.hero-mini-card h2,
.card h3,
.feature h3,
.faq-item h3,
.product-card h3,
.route-card h3,
.step-card h3,
.metric-value,
.download-strip h2,
.site-footer h3 {
  font-family: var(--display-font);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 4.8vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero .lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span,
.keyword-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button,
.button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #081120;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-deep);
}

.button.ghost,
.button.ghost:visited {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  box-shadow: none;
}

.button.secondary,
.button.secondary:visited {
  background: rgba(14, 23, 42, 0.04);
  border-color: rgba(14, 23, 42, 0.08);
  color: var(--text);
  box-shadow: none;
}

.button.small,
.button.small:visited {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.92rem;
}

.hero-panel,
.card,
.feature,
.product-card,
.faq-item,
.route-card,
.step-card,
.metric-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 26px;
  color: #ffffff;
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.hero-card-stack {
  display: grid;
  gap: 14px;
}

.hero-mini-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.hero-mini-card h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.hero-mini-card p,
.hero-list,
.hero-panel .mini-label {
  color: rgba(255, 255, 255, 0.84);
}

.hero-list {
  margin: 0;
  padding-left: 18px;
}

.hero-list li + li {
  margin-top: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-stats div {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--display-font);
  font-size: 1.7rem;
  font-weight: 700;
}

.stat-copy {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.42);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-head h2,
.section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-copy {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
}

.metric-grid,
.product-grid,
.route-grid,
.steps-grid,
.faq-list,
.features,
.grid {
  display: grid;
  gap: 20px;
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-grid,
.faq-list,
.features,
.grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.route-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.metric-card,
.step-card,
.route-card,
.product-card,
.faq-item,
.feature,
.card {
  padding: 24px;
}

.product-card-preview {
  margin: -24px -24px 18px;
  padding: 18px 18px 0;
  border-bottom: 1px solid rgba(14, 23, 42, 0.06);
  background:
    radial-gradient(circle at top, rgba(27, 181, 255, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(8, 17, 32, 0.03), rgba(8, 17, 32, 0));
}

.product-card-device {
  width: min(72%, 220px);
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 32, 0.12);
  border-radius: 28px;
  background: #081120;
  box-shadow: 0 18px 40px rgba(8, 17, 32, 0.18);
}

.product-card-device img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.metric-card {
  padding: 28px;
}

.metric-value {
  margin: 0 0 6px;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}

.metric-label,
.feature p,
.product-card p,
.faq-item p,
.route-card p,
.step-card p,
.card p,
.footer-copy {
  margin: 0;
  color: var(--text-soft);
}

.card.highlight {
  background:
    linear-gradient(135deg, rgba(255, 183, 72, 0.24), rgba(57, 208, 164, 0.12)),
    var(--surface);
}

.list,
.product-points {
  margin: 14px 0 0;
  padding-left: 18px;
}

.list li + li,
.product-points li + li {
  margin-top: 8px;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.keyword-row span {
  background: rgba(14, 23, 42, 0.04);
  border: 1px solid rgba(14, 23, 42, 0.08);
  color: #0f4f9b;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.screenshot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 24vw);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.screenshot-shot {
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(8, 17, 32, 0.12);
  border-radius: 30px;
  background: #081120;
  box-shadow: 0 22px 46px rgba(8, 17, 32, 0.18);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.screenshot-summary h3 {
  margin: 6px 0 10px;
  font-size: 1.15rem;
}

.screenshot-summary p {
  margin: 0;
}

.screenshot-strip::-webkit-scrollbar {
  height: 10px;
}

.screenshot-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(8, 17, 32, 0.18);
}

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

.text-link {
  color: #0a63d8;
  font-weight: 700;
  text-decoration: none;
}

.route-card h3 a,
.product-card h3 a,
.feature h3 a,
.faq-item h3 a {
  color: inherit;
  text-decoration: none;
}

.text-link:hover,
.site-footer a:hover,
.locale-grid a:hover,
.breadcrumb-row a:hover,
.route-card h3 a:hover,
.product-card h3 a:hover,
.feature h3 a:hover,
.faq-item h3 a:hover {
  text-decoration: underline;
}

.step-card {
  position: relative;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(27, 181, 255, 0.1);
  color: #0a63d8;
  font-family: var(--display-font);
  font-weight: 700;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-weight: 600;
}

.breadcrumb-row a {
  text-decoration: none;
}

.locale-block {
  margin-top: 22px;
}

.locale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.locale-grid a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(14, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.download-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 72, 0.24), transparent 24%),
    linear-gradient(135deg, #081120 0%, #102141 54%, #14315f 100%);
  box-shadow: var(--shadow-deep);
}

.download-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.download-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.download-strip .button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-card {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(14, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at top left, rgba(27, 181, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #091121 0%, #050a15 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 1fr) minmax(180px, 0.9fr);
  gap: 28px;
}

.footer-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #9dd4ff;
  text-decoration: none;
}

.sticky-download-bar {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 30;
  display: none;
  gap: 10px;
  width: min(calc(100% - 24px), 540px);
  padding: 12px;
  border: 1px solid rgba(14, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(8, 17, 32, 0.2);
}

@media (max-width: 980px) {
  .hero-grid,
  .screenshot-layout,
  .download-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    font-size: 0.9rem;
    gap: 10px 14px;
  }

  .hero {
    padding: 78px 0 92px;
  }

  .section {
    padding: 64px 0;
  }

  .metric-card,
  .step-card,
  .route-card,
  .product-card,
  .faq-item,
  .feature,
  .card,
  .hero-panel {
    padding: 20px;
  }

  .download-strip {
    padding: 24px;
  }

  .product-card-preview {
    margin: -20px -20px 16px;
  }

  .screenshot-strip {
    grid-auto-columns: minmax(190px, 52vw);
  }

  .sticky-download-bar {
    display: flex;
  }

  .sticky-download-bar + .site-footer {
    padding-bottom: 132px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .cta,
  .product-actions,
  .download-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button.small {
    width: 100%;
  }

  .sticky-download-bar {
    width: calc(100% - 16px);
    padding: 10px;
  }

  .hero-points,
  .keyword-row {
    gap: 8px;
  }

  .product-card-device {
    width: min(76%, 210px);
  }

  .screenshot-strip {
    grid-auto-columns: minmax(180px, 70vw);
  }
}
