:root {
  --bg: #0b1018;
  --panel: #111a25;
  --panel-soft: #162332;
  --line: rgba(167, 184, 204, 0.2);
  --text: #eef4fb;
  --muted: #a8b6c7;
  --accent: #3cc0ff;
  --accent-strong: #18a4e8;
  --gold: #f7c948;
  --green: #6ee7a8;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(60, 192, 255, 0.16), transparent 32%),
    linear-gradient(225deg, rgba(110, 231, 168, 0.11), transparent 28%),
    var(--bg);
}

a {
  color: inherit;
}

.site-shell,
.policy-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.hero-section,
.info-band,
.product-card,
.policy-card {
  border: 1px solid var(--line);
  background: rgba(17, 26, 37, 0.94);
  box-shadow: var(--shadow);
}

.hero-section {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(60, 192, 255, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(22, 35, 50, 0.96), rgba(10, 16, 24, 0.98));
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.app-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #061019;
  background: linear-gradient(135deg, var(--accent), var(--green));
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.hero-copy {
  max-width: 740px;
  padding: 80px 0 12px;
}

.eyebrow,
.section-kicker,
.launcher-chip {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

h3 {
  margin: 16px 0 0;
  font-size: 2rem;
}

.subtitle,
.info-band > p,
.legal-actions p,
.product-desc,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.65;
}

.subtitle {
  max-width: 62ch;
  font-size: 1.13rem;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  margin-top: 22px;
  border-radius: 8px;
  padding: 26px;
}

.info-band.compact {
  align-items: center;
}

.catalog-section {
  padding: 42px 0 12px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section-note {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

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

.single-product {
  max-width: 680px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 8px;
  padding: 20px;
}

.card-banner {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.card-banner.dodge {
  background:
    linear-gradient(140deg, rgba(247, 201, 72, 0.34), transparent 42%),
    linear-gradient(180deg, #263746, #121724);
}

.launcher-chip {
  display: inline-flex;
  width: fit-content;
  color: #061019;
  background: var(--gold);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 0.7rem;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.meta-row dt,
.meta-row dd {
  margin: 0;
}

.meta-row dt {
  color: var(--muted);
}

.meta-row dd {
  text-align: right;
}

.legal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-actions p {
  flex: 1;
  min-width: 260px;
  margin: 0;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #061019;
  font-weight: 800;
  text-decoration: none;
}

.policy-shell {
  max-width: 900px;
}

.policy-card {
  border-radius: 8px;
  padding: 26px;
}

.policy-card header {
  margin-bottom: 28px;
}

.policy-card section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.policy-card h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.policy-card h2 {
  font-size: 1.45rem;
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .top-nav,
  .section-header,
  .info-band,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .top-nav,
  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .info-band {
    display: block;
  }

  .section-note {
    text-align: left;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .meta-row {
    flex-direction: column;
    gap: 4px;
  }

  .meta-row dd {
    text-align: left;
  }
}
