:root {
  --ink: #171719;
  --ink-strong: #0b0b0c;
  --muted: #69676d;
  --soft: #f5f5f4;
  --soft-purple: #f6effd;
  --paper: #ffffff;
  --line: #e5e3e7;
  --line-strong: #d4d1d7;
  --purple: #a956f7;
  --purple-dark: #8b36dc;
  --shell: min(1240px, calc(100% - 48px));
  --section-space: clamp(88px, 10vw, 148px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 14px 38px rgba(15, 14, 17, 0.08);
  --shadow-lg: 0 40px 100px rgba(15, 14, 17, 0.14);
  --font-sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink-strong);
  padding: 11px 17px;
  color: white;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding-block: var(--section-space);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(15, 14, 17, 0.06);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 1.45rem;
  font-weight: 750;
}

.brand-mark {
  width: 34px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button .icon {
  width: 1rem;
  height: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink-strong);
  color: white;
  box-shadow: 0 12px 32px -18px rgba(11, 11, 12, 0.75);
}

.button-primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 16px 38px -18px rgba(169, 86, 247, 0.7);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(169, 86, 247, 0.5);
  background: white;
}

.button-light {
  background: white;
  color: var(--ink-strong);
  box-shadow: 0 14px 38px -18px rgba(0, 0, 0, 0.55);
}

.button-light:hover {
  color: var(--purple-dark);
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.78rem;
}

.button-large {
  min-height: 52px;
  padding-inline: 23px;
  font-size: 0.92rem;
}

.menu-button {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-3px);
}

.menu-button span:last-child {
  transform: translateY(3px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 76px 0 auto;
  display: grid;
  max-height: calc(100svh - 76px);
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: white;
  padding: 14px 20px 24px;
  box-shadow: var(--shadow-sm);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 15px 2px;
  font-size: 0.95rem;
  font-weight: 650;
}

.mobile-menu-primary {
  margin-top: 12px;
  border: 0 !important;
  border-radius: 999px;
  background: var(--ink-strong);
  padding-inline: 18px !important;
  color: white;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: var(--paper);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
  min-height: 790px;
  padding-block: 80px 86px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.launch-badge,
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(169, 86, 247, 0.24);
  border-radius: 999px;
  background: var(--soft-purple);
  padding: 8px 13px;
  color: #6f2ba7;
  font-size: 0.72rem;
  font-weight: 750;
}

.launch-badge > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(169, 86, 247, 0.13);
}

.brand-slogan {
  margin: 30px 0 13px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.5rem, 6.1vw, 6.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero-description {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 31px;
}

.launch-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.launch-terms strong {
  color: var(--purple-dark);
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-stage {
  position: relative;
  min-height: 610px;
}

.app-window {
  position: absolute;
  z-index: 2;
  top: 76px;
  right: 0;
  width: min(100%, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.app-window img {
  width: 100%;
  height: auto;
}

.window-bar {
  display: grid;
  grid-template-columns: 7px 7px 7px 1fr;
  gap: 6px;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfbfb;
}

.window-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0cdd2;
}

.window-bar span:nth-child(2) {
  background: var(--purple);
}

.window-bar p {
  margin: 0 0 0 7px;
  color: #8c8990;
  font-size: 0.62rem;
}

.search-pill {
  position: absolute;
  z-index: 6;
  top: 20px;
  left: 5%;
  display: flex;
  width: min(430px, 72%);
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0 18px;
  color: #89868d;
  font-size: 0.78rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.search-pill .icon {
  width: 17px;
  height: 17px;
}

.floating-card,
.floating-rating,
.story-stack {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(229, 227, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.floating-card {
  border-radius: 18px;
  padding: 16px;
}

.floating-product {
  right: -24px;
  bottom: 22px;
  display: grid;
  width: 222px;
  gap: 4px;
}

.floating-card strong {
  font-size: 0.88rem;
  line-height: 1.35;
}

.floating-card span,
.floating-rating small {
  color: var(--muted);
  font-size: 0.66rem;
}

.floating-label {
  margin: 0;
  color: var(--purple-dark);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-business {
  bottom: 54px;
  left: -42px;
  display: flex;
  width: 220px;
  align-items: center;
  gap: 12px;
}

.floating-business > div:last-child {
  display: grid;
  gap: 3px;
}

.business-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--ink-strong);
  color: white;
  font-weight: 800;
}

.business-avatar .icon {
  width: 20px;
  height: 20px;
}

.floating-rating {
  top: 98px;
  right: -14px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 8px;
  border-radius: 15px;
  padding: 12px 14px;
}

.floating-rating > span {
  grid-column: 1 / -1;
  color: var(--purple);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
}

.floating-rating strong {
  font-size: 1rem;
}

.story-stack {
  top: 142px;
  left: -18px;
  display: flex;
  gap: 5px;
  border-radius: 16px;
  padding: 9px;
}

.story-stack span {
  display: grid;
  width: 54px;
  aspect-ratio: 3 / 4;
  place-items: end center;
  border-radius: 12px;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent),
    var(--soft-purple);
  padding: 6px 3px;
  color: white;
  font-size: 0.54rem;
  font-weight: 650;
}

.story-stack span:nth-child(2) {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent),
    #bbb7bf;
}

.story-stack span:nth-child(3) {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent),
    #7f7b83;
}

.hero-foot {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 249, 0.82);
}

.hero-foot .shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-foot div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-foot div span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 7px 11px;
  color: var(--muted);
  font-size: 0.68rem;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.section-copy h2,
.section-heading h2,
.people-copy h2,
.owners-copy h2,
.plans-heading h2,
.how h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  font-weight: 680;
  letter-spacing: -0.042em;
  line-height: 0.98;
}

