:root {
  --ink: #09071d;
  --ink-soft: #151033;
  --purple: #6c42ee;
  --purple-bright: #9d66ff;
  --lime: #bdff4f;
  --mint: #69edbd;
  --paper: #f7f5ef;
  --white: #fff;
  --muted: #655e73;
  --line: rgba(20, 13, 47, 0.14);
  --shell: min(1180px, calc(100% - 52px));
  --soft-shadow: 0 26px 70px rgba(31, 18, 71, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skipLink {
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: -70px;
  transition: top 150ms ease;
  z-index: 100;
}

.skipLink:focus {
  top: 16px;
}

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.siteHeader {
  background: rgba(7, 5, 25, 0.82);
  backdrop-filter: blur(22px) saturate(1.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 950;
  gap: 12px;
  letter-spacing: -0.04em;
}

.brand img {
  border-radius: 13px;
}

.navLinks {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 22px;
}

.navLinks a {
  transition: color 150ms ease;
}

.navLinks a:hover {
  color: white;
}

.navButtons {
  align-items: center;
  display: flex;
  gap: 9px;
}

.navButton {
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 950;
  padding: 11px 17px;
}

.navButtonFirefox {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.navButtonFirefox:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(108, 66, 238, 0.32), transparent 34%),
    radial-gradient(circle at 72% 100%, rgba(105, 237, 189, 0.12), transparent 32%),
    linear-gradient(112deg, #07051b 0%, #0a0722 48%, #10082e 100%);
  color: white;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  padding-top: 76px;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 86% 50%, transparent 0 25%, rgba(158, 102, 255, 0.1) 25.2% 25.6%, transparent 25.8%),
    radial-gradient(circle at 80% 62%, rgba(189, 255, 79, 0.12), transparent 18%);
  content: "";
  inset: 76px 0 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.heroArt,
.heroShade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.heroArt {
  filter: saturate(1.06) contrast(1.02);
  height: calc(100% - 76px);
  inset: 76px -1.5% 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0 14%, rgba(0, 0, 0, 0.12) 22%, #000 40%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0 14%, rgba(0, 0, 0, 0.12) 22%, #000 40%, #000 100%);
  mix-blend-mode: lighten;
  object-fit: contain;
  object-position: right center;
  opacity: 0.98;
  width: 65%;
  z-index: 0;
}

.heroShade {
  background:
    linear-gradient(90deg, #07051b 0%, #07051b 28%, rgba(7, 5, 27, 0.97) 39%, rgba(7, 5, 27, 0.78) 51%, rgba(7, 5, 27, 0.22) 67%, transparent 80%),
    linear-gradient(0deg, rgba(7, 5, 27, 0.62) 0%, transparent 34%),
    linear-gradient(180deg, rgba(7, 5, 27, 0.2), transparent 30%);
  z-index: 1;
}

.heroContent {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 744px;
  padding-block: 66px 82px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.darkEyebrow {
  color: var(--purple);
}

.hero h1 {
  font-size: clamp(4rem, 6.1vw, 6.15rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.88;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero h1 span {
  color: var(--lime);
  display: block;
}

.heroLead {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.12rem, 1.65vw, 1.4rem);
  font-weight: 650;
  line-height: 1.45;
  max-width: 530px;
}

.heroActions,
.finalActions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 950;
  gap: 18px;
  justify-content: center;
  min-height: 56px;
  padding: 15px 23px;
  box-shadow: 0 10px 28px rgba(9, 7, 29, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  box-shadow: 0 15px 36px rgba(9, 7, 29, 0.18);
  transform: translateY(-2px);
}

.buttonLime {
  background: var(--lime);
  box-shadow: 0 16px 45px rgba(18, 7, 47, 0.3);
  color: var(--ink);
}

.buttonGlass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

.buttonGlass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.trustLine {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 23px 0 0;
}

.featuredBannerSection {
  background: var(--ink);
  padding-block: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.featuredHeading {
  color: white;
  margin: 0 auto 26px;
  max-width: 900px;
  text-align: center;
}

.featuredHeading .eyebrow {
  margin-bottom: 13px;
}

.featuredHeading h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
  margin: 0;
}

.coverageDropdown {
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 66, 238, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: white;
  margin: 0 auto;
  max-width: 1120px;
}

.coverageDropdown > summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 11px;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  list-style: none;
  padding: 19px 24px;
  text-align: center;
}

.coverageDropdown > summary::-webkit-details-marker {
  display: none;
}

.coverageSummaryIcon {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.coverageSummaryLabel {
  justify-self: center;
}

.coverageSummaryPlus {
  color: var(--mint);
  display: inline-block;
  font-size: 1.2rem;
  justify-self: center;
}

.coverageDropdown[open] > summary .coverageSummaryPlus {
  transform: rotate(45deg);
}

.coverageContent {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px;
  text-align: center;
}

.coverageGroup h3 {
  color: var(--mint);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
}

.coverageLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}

.coverageGroup + .coverageGroup {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding-top: 24px;
}

.coverageCard {
  align-items: center;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex: 0 1 calc((100% - 36px) / 5);
  gap: 10px;
  justify-content: flex-start;
  min-height: 62px;
  padding: 9px 10px;
  text-align: left;
}

.coverageCard:hover {
  background: rgba(91, 226, 255, 0.14);
  border-color: #5be2ff;
  color: white;
}

.coverageCard img,
.networkMark {
  border-radius: 11px;
  flex: 0 0 38px;
  height: 38px;
  object-fit: cover;
  width: 38px;
}

.coverageCard > span:last-child {
  min-width: 0;
}

.coverageCard strong,
.coverageCard small {
  display: block;
}

.coverageCard strong {
  color: white;
  font-size: 0.66rem;
  line-height: 1.15;
  margin-bottom: 3px;
}

.coverageCard small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.networkMark {
  align-items: center;
  color: white;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 950;
  justify-content: center;
}

.networkMarkPress { background: #5c42d9; }
.networkMarkChrome { background: linear-gradient(135deg, #e94335, #f7c843 38%, #34a853 64%, #4285f4); }
.networkMarkFirefox { background: linear-gradient(135deg, #5b2be0, #9c2fc5 48%, #ff8a25); }
.networkMarkX { background: #111; }
.networkMarkYoutube { background: #ff0033; }
.networkMarkInstagram { background: linear-gradient(135deg, #6a3de8, #e43b74, #ffb23f); }
.networkMarkThreads { background: #111; }
.networkMarkBluesky { background: #1687ff; }
.networkMarkMastodon { background: #635bff; }
.networkMarkTiktok { background: linear-gradient(135deg, #18e1df, #111 48%, #ff3159); }

.scrollCue {
  align-items: center;
  bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  font-size: 0.72rem;
  font-weight: 850;
  gap: 14px;
  left: 50%;
  letter-spacing: 0.08em;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.proofStrip {
  background: var(--lime);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px max(22px, calc((100% - 1180px) / 2));
}

.proofStrip div {
  align-items: baseline;
  border-right: 1px solid rgba(9, 7, 29, 0.18);
  display: flex;
  gap: 11px;
  justify-content: center;
  min-height: 70px;
  padding-inline: 15px;
}

.proofStrip div:last-child {
  border-right: 0;
}

.proofStrip strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(2.35rem, 3.5vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.proofStrip span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.25;
  max-width: 90px;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(56px, 6vw, 80px);
}

.sectionIntro {
  margin-bottom: 38px;
  max-width: 930px;
}

.sectionIntro h2,
.demoCopy h2,
.curiosityCopy h2,
.faqIntro h2,
.finalCta h2 {
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.91;
  margin-bottom: 28px;
}

.sectionIntro > p:last-child,
.demoCopy > p,
.curiosityCopy > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 620;
  line-height: 1.55;
  max-width: 780px;
}

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

.featureCard {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  color: white;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featureCard:hover {
  box-shadow: 0 32px 76px rgba(31, 18, 71, 0.2);
  transform: translateY(-4px);
}

.featureLarge {
  grid-column: auto;
}

.featureCompact {
  grid-column: auto;
}

.featureCard > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.featureCaption {
  background:
    radial-gradient(circle at 92% 0%, rgba(189, 255, 79, 0.2), transparent 30%),
    var(--ink-soft);
  min-height: 145px;
  padding: 21px 22px 24px;
}

.featureCaption > span {
  color: var(--lime);
  display: block;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 13px;
}

.featureCaption h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
  margin-bottom: 12px;
}

.featureCaption p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.demoSection {
  background:
    radial-gradient(circle at 12% 0%, rgba(108, 66, 238, 0.7), transparent 34%),
    var(--ink);
  color: white;
}

.demoLayout {
  align-items: center;
  display: grid;
  gap: clamp(38px, 5vw, 72px);
  grid-template-columns: 0.72fr 1.28fr;
}

.demoCopy h2 {
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.demoCopy > p {
  color: rgba(255, 255, 255, 0.68);
}

.textLink {
  border-bottom: 2px solid var(--lime);
  color: white;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  gap: 18px;
  margin-top: 15px;
  padding-bottom: 5px;
}

.videoShell {
  background: #0a0722;
  border: 3px solid white;
  border-radius: 17px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.videoBar {
  align-items: center;
  background: #efecf7;
  display: flex;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
}

.videoBar > span {
  background: #8b819d;
  border-radius: 50%;
  height: 8px;
  opacity: 0.72;
  width: 8px;
}

.videoBar div {
  background: white;
  border-radius: 6px;
  color: #6a6177;
  font-size: 0.6rem;
  margin-left: 8px;
  padding: 5px 12px;
  text-align: center;
  width: min(410px, 68%);
}

.videoShell video {
  aspect-ratio: 16 / 9;
  background: #0a0722;
  object-fit: cover;
  width: 100%;
}

.videoControlBar {
  align-items: center;
  background: #efecf7;
  border-top: 1px solid rgba(23, 16, 55, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 9px 11px 9px 18px;
}

.nextVideoButton {
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  margin: 0;
  padding: 13px 19px;
}

.nextVideoButton:hover {
  background: var(--mint);
}

.videoStatus {
  color: #5f5870 !important;
  font-size: 0.68rem !important;
  font-weight: 800;
  margin: 0;
}

.wanderLab {
  background:
    radial-gradient(circle at 10% 18%, rgba(189, 255, 79, 0.56), transparent 27%),
    radial-gradient(circle at 88% 88%, rgba(108, 66, 238, 0.18), transparent 34%),
    linear-gradient(125deg, #fffef8 0%, #e9fff7 48%, #ececff 100%);
  color: var(--ink);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.wanderLab::before {
  background:
    radial-gradient(circle at 82% 48%, transparent 0 17%, rgba(108, 66, 238, 0.12) 17.2% 17.8%, transparent 18% 25%, rgba(105, 237, 189, 0.2) 25.2% 25.9%, transparent 26.1%),
    radial-gradient(circle, rgba(108, 66, 238, 0.13) 0 1.2px, transparent 1.5px) 0 0 / 32px 32px;
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.wanderLabLayout {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: 0.78fr 1.22fr;
  position: relative;
}

.wanderLabCopy h2 {
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
  margin-bottom: 20px;
}

.wanderLabCopy > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
  max-width: 480px;
}

.wanderLabCopy .darkEyebrow {
  color: var(--purple);
}

.wanderActions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 13px;
}

.wanderButton,
.curiosityButton {
  background: var(--lime);
  border: 0;
  color: #1a1022;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 950;
  margin-top: 0;
}

.wanderButton:hover,
.curiosityButton:hover {
  background: var(--mint);
  box-shadow: 0 16px 36px rgba(89, 237, 189, 0.2);
}

.mobileWanderButton {
  background: var(--ink);
  color: white;
  margin-top: 0;
}

.mobileWanderButton:hover {
  background: var(--purple);
  box-shadow: 0 16px 36px rgba(64, 36, 135, 0.2);
}

.wanderLabCopy .mobileWanderNote {
  color: #5f5870;
  font-size: 0.74rem;
  line-height: 1.5;
  margin: 12px 0 0;
  max-width: 440px;
}

.wanderPreview {
  background: white;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow:
    0 28px 80px rgba(23, 16, 55, 0.28),
    0 0 0 1px rgba(23, 16, 55, 0.12);
  overflow: hidden;
}

.wanderBrowserBar {
  align-items: center;
  background: #e8e4f2;
  display: flex;
  gap: 7px;
  height: 40px;
  padding: 0 13px;
}

.wanderBrowserBar > span {
  background: #8b819d;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.wanderBrowserBar > div {
  background: rgba(255, 255, 255, 0.76);
  border-radius: 6px;
  color: #6a6177;
  font-size: 0.62rem;
  margin-left: 7px;
  overflow: hidden;
  padding: 5px 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: min(420px, 75%);
}

.wanderFrameStage {
  background:
    radial-gradient(circle at 88% 12%, rgba(189, 255, 79, 0.42), transparent 28%),
    linear-gradient(135deg, #fff 0%, #efe9ff 100%);
  height: clamp(360px, 48vw, 560px);
  position: relative;
}

.wanderFrameStage iframe {
  background: white;
  border: 0;
  height: 100%;
  width: 100%;
}

.wanderFrameWelcome {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: clamp(30px, 6vw, 64px);
  position: absolute;
}

.wanderFrameWelcome[hidden] {
  display: none;
}

.wanderFrameWelcome img {
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(50, 25, 110, 0.2);
  margin-bottom: 24px;
}

.wanderFrameWelcome p {
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.wanderFrameWelcome h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin: 0 0 12px;
}

.wanderFrameWelcome > span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.wanderFrameFooter {
  align-items: center;
  background: var(--ink-soft);
  color: white;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 60px;
  padding: 12px 17px;
}

.wanderFrameFooter p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 750;
  margin: 0;
}

.wanderVisit {
  border-bottom: 2px solid var(--lime);
  color: white;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 12px;
  margin-top: 4px;
  padding-bottom: 4px;
}

.wanderVisit[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.narrowIntro {
  max-width: 1020px;
}

.choiceGrid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.choiceCard {
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(30px, 4vw, 50px) clamp(22px, 3vw, 40px) 0;
}

.limeCard {
  background: var(--lime);
}

.purpleCard {
  background: var(--ink-soft);
  color: white;
}

.choiceText {
  margin-bottom: 36px;
}

.choiceText > span {
  color: var(--purple);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.purpleCard .choiceText > span {
  color: var(--lime);
}

.choiceText h3 {
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
  margin: 14px 0 18px;
}

.choiceText p {
  color: rgba(9, 7, 29, 0.66);
  font-size: 0.96rem;
  font-weight: 680;
  line-height: 1.5;
}

.purpleCard .choiceText p {
  color: rgba(255, 255, 255, 0.66);
}

.choiceCard > img {
  border: 3px solid white;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -15px 40px rgba(9, 7, 29, 0.16);
  margin-top: auto;
  width: 100%;
}

.curiositySection {
  background:
    radial-gradient(circle at 88% 10%, rgba(105, 237, 189, 0.5), transparent 30%),
    linear-gradient(135deg, #eefaff 0%, #cfe9f7 100%);
  color: var(--ink);
  overflow: hidden;
}

.curiosityCard {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(9, 7, 29, 0.12);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(22, 60, 90, 0.14);
  display: grid;
  gap: clamp(30px, 4vw, 58px);
  grid-template-columns: minmax(270px, 0.72fr) minmax(480px, 1.28fr);
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px);
}

.curiosityVisual {
  margin: 0;
  position: relative;
}

.curiosityVisual img {
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(32, 66, 87, 0.2);
  object-fit: cover;
  width: 100%;
}

.curiosityVisual figcaption {
  background: var(--ink-soft);
  border-radius: 999px;
  bottom: 18px;
  color: white;
  font-size: 0.67rem;
  font-weight: 850;
  left: 50%;
  padding: 11px 16px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: calc(100% - 36px);
}

.curiosityCopy h2 {
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
  margin-bottom: 24px;
}

.curiosityCopy > p {
  color: #52606e;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 750;
  line-height: 1.48;
  max-width: 22ch;
}

.modeGrid {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modeCard {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(9, 7, 29, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(24, 62, 84, 0.08);
  min-width: 0;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 30px);
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.modeCard::before {
  background: linear-gradient(90deg, var(--purple), var(--mint));
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.modeCard:hover,
.modeCard:focus-within {
  background: white;
  border-color: rgba(67, 183, 207, 0.52);
  box-shadow: 0 19px 42px rgba(35, 111, 139, 0.14);
  transform: translateY(-3px);
}

.modeCardTopline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.modeIcon {
  align-items: center;
  background: var(--ink-soft);
  border-radius: 13px;
  color: var(--lime);
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.modeIconPlay {
  font-size: 0.85rem;
  padding-left: 2px;
}

.modeNumber {
  color: #768390;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.modeCard h3 {
  color: var(--purple);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: 0 0 8px;
}

.modeCard > p {
  color: #5e6772;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.5;
  margin: 0;
}

.modeCard details {
  border-top: 1px solid rgba(9, 7, 29, 0.11);
  margin-top: 18px;
  padding-top: 14px;
}

.modeCard summary {
  align-items: center;
  color: #207aa0;
  cursor: pointer;
  display: flex;
  font-size: 0.75rem;
  font-weight: 950;
  justify-content: space-between;
  list-style: none;
  min-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modeCard summary::-webkit-details-marker {
  display: none;
}

.modeCard summary:hover {
  color: var(--purple);
}

.lessLabel,
.modeCard details[open] .moreLabel {
  display: none;
}

.modeCard details[open] .lessLabel {
  display: inline;
}

.modeArrow {
  align-items: center;
  background: #dff8fb;
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.9rem;
  height: 30px;
  justify-content: center;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  width: 30px;
}

.modeCard details[open] .modeArrow {
  background: var(--purple);
  color: white;
  transform: rotate(180deg);
}

.modeDetails {
  animation: modeReveal 180ms ease-out;
  color: #525f6b;
  font-size: 0.76rem;
  font-weight: 680;
  line-height: 1.55;
  padding: 10px 2px 0;
}

.modeDetails p {
  margin: 0 0 9px;
}

.modeDetails ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.modeDetails li::marker {
  color: #209ec2;
}

.modeDetails a {
  color: #167b9e;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(22, 123, 158, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.modeDetails a:hover {
  color: var(--purple);
  text-decoration-color: currentColor;
}

.modeDetails .modeCaveat {
  background: #eef9fb;
  border-left: 3px solid #209ec2;
  border-radius: 0 9px 9px 0;
  color: #435563;
  margin: 13px 0 0;
  padding: 10px 12px;
}

@keyframes modeReveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.providers {
  background:
    radial-gradient(circle at 88% 4%, rgba(108, 66, 238, 0.35), transparent 30%),
    var(--ink-soft);
  color: white;
}

.providerIntro {
  max-width: 1050px;
}

.providerIntro > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

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

.providerGroup {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 22px;
}

.providerGroupLabel {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.providerGroup h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 16px;
}

.providerList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.providerList li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.providerList a {
  align-items: center;
  display: grid;
  gap: 2px 11px;
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 10px 0;
}

.providerList img,
.providerFallback {
  border-radius: 10px;
  grid-column: 1;
  grid-row: 1 / 3;
  height: 40px;
  width: 40px;
}

.providerList img {
  background: white;
  object-fit: contain;
  padding: 5px;
}

.providerFallback {
  align-items: center;
  background: linear-gradient(135deg, var(--purple), #3b1e88);
  color: white;
  display: flex;
  font-size: 0.62rem;
  font-weight: 950;
  justify-content: center;
}

.providerList strong {
  display: block;
  grid-column: 2;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.providerList a > span:not(.providerFallback) {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 0.64rem;
  grid-column: 2;
  line-height: 1.45;
}

.providerList a:hover strong {
  color: var(--lime);
}

.providerList em {
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.52rem;
  font-style: normal;
  margin-left: 6px;
  padding: 3px 7px;
  text-transform: uppercase;
  vertical-align: 2px;
}

.providerNote {
  align-items: start;
  background: var(--lime);
  border-radius: 24px;
  color: var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.7fr 1.3fr;
  margin-top: 22px;
  padding: 26px;
}

.providerNote h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0;
}

.providerNote p {
  font-size: 0.8rem;
  font-weight: 670;
  line-height: 1.6;
  margin: 0;
}

.providerNote p a {
  border-bottom: 1px solid rgba(9, 7, 29, 0.45);
  font-weight: 900;
}

.providerNote p a:hover {
  border-bottom-color: var(--ink);
}

.providerNote .independenceNote {
  border-top: 1px solid rgba(9, 7, 29, 0.2);
  margin-top: 18px;
  padding-top: 18px;
}

.providerSubmit {
  align-items: center;
  background:
    radial-gradient(circle at 90% 20%, rgba(189, 255, 79, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 22px;
  padding: 27px;
}

.providerSubmit h3 {
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0 0 11px;
}

.providerSubmit p:not(.providerGroupLabel) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.providerSubmitButton {
  background: var(--lime);
  color: var(--ink);
  white-space: nowrap;
}

.submissionPage {
  background:
    radial-gradient(circle at 80% 12%, rgba(108, 66, 238, 0.3), transparent 30%),
    var(--ink);
  color: white;
  min-height: 100vh;
  padding: 120px 0 70px;
}

.submissionLayout {
  display: grid;
  gap: clamp(36px, 7vw, 100px);
  grid-template-columns: 0.82fr 1.18fr;
}

.submissionIntro h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  letter-spacing: -0.085em;
  line-height: 0.88;
  margin-bottom: 25px;
}

.submissionIntro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 650;
  line-height: 1.6;
}

.submissionForm {
  background: white;
  border-radius: 26px;
  color: var(--ink);
  display: grid;
  gap: 17px;
  padding: clamp(24px, 4vw, 42px);
}

.formField {
  display: grid;
  gap: 7px;
}

.formField label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.formField label span {
  color: #7b7187;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  margin-left: 5px;
  text-transform: uppercase;
}

.formField input,
.formField select,
.formField textarea {
  background: #f3f0f9;
  border: 1px solid rgba(9, 7, 29, 0.16);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  padding: 13px 14px;
  width: 100%;
}

.formField textarea {
  min-height: 130px;
  resize: vertical;
}

.submissionNote {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
  margin: 0;
}

.submissionStatus {
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.45;
  padding: 13px 15px;
}

.submissionStatusSuccess {
  background: #e5fff4;
  border: 1px solid #76dcb6;
  color: #126348;
}

.submissionStatusError {
  background: #fff0ed;
  border: 1px solid #f1a497;
  color: #8e2e20;
}

.formTrap {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.submissionButton {
  background: var(--lime);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  justify-self: start;
}

.faq {
  display: grid;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 0.7fr 1.3fr;
}

.faqIntro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faqIntro h2 {
  font-size: clamp(3.5rem, 6.3vw, 6.3rem);
}

.faqList {
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
  list-style: none;
  padding: 19px 50px 19px 0;
  position: relative;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary::after {
  color: var(--purple);
  content: "+";
  font-size: 1.7rem;
  font-weight: 500;
  position: absolute;
  right: 8px;
  top: 12px;
}

.faqList details[open] summary::after {
  content: "−";
}

.faqList details p {
  color: var(--muted);
  line-height: 1.7;
  margin: -4px 55px 20px 0;
}

.finalCta {
  align-items: center;
  background: var(--ink-soft);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow: hidden;
  padding: 72px 22px;
  position: relative;
  text-align: center;
}

.finalGlow {
  background: var(--purple);
  border-radius: 50%;
  filter: blur(120px);
  height: 440px;
  opacity: 0.55;
  position: absolute;
  top: 80px;
  width: 440px;
}

.finalCta > img,
.finalCta > p,
.finalCta > h2,
.finalCta > div:not(.finalGlow) {
  position: relative;
  z-index: 1;
}

.finalCta > img {
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 24px;
}

.finalCta > p {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.17em;
}

.finalCta h2 {
  font-size: clamp(3.4rem, 7vw, 7rem);
  max-width: 1080px;
}

.finalActions {
  justify-content: center;
}

.footer {
  background: #050414;
  color: white;
  padding: 40px 0;
}

.footerLayout {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
}

.footerLayout > p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  margin: 0;
}

.footerLinks {
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 20px;
}

.footerLinks a:hover {
  color: white;
}

@media (max-width: 1040px) {
  .navLinks {
    display: none;
  }

  .hero { min-height: 740px; }

  .heroContent { min-height: 664px; }

  .heroArt {
    height: calc(100% - 76px);
    object-position: right center;
    width: 68%;
  }

  .heroShade {
    background:
      linear-gradient(90deg, #07051b 0%, #07051b 34%, rgba(7, 5, 27, 0.95) 49%, rgba(7, 5, 27, 0.42) 68%, transparent 88%),
      linear-gradient(0deg, rgba(7, 5, 27, 0.62), transparent 44%);
  }

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

  .demoLayout,
  .curiosityCard,
  .wanderLabLayout {
    grid-template-columns: 1fr;
  }

  .demoCopy,
  .curiosityCopy,
  .wanderLabCopy {
    max-width: 800px;
  }

  .wanderLabLayout {
    gap: clamp(30px, 5vw, 48px);
  }

  .wanderPreview {
    width: 100%;
  }

  .curiosityVisual {
    margin-inline: auto;
    max-width: 620px;
  }

  .coverageCard {
    flex-basis: calc((100% - 18px) / 3);
  }

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

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

  .faqIntro {
    position: static;
  }
}

@media (min-width: 1041px) and (max-width: 1180px) {
  .navLinks {
    font-size: 0.84rem;
    gap: 14px;
  }

  .navButton {
    padding-inline: 13px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 30px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .nav {
    height: 68px;
  }

  .brand {
    font-size: 1rem;
  }

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

  .navButton {
    font-size: 0.7rem;
    padding: 10px 12px;
  }

  .navButton span {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 68px;
  }

  .heroArt {
    height: 410px;
    inset: 68px 0 auto;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, 0.55) 82%, transparent 100%);
    object-position: center top;
    width: 100%;
  }

  .heroShade {
    background:
      linear-gradient(0deg, #07051b 0%, #07051b 48%, rgba(7, 5, 27, 0.92) 60%, rgba(7, 5, 27, 0.08) 88%, transparent 100%),
      linear-gradient(90deg, rgba(7, 5, 27, 0.15), transparent 70%);
  }

  .heroContent {
    justify-content: flex-end;
    min-height: 792px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5rem);
  }

  .heroLead {
    font-size: 1.08rem;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .heroActions .button {
    width: 100%;
  }

  .trustLine {
    font-size: 0.55rem;
  }

  .featuredBannerSection {
    padding-block: 40px;
  }

  .scrollCue {
    display: none;
  }

  .proofStrip {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 15px;
  }

  .proofStrip div {
    border-bottom: 1px solid rgba(9, 7, 29, 0.18);
    min-height: 98px;
  }

  .proofStrip div:nth-child(2) {
    border-right: 0;
  }

  .proofStrip div:nth-child(3),
  .proofStrip div:nth-child(4) {
    border-bottom: 0;
  }

  .proofStrip strong {
    font-size: 2.3rem;
  }

  .section {
    padding-block: 54px;
  }

  .sectionIntro {
    margin-bottom: 45px;
  }

  .sectionIntro h2,
  .demoCopy h2,
  .curiosityCopy h2,
  .faqIntro h2,
  .finalCta h2 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
    overflow-wrap: anywhere;
  }

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

  .featureLarge,
  .featureCompact {
    grid-column: auto;
  }

  .featureCaption {
    min-height: auto;
  }

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

  .choiceCard {
    border-radius: 19px;
  }

  .curiosityCard,
  .wanderLabLayout {
    gap: 34px;
  }

  .wanderLabCopy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    letter-spacing: -0.07em;
    max-width: 12ch;
  }

  .wanderPreview {
    border-radius: 16px;
    border-width: 4px;
    box-shadow: 0 22px 55px rgba(23, 16, 55, 0.24);
  }

  .wanderBrowserBar {
    padding-inline: 10px;
  }

  .wanderBrowserBar > div {
    margin-left: 2px;
    width: calc(100% - 52px);
  }

  .curiosityCard {
    border-radius: 22px;
    padding: 25px;
  }

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

  .modeCard {
    border-radius: 18px;
    padding: 22px;
  }

  .modeCard:hover,
  .modeCard:focus-within {
    transform: none;
  }

  .wanderFrameStage {
    height: clamp(300px, 78vw, 390px);
  }

  .wanderFrameWelcome {
    padding: 24px;
  }

  .wanderFrameWelcome img {
    border-radius: 15px;
    margin-bottom: 18px;
    width: 58px;
  }

  .wanderFrameWelcome h3 {
    font-size: clamp(1.85rem, 9.5vw, 2.65rem);
  }

  .wanderFrameWelcome > span {
    font-size: 0.78rem;
  }

  .wanderFrameFooter {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
  }

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

  .wanderActions .button {
    justify-content: space-between;
    width: 100%;
  }

  .videoControlBar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }

  .nextVideoButton {
    width: 100%;
  }

  .coverageCard {
    flex-basis: calc((100% - 9px) / 2);
  }

  .coverageContent {
    padding: 18px;
  }

  .providerGroup {
    padding: 24px;
  }

  .providerNote {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .providerSubmit,
  .submissionLayout {
    grid-template-columns: 1fr;
  }

  .providerSubmitButton {
    justify-self: start;
  }

  .faqList summary {
    padding-right: 38px;
  }

  .faqList details p {
    margin-right: 35px;
  }

  .finalCta {
    min-height: 520px;
    padding-block: 62px;
  }

  .finalActions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 420px);
  }

  .footerLayout {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footerLinks {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 22px);
  }

  .navButtons {
    gap: 5px;
  }

  .navButton {
    font-size: 0.62rem;
    padding-inline: 9px;
  }

  .brand {
    font-size: 0.9rem;
    gap: 8px;
  }

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

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4rem);
  }

  .proofStrip {
    padding-inline: 8px;
  }

  .proofStrip div {
    padding-inline: 7px;
  }

  .proofStrip span {
    font-size: 0.55rem;
  }

  .wanderFrameStage {
    height: 300px;
  }

  .videoShell {
    border-width: 2px;
  }

  .curiosityCard {
    padding: 20px;
  }

  .modeCard {
    padding: 19px;
  }

  .curiosityVisual figcaption {
    bottom: 10px;
    font-size: 0.58rem;
  }

  .coverageCard {
    flex-basis: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
