:root {
  --bg: #07111f;
  --bg-soft: #0d1a2a;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.72);
  --dark-text: #122033;
  --accent: #ff6b57;
  --accent-deep: #f44d3b;
  --line: rgba(255, 255, 255, 0.1);
  --success: #23b489;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 87, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(35, 180, 137, 0.14), transparent 26%),
    linear-gradient(160deg, #07111f 0%, #0d1a2a 50%, #16253b 100%);
  min-height: 100vh;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  padding: 4px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 16px 38px rgba(244, 77, 59, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.info-card,
.legal-card,
.feature-card,
.pricing-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

.hero-stat {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  padding: 26px;
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 87, 0.28), transparent 68%);
}

.map-mock {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  background-size: 50px 50px, 50px 50px, auto;
  min-height: 360px;
  border-radius: 24px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.route-line {
  position: absolute;
  inset: 0;
}

.route-line svg {
  width: 100%;
  height: 100%;
}

.map-badge,
.route-summary,
.watch-pill {
  position: relative;
  z-index: 1;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
}

.route-summary {
  max-width: 230px;
  margin-top: 160px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.route-summary strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.route-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.watch-pill {
  margin-top: 18px;
  margin-left: auto;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(35, 180, 137, 0.18);
  color: #dffaf0;
  border: 1px solid rgba(35, 180, 137, 0.22);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: 28px 0 56px;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.section-header p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid,
.info-grid,
.pricing-grid,
.legal-links {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.feature-card,
.info-card,
.pricing-card,
.legal-card {
  padding: 22px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.feature-card h3,
.info-card h3,
.pricing-card h3,
.legal-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.info-card p,
.pricing-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-card.highlight {
  background: linear-gradient(180deg, rgba(255, 107, 87, 0.12), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 107, 87, 0.22);
}

.price {
  margin: 14px 0 10px;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
}

.price-note {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(35, 180, 137, 0.16);
  color: #dffaf0;
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark-text);
}

.legal-card p {
  color: rgba(18, 32, 51, 0.72);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0 56px;
  color: var(--muted);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

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

.page-hero {
  padding: 62px 0 28px;
}

.page-hero p {
  max-width: 70ch;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 64px;
}

.legal-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-sidebar h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.legal-sidebar p,
.legal-sidebar li {
  color: var(--muted);
  line-height: 1.6;
}

.legal-sidebar ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--dark-text);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
  color: rgba(18, 32, 51, 0.8);
  line-height: 1.72;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 107, 87, 0.12);
  border: 1px solid rgba(255, 107, 87, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .info-grid,
  .pricing-grid,
  .legal-links,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(var(--content-width), calc(100% - 28px));
  }

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

  .hero {
    padding-top: 44px;
  }

  .hero-copy,
  .hero-card,
  .feature-card,
  .info-card,
  .pricing-card,
  .legal-card,
  .legal-sidebar,
  .legal-content section {
    padding: 18px;
  }

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