.section-description,
.section-copy > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.spread {
  background: var(--soft);
}

.spread-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.section-copy {
  max-width: 520px;
}

.scattered-world {
  position: relative;
  min-height: 480px;
}

.message-bubble,
.social-fragment,
.lost-note {
  position: absolute;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
}

.message-bubble {
  max-width: 280px;
  border-radius: 22px 22px 22px 7px;
  padding: 16px 19px;
  font-size: 0.88rem;
  font-weight: 600;
}

.message-one {
  top: 18px;
  left: 5%;
  transform: rotate(-2deg);
}

.message-two {
  right: 2%;
  bottom: 50px;
  transform: rotate(2deg);
}

.social-fragment {
  top: 115px;
  right: 6%;
  display: grid;
  width: min(330px, 62%);
  gap: 8px;
  border-radius: 26px;
  padding: 25px;
  transform: rotate(2deg);
}

.social-fragment span,
.lost-note span {
  color: var(--purple-dark);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-fragment strong {
  font-size: 1.45rem;
}

.social-fragment small,
.lost-note small {
  color: var(--muted);
}

.lost-note {
  bottom: 72px;
  left: 1%;
  display: grid;
  width: min(330px, 64%);
  gap: 8px;
  border-radius: 20px;
  padding: 22px;
  transform: rotate(-3deg);
}

.lost-note strong {
  font-size: 1rem;
}

.spread-statement {
  margin-top: clamp(64px, 9vw, 120px);
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.spread-statement p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.spread-statement strong {
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: 60px;
  align-items: end;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.guide-stage {
  position: relative;
  min-height: 790px;
  margin-top: 70px;
}

.guide-screen {
  position: absolute;
  top: 70px;
  left: 50%;
  width: min(930px, 78%);
  margin: 0;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 27px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.guide-screen img {
  width: 100%;
  height: auto;
}

.guide-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 235px;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  padding: 17px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.guide-callout span {
  color: var(--purple-dark);
  font-size: 0.62rem;
  font-weight: 800;
}

.guide-callout strong {
  font-size: 0.87rem;
}

.guide-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.callout-search {
  top: 10px;
  left: 0;
}

.callout-products {
  right: 0;
  bottom: 95px;
}

.callout-local {
  bottom: 14px;
  left: 8%;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.signal-row > div {
  display: grid;
  gap: 8px;
  min-height: 128px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px;
}

.signal-row span {
  color: var(--purple-dark);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-row strong {
  align-self: end;
  font-size: 0.96rem;
}

.people {
  background: var(--soft);
}

.people-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.02fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.discovery-product {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.discovery-preview {
  width: min(310px, 78%);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.discovery-preview figcaption {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
}

.discovery-preview figcaption span {
  font-size: 0.74rem;
  font-weight: 750;
}

.discovery-preview figcaption small {
  color: var(--muted);
  font-size: 0.62rem;
}

.discovery-preview img {
  width: 100%;
  height: auto;
}

.discovery-note {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 11px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.discovery-note-top {
  top: 96px;
  right: 2%;
}

.discovery-note-bottom {
  bottom: 82px;
  left: 2%;
}

.people-copy {
  max-width: 600px;
}

.benefit-lines {
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.benefit-lines article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  border-bottom: 1px solid var(--line-strong);
  padding: 22px 0;
}

.benefit-lines article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: white;
  color: var(--purple-dark);
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px var(--line);
}

.benefit-lines article > span .icon {
  width: 17px;
  height: 17px;
}

.benefit-lines strong {
  font-size: 0.94rem;
}

.benefit-lines p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 750;
}

.inline-link .icon,
.path > a .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.owners {
  overflow: hidden;
  background: var(--ink-strong);
  color: white;
}

.owners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.owners-copy {
  position: relative;
  z-index: 3;
}

.owners-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.owner-benefits {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.owner-benefits li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.owner-benefits li .icon {
  margin-top: 3px;
  color: var(--purple);
}

.dashboard-product {
  position: relative;
  min-width: 0;
  padding-block: 64px 72px;
}

.dashboard-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #37343a;
  border-radius: 25px;
  background: #111;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
}

.dashboard-window img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dashboard-titlebar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #302d33;
  color: white;
}

.dashboard-titlebar span {
  font-size: 0.76rem;
  font-weight: 700;
}

.dashboard-titlebar small {
  color: #8d8990;
  font-size: 0.64rem;
}

.dashboard-stat {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: 190px;
  border: 1px solid #39363c;
  border-radius: 17px;
  background: rgba(27, 26, 29, 0.95);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.dashboard-stat span {
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 750;
  text-transform: uppercase;
}

.dashboard-stat strong {
  font-size: 0.82rem;
}

.stat-products {
  top: 8px;
  left: -24px;
}

.stat-stories {
  right: -8px;
  bottom: 18px;
}

.plans-section {
  background: var(--soft-purple);
}

.plans-card {
  border: 1px solid rgba(169, 86, 247, 0.2);
  border-radius: 32px;
  background: white;
  padding: clamp(30px, 6vw, 76px);
  box-shadow: 0 35px 90px rgba(83, 35, 123, 0.1);
}

.plans-heading {
  max-width: 850px;
}

.plans-heading h2 {
  margin-top: 24px;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.plans-heading > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.plan-option {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 34px);
}

.plan-option-free {
  border-color: rgba(169, 86, 247, 0.34);
  background: rgba(169, 86, 247, 0.055);
}

.plan-option-plus {
  background: var(--surface);
}

.plan-option-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.plan-option-header span {
  margin: 0;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-option-header h3 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  letter-spacing: -0.025em;
}

.plan-option-header > strong {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  white-space: nowrap;
}

.plan-option > p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.plan-option ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-option li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.plan-option li .icon {
  margin-top: 2px;
  color: var(--purple);
}

.plan-option .button,
.plan-soon {
  margin-top: auto;
}

.plan-soon {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.how {
  background: white;
}

.how-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.path {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 44px);
}

.path-owner {
  background: var(--soft);
}

.path header {
  display: grid;
  gap: 8px;
}

.path header span {
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path header strong {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.path ol {
  display: grid;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.path li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.path li b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.68rem;
}

.path li span {
  font-size: 0.88rem;
  font-weight: 650;
}

.path > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid;
  font-size: 0.82rem;
  font-weight: 750;
}

.closing {
  padding-block: clamp(100px, 14vw, 190px);
  background: var(--ink-strong);
  color: white;
}

.closing-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-brand img {
  width: 44px;
  filter: brightness(0) invert(1);
}

.closing h2 {
  max-width: 1000px;
  margin-top: 34px;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.closing .button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
}

.site-footer {
  padding: 72px 0 24px;
  background: white;
}

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

.footer-brand > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 0.78rem;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 440ms ease,
    transform 440ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 34px;
  }

  .floating-product {
    right: 0;
  }

  .floating-business {
    left: 0;
  }

  .owners-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .hero-layout,
  .spread-layout,
  .people-layout,
  .owners-layout {
    grid-template-columns: 1fr;
  }

  .plan-options {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 28px;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-product {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .spread-layout {
    gap: 48px;
  }

  .scattered-world {
    min-height: 430px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-stage {
    min-height: 690px;
  }

  .guide-screen {
    width: 88%;
  }

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

  .discovery-product {
    min-height: 540px;
  }

  .people-copy {
    max-width: 720px;
  }

  .owners-layout {
    gap: 40px;
  }

  .owners-copy {
    max-width: 700px;
  }

  .dashboard-window {
    width: 100%;
  }

}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 40px);
    --section-space: 82px;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu {
    inset-block-start: 68px;
    max-height: calc(100svh - 68px);
  }

  .hero {
    padding-top: 68px;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 56px 44px;
  }

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

  .hero-description {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .launch-terms {
    justify-content: center;
    text-align: center;
  }

  .product-stage {
    min-height: clamp(410px, 74vw, 560px);
  }

  .app-window {
    top: 58px;
    width: 100%;
    border-radius: 17px;
  }

  .search-pill {
    top: 8px;
    left: 4%;
    width: 84%;
    min-height: 46px;
    padding-inline: 15px;
    font-size: 0.68rem;
  }

  .floating-product {
    right: -5px;
    bottom: 12px;
    width: 190px;
  }

  .floating-business {
    bottom: 34px;
    left: -4px;
    width: 180px;
  }

  .floating-rating,
  .story-stack {
    display: none;
  }

  .hero-foot .shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .hero-foot div {
    gap: 6px;
  }

  .scattered-world {
    min-height: 470px;
  }

  .social-fragment {
    right: 0;
    width: 74%;
  }

  .lost-note {
    width: 76%;
  }

  .message-two {
    bottom: 18px;
  }

  .spread-statement p {
    display: grid;
  }

  .guide-stage {
    display: grid;
    min-height: auto;
    gap: 12px;
    margin-top: 44px;
  }

  .guide-screen,
  .guide-callout {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .guide-screen {
    order: -1;
    border-radius: 17px;
  }

  .guide-callout {
    padding: 15px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .signal-row > div {
    min-height: 100px;
  }

  .discovery-product {
    min-height: 490px;
  }

  .discovery-preview {
    width: min(300px, 82%);
    border-radius: 20px;
  }

  .discovery-note-top {
    right: 0;
  }

  .discovery-note-bottom {
    bottom: 24px;
    left: 0;
  }

  .owners-copy h2,
  .section-copy h2,
  .section-heading h2,
  .people-copy h2,
  .how h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .dashboard-product {
    padding-block: 52px 58px;
  }

  .dashboard-window {
    border-radius: 17px;
  }

  .dashboard-stat {
    width: 155px;
    padding: 13px;
  }

  .stat-products {
    top: 4px;
    left: -4px;
  }

  .stat-stories {
    right: -4px;
    bottom: 0;
  }

  .plans-card {
    border-radius: 24px;
    padding: 24px;
  }

  .plans-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .plan-option .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .plan-option-header {
    align-items: flex-end;
  }

  .how-paths {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .closing h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .closing-actions {
    display: grid;
    width: 100%;
  }

  .closing-actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .launch-badge {
    font-size: 0.66rem;
  }

  .product-stage {
    min-height: 410px;
  }

  .floating-product {
    bottom: 4px;
    width: 172px;
  }

  .floating-business {
    bottom: 18px;
    width: 165px;
  }

  .floating-card {
    padding: 12px;
  }

  .scattered-world {
    min-height: 500px;
  }

  .message-bubble {
    max-width: 245px;
  }

  .social-fragment,
  .lost-note {
    width: 82%;
  }

  .discovery-product {
    min-height: 445px;
  }

  .dashboard-product {
    padding-block: 48px 54px;
  }

  .dashboard-stat {
    width: 142px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
