@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --launch-primary: #0066ff;
  --launch-ink: #141515;
  --launch-muted: #646868;
  --launch-soft: #f5f5f5;
  --launch-line: #e0e6e6;
  --launch-strong: #091315;
  --launch-shadow: rgba(9, 19, 21, 0.12) 0px 64px 64px -32px, rgba(9, 19, 21, 0.12) 0px 32px 32px -8px, rgba(9, 19, 21, 0.12) 0px 16px 16px -8px, rgba(9, 19, 21, 0.12) 0px 8px 8px -4px;
  --launch-shadow-soft: rgba(0, 0, 0, 0.04) 0px -1px 0.5px 0px inset, rgba(0, 0, 0, 0.02) 0px 8px 8px -4px, rgba(0, 0, 0, 0.03) 0px 4px 4px -2px, rgba(27, 27, 27, 0.03) 0px 3px 3px -1.5px, rgba(0, 0, 0, 0.04) 0px 0px 0px 1px;
}

html {
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, sans-serif;
  background: var(--launch-soft);
  color: var(--launch-ink);
}

*,
*::before,
*::after {
  min-width: 0;
}

body::before,
body::after,
.site-header::before {
  display: none !important;
}

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

.page-shell {
  width: min(100% - 40px, 1180px);
  max-width: none;
  margin: 0 auto;
  padding: 116px 0 64px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: min(100% - 40px, 1180px);
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  border-bottom: 1px solid var(--launch-line);
  border-radius: 0;
  background: rgba(245, 245, 245, 0.94);
  box-shadow: none;
  backdrop-filter: blur(18px);
  overflow: visible;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--launch-ink);
}

.brand img,
.logo-mark {
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain;
  box-shadow: none !important;
}

.brand-name {
  margin: 0;
  color: var(--launch-ink);
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.brand-accent {
  color: var(--launch-primary);
}

.brand-tag {
  display: none;
}

.nav-links,
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--launch-ink);
  font-size: 14px;
  font-weight: 400;
}

.nav-links a,
.site-nav a {
  color: var(--launch-ink);
  font-size: 14px;
  font-weight: 400;
}

.nav-links a:hover,
.site-nav a:hover,
.footer a:hover {
  color: var(--launch-primary);
}

.nav-toggle {
  justify-self: end;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--launch-line);
  border-radius: 16px;
  background: #fff;
  color: var(--launch-ink);
  box-shadow: var(--launch-shadow-soft);
  cursor: pointer;
}

.hero {
  max-width: 780px;
  margin: 0 0 42px;
}

.hero h1,
.privacy-section h1,
h1 {
  margin: 0;
  color: var(--launch-ink);
  font-family: Inter, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero p,
.privacy-content p,
.privacy-content ul,
.post-card p,
.article-card p,
.feature-card p,
.route-step p,
.cta-panel p {
  color: var(--launch-muted);
  font-size: 14px;
  line-height: 22px;
}

.eyebrow,
.post-meta,
.feature-card span,
.route-step span {
  color: var(--launch-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.privacy-section,
.article-card,
.cta-panel {
  border: 1px solid var(--launch-line);
  border-radius: 40px;
  background: #fff;
  box-shadow: var(--launch-shadow-soft);
}

.privacy-section {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 42px;
}

.privacy-content,
.post-grid,
.post-card,
.article-card,
.cta-panel {
  max-width: 100%;
}

.privacy-section .last-updated {
  color: var(--launch-muted);
  text-align: left;
}

.privacy-content h2,
.article-card h2,
.feature-card h2,
.route-step h2,
.route-step h3,
.post-card h2 {
  color: var(--launch-ink);
  font-family: Inter, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.privacy-content h2 {
  border-bottom: 1px solid var(--launch-line);
}

.privacy-content strong {
  color: var(--launch-ink);
}

.privacy-content a {
  color: var(--launch-primary);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  margin-top: 28px;
  padding: 32px;
  border-radius: 40px;
  background: var(--launch-strong);
  box-shadow: var(--launch-shadow);
}

.post-card,
.feature-card,
.route-step {
  border: 1px solid var(--launch-line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--launch-shadow-soft);
}

.post-card {
  padding: 24px;
}

.privacy-content h2,
.privacy-content p,
.privacy-content li,
.post-card h2,
.post-card p,
.article-card h1,
.article-card h2,
.article-card p,
.article-card li {
  overflow-wrap: anywhere;
}

.feature-grid,
.route-grid {
  gap: 18px;
}

.footer {
  margin-top: 52px;
  padding: 32px 0 0;
  display: block;
  border: 0;
  border-top: 1px solid var(--launch-line);
  background: transparent;
  color: var(--launch-muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 1fr));
  gap: 32px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-heading,
.footer strong {
  color: var(--launch-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.footer-description,
.footer-column a,
.footer-bottom {
  color: var(--launch-muted);
  font-size: 13px;
  line-height: 21px;
}

.footer-description {
  max-width: 300px;
  margin: 0;
}

.footer-column a:hover {
  color: var(--launch-primary);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--launch-line);
}

.footer-bottom span {
  color: var(--launch-muted);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 120;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--launch-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--launch-shadow-soft);
  }

  .nav-open .site-nav,
  .nav-open .nav-links {
    display: flex;
  }

  .site-nav a,
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .nav-links a:hover {
    background: var(--launch-soft);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 108px;
  }

  .site-header {
    width: min(100% - 28px, 1180px);
    min-height: 88px;
    padding: 10px 0;
  }

  .privacy-section,
  .post-grid,
  .article-card,
  .cta-panel {
    padding: 24px;
    border-radius: 28px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}
