:root {
  --bg-main: #06010f;
  --bg-deep: #090013;
  --surface: rgba(15, 10, 24, 0.72);
  --surface-strong: rgba(15, 10, 24, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text-main: #f7f3ff;
  --text-soft: rgba(247, 243, 255, 0.76);
  --text-dim: rgba(247, 243, 255, 0.48);
  --violet: #9a4dff;
  --violet-soft: #bb7dff;
  --purple: #6a1cff;
  --yellow: #ffd22f;
  --yellow-deep: #ffad0f;
  --pink-glow: rgba(180, 78, 255, 0.24);
  --shadow-xl: 0 36px 100px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 84px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(154, 77, 255, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at right center,
      rgba(255, 210, 47, 0.07),
      transparent 24%
    ),
    linear-gradient(180deg, #05010c 0%, #080111 46%, #04000a 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.8;
}

.aurora-a {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -8rem;
  background: rgba(154, 77, 255, 0.22);
}

.aurora-b {
  width: 24rem;
  height: 24rem;
  right: -6rem;
  top: 14rem;
  background: rgba(255, 210, 47, 0.12);
}

.aurora-c {
  width: 22rem;
  height: 22rem;
  left: 30%;
  bottom: -8rem;
  background: rgba(106, 28, 255, 0.16);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 85%);
}

.road-lines {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  opacity: 0.12;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      -72deg,
      transparent 0 34px,
      rgba(255, 255, 255, 0.05) 34px 36px,
      transparent 36px 76px
    );
  transform: skewY(-8deg) translateY(12%);
}

