:root {
  --bg-deep: #081227;
  --bg-panel: rgba(9, 24, 58, 0.72);
  --bg-panel-strong: rgba(10, 26, 70, 0.84);
  --border-soft: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(58, 168, 255, 0.24);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --accent: #1e6bff;
  --accent-bright: #3aa8ff;
  --success: #37c871;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-main);
  font-family:
    "SF Pro Display",
    "Segoe UI",
    sans-serif;
  background:
    linear-gradient(rgba(5, 14, 29, 0.5), rgba(5, 14, 29, 0.72)),
    url("./assets/background.png") center/cover fixed no-repeat;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(31rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(8, 18, 39, 0.94);
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-title {
  margin: 0 0 0.35rem;
  color: var(--text-main);
  font-weight: 800;
}

.cookie-text {
  margin: 0.2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-bright);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-btn {
  min-height: 2.8rem;
  padding: 0 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
}

.cookie-btn.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.page-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(30, 107, 255, 0.22), transparent 24%),
    radial-gradient(circle at left center, rgba(58, 168, 255, 0.12), transparent 28%),
    linear-gradient(rgba(4, 9, 22, 0.16), rgba(4, 9, 22, 0.4));
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.4rem 0 0.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding-left: 0.15rem;
}

.brand img {
  height: 182px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.header-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  width: 100%;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(8, 18, 39, 0.72);
  backdrop-filter: blur(16px);
  color: var(--text-main);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  align-self: flex-end;
}

.language-switch span {
  white-space: nowrap;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.language-switch select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(8, 18, 39, 0.92);
  color: var(--text-main);
  padding: 0.42rem 0.6rem;
  outline: none;
  font-weight: 700;
}

.language-switch select:focus-visible {
  border-color: rgba(58, 168, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.24);
}

.language-switch select option {
  background: #0b1b3f;
  color: #ffffff;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: rgba(8, 18, 39, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 18px;
  color: var(--text-muted);
  transition: background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

main {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.hero {
  min-height: calc(100vh - 6.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-copy,
.device-screen,
.feature-card,
.experience-panel,
.launch-card {
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--bg-panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.launch-card h2,
.route-card h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(1.4rem, 2.05vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-text,
.feature-card p,
.experience-copy p:last-child,
.launch-card p,
.section-heading {
  color: var(--text-muted);
}

.hero-text {
  max-width: 34rem;
  margin: 1rem 0 0;
  line-height: 1.6;
  font-size: 0.98rem;
}

.hero-text-secondary {
  margin-top: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.button {
  min-height: 3.25rem;
  padding: 0 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--text-main);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(30, 107, 255, 0.35);
}

.button-secondary {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  color: var(--accent-bright);
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-frame {
  width: min(100%, 25.5rem);
  padding: 0.8rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.device-screen {
  position: relative;
  overflow: hidden;
  min-height: 36rem;
  padding: 1.1rem;
  border-radius: 24px;
  background:
    linear-gradient(rgba(8, 18, 39, 0.46), rgba(8, 18, 39, 0.74)),
    url("./assets/background.png") center/cover no-repeat;
}

.screen-top,
.signal-grid,
.feature-strip,
.feature-grid,
.experience-list,
.site-footer {
  display: flex;
}

.screen-top {
  align-items: center;
  justify-content: space-between;
}

.screen-pill,
.screen-time,
.route-label,
.feature-index {
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card {
  margin-top: 4.2rem;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(9, 24, 58, 0.66);
  backdrop-filter: blur(14px);
}

.route-card h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.route-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.signal-grid article {
  min-width: 0;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.signal-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.signal-grid strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.map-lines {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  opacity: 0.5;
}

.line {
  position: absolute;
  inset: auto auto 0;
  width: 110%;
  display: block;
  border-top: 2px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.line-one {
  left: -8%;
  bottom: 6%;
  height: 32%;
}

.line-two {
  left: -4%;
  bottom: 12%;
  height: 44%;
  border-top-color: rgba(58, 168, 255, 0.42);
}

.line-three {
  left: -10%;
  bottom: 20%;
  height: 56%;
  border-top-color: rgba(55, 200, 113, 0.28);
}

.feature-strip {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 4.2rem;
}

.feature-strip p {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(9, 24, 58, 0.58);
  color: var(--text-muted);
}

.features,
.experience,
.launch {
  padding-top: 1rem;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.experience-copy h2,
.launch-card h2 {
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  line-height: 1.08;
}

.feature-grid {
  gap: 1rem;
  margin-top: 1.8rem;
}

.feature-card {
  flex: 1;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.feature-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 1.6rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
}

.experience-panel,
.launch-card {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.experience-panel {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 1.8rem;
}

.experience-copy p:last-child {
  line-height: 1.75;
}

.experience-list {
  flex-direction: column;
  gap: 0.9rem;
}

.experience-list div {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
}

.experience-list span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.experience-list strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.04rem;
}

.launch-card {
  margin-top: 1.8rem;
}

.launch-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.launch-platforms {
  margin: -0.4rem 0 0.7rem;
  color: rgba(99, 215, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin: -0.1rem 0 0.9rem;
}

.store-badge-link {
  display: inline-flex;
  border-radius: 10px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  transform: translateY(-1px);
  opacity: 0.95;
}

.store-badge {
  display: block;
  height: 44px;
  width: auto;
}

.launch-form input {
  flex: 1 1 18rem;
  min-height: 3.35rem;
  padding: 0 1rem;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.launch-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.launch-form input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(30, 107, 255, 0.15);
}

.launch-form button {
  min-height: 3.35rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 16px;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 0 2.6rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer p,
.footer-main {
  margin: 0;
}

.footer-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.88);
}

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

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

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

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 4.6vw, 2.8rem);
  }

  .feature-grid {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: 0.8rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .site-header {
    align-items: stretch;
    gap: 0.8rem;
  }

  .header-controls {
    display: contents;
  }

  .language-switch {
    order: 0;
    width: auto;
    justify-content: flex-end;
    align-self: flex-end;
    margin: 0 0.1rem 0.3rem 0;
    padding: 0.3rem 0.42rem;
    font-size: 0.72rem;
    border-radius: 10px;
    gap: 0.35rem;
  }

  .language-switch select {
    padding: 0.24rem 0.36rem;
    font-size: 0.72rem;
    border-radius: 7px;
  }

  .site-nav {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.38fr;
    gap: 0.45rem;
    padding: 0.55rem;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 0.9rem 0.12rem;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  main {
    padding-top: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .experience-panel,
  .launch-card {
    padding: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
    line-height: 1.1;
    max-width: none;
    width: 100%;
  }

  .route-card h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
    line-height: 1.02;
  }

  .launch-card h2 {
    font-size: clamp(1.4rem, 6.2vw, 1.95rem);
    line-height: 1.08;
  }

  .launch-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .hero-stats strong {
    font-size: 1.03rem;
  }

  .hero-stats span {
    font-size: 0.86rem;
  }

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

  .hero-actions,
  .launch-form {
    flex-direction: column;
  }

  .store-badge {
    height: 40px;
  }

  .signal-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .launch-form button,
  .launch-form input {
    width: 100%;
  }

  .launch-form input {
    flex: 0 0 auto;
    min-height: 3.1rem;
  }

  .brand {
    order: 1;
    justify-content: center;
    width: 100%;
    padding-left: 0;
  }

  .brand img {
    height: 204px;
  }

  .device-screen {
    min-height: 35rem;
  }

  .legal-links {
    justify-content: center;
    font-size: 0.95rem;
  }

  .footer-main {
    gap: 0.6rem;
    font-size: 0.98rem;
  }
}
