:root {
  --bg: #0B0F14;
  --bg-deeper: #070A0F;
  --surface: rgba(21, 26, 34, 0.72);
  --surface-solid: #151A22;
  --surface-2: rgba(27, 33, 43, 0.72);
  --surface-3: #202734;
  --text: #F2F4F8;
  --muted: #B8C0CC;
  --soft: #8E98A8;
  --faint: #657082;
  --accent: #AEC6FF;
  --accent-strong: #7EA2F5;
  --accent-2: #5D7BBA;
  --amber: #D4C29C;
  --amber-strong: #F1BE62;
  --amber-bg: rgba(42, 37, 24, 0.74);
  --border: rgba(174, 198, 255, 0.15);
  --border-soft: rgba(184, 192, 204, 0.12);
  --danger-soft: #F2C0C0;
  --shadow: 0 32px 110px rgba(0, 0, 0, 0.52);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(93, 123, 186, 0.14), transparent 32%),
    radial-gradient(circle at 82% 6%, rgba(212, 194, 156, 0.08), transparent 22%),
    linear-gradient(180deg, #0B0F14 0%, #091018 46%, #070A0F 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  background: var(--accent);
  color: #07101B;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  z-index: 10;
}
.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(174, 198, 255, 0.10);
  background: rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(18px);
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(126, 162, 245, 0.12);
}

.brand span {
  font-size: 18px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.navlinks a {
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  border: 1px solid rgba(174, 198, 255, 0.22);
  color: #0B1422 !important;
  background: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

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

.hero-panel {
  min-height: 690px;
  display: grid;
  align-items: center;
  border: 1px solid rgba(174, 198, 255, 0.14);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.98) 0%, rgba(8, 13, 20, 0.92) 34%, rgba(8, 13, 20, 0.36) 62%, rgba(8, 13, 20, 0.08) 100%),
    url("/assets/hero-offramp.webp") center right / cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 52%, rgba(93, 123, 186, 0.17), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(7, 10, 15, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(28px, 6vw, 72px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(174, 198, 255, 0.20);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--accent);
  background: rgba(174, 198, 255, 0.06);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(174, 198, 255, 0.72);
}

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

h1 {
  margin: 22px 0 18px;
  font-size: clamp(50px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  max-width: 850px;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 650px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 30px 0 20px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 820;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #07101B;
  background: linear-gradient(180deg, #C0D2FF 0%, #9EBBFF 100%);
  box-shadow: 0 20px 44px rgba(126, 162, 245, 0.20);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(174, 198, 255, 0.18);
  background: rgba(21, 26, 34, 0.66);
}

.btn-quiet {
  color: var(--accent);
  border-color: rgba(174, 198, 255, 0.16);
  background: rgba(174, 198, 255, 0.06);
}

.micro-note {
  color: var(--soft);
  font-size: 14px;
}

.micro-note a {
  color: var(--muted);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.proof-chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid rgba(174, 198, 255, 0.14);
  background: rgba(21, 26, 34, 0.56);
  font-size: 13px;
}

.pill-blue {
  color: var(--accent);
  background: rgba(174, 198, 255, 0.09);
}

.pill-amber {
  color: var(--amber);
  border-color: rgba(212, 194, 156, 0.22);
  background: rgba(42, 37, 24, 0.46);
}

.section {
  padding: 84px 0;
  border-top: 1px solid rgba(174, 198, 255, 0.10);
}

.section-tight {
  padding: 58px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.section-label {
  color: var(--accent);
  font-weight: 840;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

h2 {
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.067em;
  margin-bottom: 22px;
}

.h2-calm {
  font-size: clamp(34px, 4.2vw, 58px);
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
}

.large-line {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: var(--text);
}

.card,
.moment-card,
.step-card,
.feature-card {
  background:
    linear-gradient(180deg, rgba(32, 39, 52, 0.54), rgba(21, 26, 34, 0.68));
  border: 1px solid rgba(174, 198, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
}

.moment-card {
  padding: 22px;
  min-height: 188px;
}

.icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(174, 198, 255, 0.10);
  border: 1px solid rgba(174, 198, 255, 0.14);
  margin-bottom: 18px;
  font-size: 21px;
}

.icon-dot-amber {
  color: var(--amber-strong);
  background: rgba(212, 194, 156, 0.09);
  border-color: rgba(212, 194, 156, 0.18);
}

.moment-card h3,
.step-card h3,
.feature-card h3 {
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.moment-card p,
.step-card p,
.feature-card p {
  color: var(--soft);
  margin-bottom: 0;
}

.path-row {
  position: relative;
}

.path-row::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 54px;
  border-top: 1px dashed rgba(174, 198, 255, 0.16);
}

.step-card {
  padding: 20px;
  min-height: 225px;
  position: relative;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #08101B;
  background: var(--accent);
  font-weight: 900;
  margin-bottom: 26px;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(174, 198, 255, 0.15);
  background: rgba(21, 26, 34, 0.54);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.replacement-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.feature-card {
  padding: 24px;
}

.feature-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  color: var(--muted);
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
}

.feature-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(174, 198, 255, 0.08);
  border: 1px solid rgba(174, 198, 255, 0.16);
  font-size: 12px;
}

.feature-list.no-list li::before {
  content: "×";
  color: var(--amber);
  background: rgba(212, 194, 156, 0.08);
  border-color: rgba(212, 194, 156, 0.18);
}

.link-arrow {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 790;
  text-decoration: none;
}

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

.trust-boundary {
  padding: 24px;
}

.privacy-asset {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.05), rgba(7, 10, 15, 0.18)),
    url("/assets/privacy-boundary.webp") center / cover no-repeat;
}

.never-read-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.boundary-chip {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 0 15px;
  color: var(--muted);
  background: rgba(7, 10, 15, 0.28);
  border: 1px solid rgba(174, 198, 255, 0.12);
}

.boundary-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(174, 198, 255, 0.38);
}

.cta-band {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  border: 1px solid rgba(174, 198, 255, 0.16);
  background:
    radial-gradient(circle at 18% 10%, rgba(174, 198, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(32, 39, 52, 0.70), rgba(21, 26, 34, 0.72));
  padding: 18px;
  box-shadow: var(--shadow);
}

.cta-band .image-card {
  min-height: 220px;
  box-shadow: none;
}

.cta-copy {
  padding: clamp(14px, 3vw, 32px);
}

.footer {
  border-top: 1px solid rgba(174, 198, 255, 0.10);
  padding: 28px 0 42px;
  color: var(--soft);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

/* Inner pages */

.page-hero {
  padding: 58px 0 26px;
}

.page-hero-card {
  min-height: 480px;
  display: grid;
  align-items: center;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(174, 198, 255, 0.14);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.97) 0%, rgba(8, 13, 20, 0.86) 45%, rgba(8, 13, 20, 0.22) 100%),
    var(--hero-bg) center right / cover no-repeat;
}

.page-hero-content {
  padding: clamp(28px, 6vw, 68px);
  max-width: 840px;
}

.page-hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  max-width: 980px;
}