.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.8) 0.6px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 20%,
      rgba(255, 255, 255, 0.7) 0.7px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(255, 255, 255, 0.7) 0.6px,
      transparent 1px
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 255, 255, 0.7) 0.6px,
      transparent 1px
    );
  background-size: 220px 220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    180deg,
    rgba(8, 2, 16, 0.92),
    rgba(8, 2, 16, 0.7)
  );
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(106, 28, 255, 0.95),
    rgba(198, 120, 255, 0.95)
  );
  box-shadow:
    0 14px 34px rgba(154, 77, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-icon.small {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--text-dim);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.site-nav .nav-cta {
  color: #14061f;
  background: linear-gradient(
    135deg,
    rgba(255, 210, 47, 0.95),
    rgba(255, 175, 15, 0.95)
  );
  box-shadow: 0 14px 30px rgba(255, 210, 47, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding: 56px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(154, 77, 255, 0.16),
    rgba(255, 210, 47, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #14061f;
  background: linear-gradient(135deg, #ffd22f, #ffb20f);
  box-shadow:
    0 20px 42px rgba(255, 210, 47, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.btn-wide {
  min-width: 250px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 600;
}

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

.stat-box {
  position: relative;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.stat-box::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -26px;
  top: -24px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(154, 77, 255, 0.18),
    transparent 70%
  );
}

.stat-box strong {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.stat-box span {
  position: relative;
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

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

.cockpit-panel {
  position: relative;
  min-height: 760px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.cockpit-panel::before {
  content: '';
  position: absolute;
  inset: auto auto -18% -14%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(154, 77, 255, 0.22),
    transparent 72%
  );
}

.cockpit-panel::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    135deg,
    rgba(154, 77, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.signal-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 210, 47, 0.8);
}

.badge-a {
  top: 18px;
  left: 18px;
}

.badge-b {
  top: 138px;
  right: 24px;
}

.badge-c {
  bottom: 128px;
  left: 28px;
}

.phone-stage {
  display: grid;
  place-items: center;
  height: 100%;
}

.phone-shell {
  position: relative;
  width: min(340px, 100%);
  padding: 14px;
  border-radius: 40px;
  background: linear-gradient(
    145deg,
    rgba(18, 16, 28, 0.98),
    rgba(7, 4, 14, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease;
}

.phone-shell img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 28px;
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 35%;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: #0a0712;
  z-index: 2;
}

.dashboard-chip {
  position: absolute;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.dashboard-chip p {
  margin: 0 0 6px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

.dashboard-chip strong {
  line-height: 1.45;
}

.chip-left {
  left: 24px;
  bottom: 24px;
}

.chip-right {
  right: 24px;
  bottom: 24px;
}

.section {
  padding: 86px 0;
}

.metrics-strip {
  padding-top: 10px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
}

.metric-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.metric-card strong {
  font-size: 1.03rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h1,
.section-head h2 {
  margin: 16px 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.feature-preview {
  position: sticky;
  top: 108px;
}

.preview-console {
  padding: 26px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-xl);
}

.console-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.console-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.console-top span:nth-child(1) {
  background: rgba(255, 210, 47, 0.8);
}

.console-top span:nth-child(2) {
  background: rgba(154, 77, 255, 0.8);
}

.console-top span:nth-child(3) {
  background: rgba(255, 255, 255, 0.18);
}

.preview-phone {
  display: flex;
  justify-content: center;
}

.phone-shell-preview {
  width: min(320px, 100%);
}

.preview-copy {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.preview-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.preview-copy h3 {
  margin: 0 0 10px;
  font-size: 1.48rem;
}

.preview-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  outline: none;
}

.feature-card:hover,
.feature-card:focus-visible,
.feature-card.active-feature {
  transform: translateY(-4px);
  border-color: rgba(154, 77, 255, 0.42);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(154, 77, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(154, 77, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}

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

.feature-index {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.24;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.route-timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(154, 77, 255, 0.3),
    rgba(255, 210, 47, 0.2)
  );
}

.route-step {
  position: relative;
  padding-left: 82px;
}

.route-marker {
  position: absolute;
  left: 0;
  top: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #14061f;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(255, 210, 47, 0.98),
    rgba(255, 175, 15, 0.95)
  );
  box-shadow: 0 16px 36px rgba(255, 210, 47, 0.22);
}

.route-content {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
}

.route-copy h3 {
  margin: 0 0 12px;
  font-size: 1.82rem;
  line-height: 1.08;
}

.route-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.route-shot {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.route-shot img {
  width: min(280px, 100%);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
}

.route-dual img {
  width: calc(50% - 7px);
  aspect-ratio: 9 / 19.5;
}

.slider-wrap {
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-xl);
}

.slider-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.slider-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.slider-topbar h3 {
  margin: 0;
  font-size: 1.65rem;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.25rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: rgba(154, 77, 255, 0.16);
  border-color: rgba(154, 77, 255, 0.3);
}

.slider-stage {
  overflow: hidden;
  border-radius: 28px;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.slide-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px;
}

.slide-card img {
  width: min(380px, 100%);
  border-radius: 28px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: var(--transition);
}

.slider-dots button.active-dot {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(154, 77, 255, 0.96),
    rgba(255, 210, 47, 0.92)
  );
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.review-card:hover,
.featured-review {
  transform: translateY(-4px);
  border-color: rgba(154, 77, 255, 0.34);
  background: linear-gradient(
    180deg,
    rgba(154, 77, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}

.review-stars {
  color: var(--yellow);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.review-user {
  display: grid;
  gap: 4px;
  margin-top: 24px;
}

.review-user span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.cta-section {
  padding-bottom: 90px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(154, 77, 255, 0.16);
  background:
    radial-gradient(
      circle at left center,
      rgba(154, 77, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--shadow-xl);
}

.cta-copy h2 {
  margin: 16px 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
  max-width: 60ch;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 26px 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(7, 2, 12, 0.62);
  backdrop-filter: blur(12px);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.privacy-main {
  padding: 24px 0 80px;
}

.privacy-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: var(--shadow-card);
}

.privacy-card h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.privacy-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.84;
}

.privacy-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.static-nav {
  display: flex;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .feature-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    position: relative;
    top: auto;
  }

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

  .route-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-stats,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .cockpit-panel {
    min-height: 640px;
  }

  .badge-a,
  .badge-b,
  .badge-c,
  .chip-left,
  .chip-right {
    position: static;
  }

  .cockpit-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .route-dual {
    flex-direction: column;
  }

  .route-dual img {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(
      180deg,
      rgba(12, 5, 20, 0.98),
      rgba(8, 2, 16, 0.98)
    );
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

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

  .static-nav {
    display: none;
  }

  .site-nav a {
    width: 100%;
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 30px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .hero-text,
  .section-head p,
  .route-copy p,
  .cta-copy p,
  .privacy-card p {
    font-size: 0.97rem;
  }

  .preview-console,
  .feature-card,
  .route-content,
  .review-card,
  .privacy-card,
  .cta-panel,
  .slider-wrap,
  .cockpit-panel {
    border-radius: 24px;
  }

  .slider-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .privacy-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-tags {
    flex-direction: column;
  }

  .hero-tags span {
    width: 100%;
    text-align: center;
  }

  .route-step {
    padding-left: 70px;
  }

  .route-marker {
    width: 52px;
    height: 52px;
    font-size: 0.9rem;
  }

  .slide-card img {
    width: min(100%, 340px);
  }

  .cta-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}