.content-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(174, 198, 255, 0.13);
  background: rgba(21, 26, 34, 0.64);
  padding: clamp(22px, 4vw, 38px);
}

.content-panel h2 {
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.05;
  margin-top: 0;
}

.content-panel p {
  color: var(--muted);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.use-card {
  min-height: 150px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(7, 10, 15, 0.24);
  border: 1px solid rgba(174, 198, 255, 0.12);
}

.use-card strong {
  display: block;
  margin-bottom: 8px;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.email-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 12%, rgba(174, 198, 255, 0.14), transparent 34%),
    rgba(21, 26, 34, 0.72);
  border: 1px solid rgba(174, 198, 255, 0.14);
}

.email-link-large {
  display: inline-flex;
  word-break: break-word;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
  margin: 16px 0 22px;
}

.warning-card {
  border: 1px solid rgba(212, 194, 156, 0.22);
  background: rgba(42, 37, 24, 0.52);
}

@media (max-width: 960px) {
  .navlinks {
    gap: 14px;
  }

  .navlinks a:not(.nav-cta) {
    display: none;
  }

  .hero-panel {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 13, 20, 0.48) 0%, rgba(8, 13, 20, 0.96) 48%, rgba(8, 13, 20, 0.98) 100%),
      url("/assets/hero-offramp.webp") top center / cover no-repeat;
    align-items: end;
    padding-top: 380px;
  }

  .hero-content {
    padding: 26px;
  }

  .grid-2,
  .replacement-grid,
  .trust-grid,
  .cta-band,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .path-row::before {
    display: none;
  }

  .page-hero-card {
    background:
      linear-gradient(180deg, rgba(8, 13, 20, 0.45) 0%, rgba(8, 13, 20, 0.96) 52%, rgba(8, 13, 20, 0.98) 100%),
      var(--hero-bg) top center / cover no-repeat;
    padding-top: 280px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    height: 68px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-panel {
    border-radius: 28px;
    padding-top: 300px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .grid-3,
  .grid-4,
  .use-grid,
  .never-read-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .page-hero-card {
    border-radius: 28px;
    padding-top: 230px;
  }

  .email-link-large {
    font-size: 30px;
  }
}
