@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --background: #fbf9ff;
  --surface: #f6f1fd;
  --surface-2: #efe8f8;
  --surface-3: #e6ddef;
  --ink: #1d1922;
  --ink-soft: #4e4657;
  --outline: #7c7285;
  --purple: #672be8;
  --purple-dark: #421496;
  --purple-pale: #ebddff;
  --pink-pale: #ffd7f5;
  --white: #fff;
  --max-width: 1240px;
  --shadow: 0 28px 80px rgba(45, 18, 94, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid #9a6cff;
  outline-offset: 4px;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 249, 255, 0.88);
  border-bottom: 1px solid rgba(124, 114, 133, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(103, 43, 232, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--purple);
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(103, 43, 232, 0.2);
  border-radius: 999px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(103, 43, 232, 0.12);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--surface-2);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  align-items: center;
  gap: 40px;
  padding-block: 84px 100px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--purple-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 1px 0;
  border-radius: 2px;
  background: var(--purple);
  transform: rotate(45deg);
}

.hero h1,
.section-heading h2,
.app-gallery-heading h2,
.privacy-copy h2,
.faq-heading h2,
.closing h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.6vw, 94px);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--purple);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(103, 43, 232, 0.24);
}

.button-disabled {
  cursor: default;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  color: var(--purple);
  font-size: 18px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--outline);
  font-size: 11px;
}

.hero-visual {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 48% 52% 56% 44% / 52% 46% 54% 48%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(145deg, #e8d9ff, #d7b8ff 55%, #ffcceb);
  filter: saturate(0.88);
  transform: rotate(-7deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(103, 43, 232, 0.17);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 650px;
  height: 650px;
  border-style: dashed;
}

.phone {
  position: relative;
  z-index: 2;
  width: 326px;
  padding: 10px;
  border: 1px solid rgba(29, 25, 34, 0.25);
  border-radius: 42px;
  background: #16121c;
  box-shadow: 0 42px 80px rgba(36, 17, 72, 0.3), 0 8px 24px rgba(36, 17, 72, 0.18);
  transform: rotate(3deg);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 72px;
  height: 20px;
  border-radius: 20px;
  background: #16121c;
  transform: translateX(-50%);
}

.phone-screen {
  height: 662px;
  position: relative;
  overflow: hidden;
  border-radius: 33px;
  background: var(--background);
  color: var(--ink);
}

.phone-status {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px 0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.app-bar {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.app-bar b {
  font-size: 13px;
  letter-spacing: 0.13em;
}

.app-actions {
  font-size: 24px;
  letter-spacing: 0.06em;
}

.screen-section {
  padding: 13px 17px 6px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conversation {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
}

.avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.avatar-purple {
  background: var(--purple-pale);
  color: #22005d;
}

.avatar-pink {
  background: var(--pink-pale);
  color: #31002f;
}

.avatar-neutral {
  background: var(--surface-3);
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: -2px;
}

.conversation-body {
  min-width: 0;
  flex: 1;
  color: var(--ink-soft);
  font-size: 10px;
  white-space: nowrap;
}

.conversation-body > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conversation-body b {
  max-width: 172px;
  overflow: hidden;
  color: var(--ink);
  font-size: 11.5px;
  text-overflow: ellipsis;
}

.conversation-body small {
  color: var(--ink-soft);
  font-size: 7.5px;
  text-transform: uppercase;
}

.conversation-body strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  text-overflow: ellipsis;
}

.conversation-body i {
  color: var(--purple);
  font-weight: 700;
}

.unread-count {
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--purple);
  color: var(--white);
  font-size: 8px;
  font-weight: 750;
}

.compose-fab {
  position: absolute;
  right: 15px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--purple);
  color: var(--white);
  font-size: 27px;
  font-weight: 300;
  box-shadow: 0 8px 18px rgba(103, 43, 232, 0.28);
}

.gesture-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 96px;
  height: 3px;
  border-radius: 99px;
  background: var(--ink);
  opacity: 0.22;
  transform: translateX(-50%);
}

.privacy-float {
  position: absolute;
  z-index: 4;
  right: -10px;
  top: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(103, 43, 232, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(45, 18, 94, 0.16);
  backdrop-filter: blur(16px);
}

.privacy-float svg {
  width: 26px;
  height: 26px;
  fill: var(--purple);
}

.privacy-float span {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
}

.privacy-float strong {
  display: block;
  color: var(--ink);
  font-size: 10px;
}

.trust-strip {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(124, 114, 133, 0.25);
}

.trust-strip > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 34px;
  border-right: 1px solid rgba(124, 114, 133, 0.25);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-mark,
.feature-number {
  color: var(--purple);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border: 1px solid var(--surface-3);
  border-radius: 8px;
  background: var(--surface);
}

.trust-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
  padding-block: 160px 90px;
}

.section-heading h2,
.app-gallery-heading h2,
.privacy-copy h2,
.faq-heading h2,
.closing h2,
.page-hero h1 {
  font-size: clamp(46px, 5.4vw, 74px);
}

.section-intro {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.feature-showcase {
  padding-bottom: 150px;
}

.feature-wide,
.feature-card {
  overflow: hidden;
  border: 1px solid rgba(124, 114, 133, 0.18);
  border-radius: 28px;
}

.feature-wide {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
}

.feature-thread {
  background: var(--surface);
}

.feature-copy {
  align-self: center;
  padding: 64px;
}

.feature-copy h3,
.feature-card h3 {
  margin: 19px 0 22px;
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.feature-copy p,
.feature-card p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.thread-preview {
  min-height: 610px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 80px;
  background: var(--background);
  border-left: 1px solid rgba(124, 114, 133, 0.18);
}

.thread-header {
  position: absolute;
  top: 24px;
  right: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 19px;
}

.thread-header > span:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.thread-header b {
  color: var(--ink);
  font-size: 13px;
}

.thread-header small {
  font-size: 9px;
}

.thread-spacer {
  flex: 1;
}

.thread-day {
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bubble {
  max-width: 70%;
  margin-top: 4px;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.55;
}

.bubble-in {
  align-self: flex-start;
  background: #f0eaf7;
}

.bubble.short {
  margin-top: 3px;
}

.bubble-out,
.bubble-scheduled {
  align-self: flex-end;
  border: 1.5px solid var(--purple);
  color: var(--purple-dark);
}

.bubble-scheduled {
  margin-top: 18px;
  border-color: var(--outline);
  border-style: dashed;
  color: var(--ink);
}

.bubble-time {
  margin: 4px 4px 8px;
  color: var(--outline);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bubble-time-out {
  align-self: flex-end;
}

.scheduled-label {
  color: var(--purple);
}

.composer {
  position: absolute;
  right: 34px;
  bottom: 22px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 15px;
}

.composer > span:not(.composer-input) {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--outline);
  border-radius: 10px;
}

.composer-input {
  height: 37px;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 12px;
  border: 1px solid var(--outline);
  border-radius: 10px;
  font-size: 10px;
}

.composer .send {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-block: 20px;
}

.feature-card {
  min-height: 620px;
  position: relative;
  padding: 58px;
}

.feature-schedule {
  background: var(--purple);
  color: var(--white);
}

.feature-schedule .feature-number,
.feature-schedule p {
  color: #d9c7ff;
}

.feature-sim {
  background: #f7e9f6;
}

.schedule-card {
  position: absolute;
  right: 38px;
  bottom: 44px;
  left: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.11);
}

.schedule-card .avatar {
  background: var(--white);
  color: var(--purple);
}

.schedule-card > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.schedule-card b {
  font-size: 12px;
}

.schedule-card small {
  margin-top: 5px;
  color: #d9c7ff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--white);
  color: var(--purple);
  font-weight: 800;
}

.sim-stack {
  position: absolute;
  right: 40px;
  bottom: 35px;
  left: 40px;
  height: 210px;
}

.sim-card {
  position: absolute;
  width: 74%;
  height: 132px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 24px;
  border: 1px solid rgba(103, 43, 232, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(49, 0, 47, 0.11);
}

.sim-card b {
  color: var(--purple-dark);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.sim-card small {
  color: var(--ink-soft);
  font-size: 11px;
}

.sim-card i {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-one {
  top: 0;
  left: 0;
  background: var(--white);
  transform: rotate(-4deg);
}

.sim-two {
  right: 0;
  bottom: 0;
  background: var(--purple-pale);
  transform: rotate(4deg);
}

.feature-organize {
  min-height: 540px;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--ink);
  color: var(--white);
}

.feature-organize .feature-number {
  color: #ceb4ff;
}

.feature-organize .feature-copy p {
  color: #cdc3d2;
}

.organize-visual {
  align-self: center;
  padding: 64px;
}

.search-pill {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #968da0;
  border-radius: 14px;
  color: #cdc3d2;
  font-size: 15px;
}

.search-pill span {
  flex: 1;
  font-size: 12px;
}

.search-pill kbd {
  padding: 5px 7px;
  border: 1px solid #4d4555;
  border-radius: 6px;
  background: #241e2c;
  color: #cdc3d2;
  font-size: 9px;
}

.organize-rows {
  margin: 22px 10px 0;
}

.organize-rows > span {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border-bottom: 1px solid #332b3c;
}

.organize-rows b {
  font-size: 12px;
}

.organize-rows small {
  color: #968da0;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #2d2635;
  color: #ceb4ff;
  font-style: normal;
}

.app-gallery {
  padding-block: 10px 150px;
  overflow: hidden;
  scroll-margin-top: 80px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 215, 245, 0.5), transparent 24%),
    linear-gradient(180deg, var(--background), #f5f0fb);
}

.app-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.app-gallery-heading h2 {
  margin: 0;
}

.app-gallery-intro {
  max-width: 520px;
  justify-self: end;
}

.app-gallery-intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.app-gallery-intro .app-gallery-note {
  margin-top: 15px;
  color: var(--outline);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.app-gallery-track {
  display: grid;
  grid-auto-columns: minmax(248px, 286px);
  grid-auto-flow: column;
  gap: 22px;
  padding: 18px 6px 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 6px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--purple) var(--surface-3);
  scrollbar-width: thin;
}

.app-gallery-track::-webkit-scrollbar {
  height: 8px;
}

.app-gallery-track::-webkit-scrollbar-track {
  border-radius: 8px;
  background: var(--surface-3);
}

.app-gallery-track::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: var(--purple);
}

.app-gallery-card {
  margin: 0;
  scroll-snap-align: start;
}

.app-gallery-card > a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(29, 25, 34, 0.16);
  border-radius: 30px;
  background: var(--background);
  box-shadow: 0 24px 54px rgba(45, 18, 94, 0.15);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

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

.app-gallery-card figcaption {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  margin-top: 19px;
}

.app-gallery-card figcaption > span:first-child {
  color: var(--purple);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.app-gallery-card figcaption > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.app-gallery-card figcaption strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.app-gallery-card figcaption small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

@media (hover: hover) {
  .app-gallery-card > a:hover {
    box-shadow: 0 30px 68px rgba(45, 18, 94, 0.22);
    transform: translateY(-6px);
  }
}

.privacy-section {
  overflow: hidden;
  background: var(--purple);
  color: var(--white);
}

.privacy-inner {
  min-height: 770px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
  padding-block: 110px;
}

.eyebrow-light {
  color: #d9c7ff;
}

.privacy-copy h2 em {
  color: #e8dcff;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 34px;
  color: #dfd1ff;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-diagram {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}

.privacy-diagram::before,
.privacy-diagram::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.privacy-diagram::before {
  width: 460px;
  height: 460px;
}

.privacy-diagram::after {
  width: 330px;
  height: 330px;
}

.diagram-phone {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 280px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(40, 0, 111, 0.24);
  backdrop-filter: blur(16px);
}

.diagram-phone img {
  margin-bottom: 20px;
  border-radius: 18px;
}

.diagram-phone strong,
.diagram-block strong {
  font-size: 14px;
}

.diagram-phone small,
.diagram-block small {
  margin-top: 8px;
  color: #d9c7ff;
  font-size: 9px;
}

.diagram-block {
  position: absolute;
  z-index: 3;
  top: 54px;
  right: 4px;
  width: 190px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  background: #5220ba;
}

.diagram-block > span {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-weight: 800;
}

.diagram-note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 36px;
  width: 260px;
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 15px;
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: 0 18px 42px rgba(40, 0, 111, 0.2);
}

.diagram-note > span {
  color: var(--purple);
  font-weight: 800;
}

.diagram-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.diagram-note strong {
  display: block;
  color: var(--ink);
  font-size: 10px;
}

.privacy-ticker {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.privacy-ticker i {
  font-style: normal;
  opacity: 0.5;
}

.more-features {
  padding-block: 150px;
}

.section-heading.compact {
  max-width: 800px;
}

.section-heading.compact h2 {
  font-size: clamp(44px, 5.2vw, 68px);
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-block: 1px solid rgba(124, 114, 133, 0.24);
}

.mini-feature-grid article {
  min-height: 290px;
  padding: 38px 30px;
  border-right: 1px solid rgba(124, 114, 133, 0.24);
}

.mini-feature-grid article:last-child {
  border-right: 0;
}

.line-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--outline);
  border-radius: 12px;
  color: var(--purple);
  font-size: 19px;
}

.mini-feature-grid h3 {
  margin: 54px 0 12px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.mini-feature-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding-bottom: 160px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: clamp(42px, 4.7vw, 66px);
}

.faq-heading .text-link {
  margin-top: 34px;
}

.accordion {
  border-top: 1px solid rgba(124, 114, 133, 0.32);
}

.accordion details {
  border-bottom: 1px solid rgba(124, 114, 133, 0.32);
}

.accordion summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--purple);
  font-size: 20px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  margin: -10px 58px 28px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.closing {
  min-height: 650px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
  border-top: 1px solid rgba(124, 114, 133, 0.22);
  text-align: center;
}

.closing-icon {
  margin-bottom: 34px;
  padding: 10px;
  border: 1px solid var(--surface-3);
  border-radius: 27px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.closing-icon img {
  border-radius: 22px;
}

.closing h2 {
  margin-bottom: 36px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 76px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand > span {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-top: 4px;
  color: #968da0;
  font-size: 10px;
  font-weight: 500;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 60px;
}

.footer-top nav div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-top nav strong {
  margin-bottom: 7px;
  color: #968da0;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-top nav a {
  color: #e9e0ec;
  font-size: 12px;
  text-decoration: none;
}

.footer-top nav a:hover {
  color: #ceb4ff;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #332b3c;
  color: #968da0;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Inner pages */
.inner-page {
  background: var(--background);
}

.page-hero {
  padding-block: 120px 92px;
  border-bottom: 1px solid rgba(124, 114, 133, 0.22);
}

.page-hero .eyebrow {
  margin-bottom: 26px;
}

.page-hero > p:not(.eyebrow) {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.page-meta {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  color: var(--outline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 90px;
  padding-block: 100px 150px;
}

.page-toc {
  align-self: start;
  position: sticky;
  top: 120px;
}

.page-toc strong {
  display: block;
  margin-bottom: 18px;
  color: var(--outline);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-toc a {
  display: block;
  margin: 11px 0;
  color: var(--ink-soft);
  font-size: 11px;
  text-decoration: none;
}

.page-toc a:hover {
  color: var(--purple);
}

.prose-section {
  scroll-margin-top: 110px;
  padding: 0 0 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid rgba(124, 114, 133, 0.22);
}

.prose-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.prose-section h2 {
  margin: 0 0 22px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.prose-section h3 {
  margin: 32px 0 12px;
  font-size: 16px;
}

.prose-section p,
.prose-section li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.prose-section ul {
  padding-left: 20px;
}

.prose-section li + li {
  margin-top: 10px;
}

.prose-section a {
  color: var(--purple-dark);
  font-weight: 650;
}

.policy-callout,
.support-callout {
  padding: 24px;
  border: 1px solid rgba(103, 43, 232, 0.2);
  border-radius: 16px;
  background: var(--purple-pale);
}

.policy-callout strong,
.support-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--purple-dark);
}

.policy-callout p,
.support-callout p {
  margin: 0;
  color: var(--purple-dark);
  font-size: 12px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.support-card {
  padding: 24px;
  border: 1px solid rgba(124, 114, 133, 0.22);
  border-radius: 16px;
  background: var(--white);
}

.support-card span {
  color: var(--purple);
  font-size: 21px;
}

.support-card h3 {
  margin: 20px 0 8px;
  font-size: 15px;
}

.support-card p {
  margin: 0;
  font-size: 12px;
}

.support-steps {
  padding: 0;
  list-style: none;
  counter-reset: support-step;
}

.support-steps li {
  position: relative;
  min-height: 50px;
  padding-left: 52px;
  counter-increment: support-step;
}

.support-steps li::before {
  content: counter(support-step);
  position: absolute;
  top: 1px;
  left: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
}

.error-page {
  min-height: 100vh;
  width: min(calc(100% - 48px), 760px);
  margin: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.error-page .brand {
  margin-bottom: 72px;
}

.error-page h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 86px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.error-page > p:not(.eyebrow) {
  max-width: 480px;
  margin: 26px 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-visual {
    transform: scale(0.9);
  }

  .privacy-float {
    right: -30px;
  }

  .feature-copy,
  .feature-card,
  .organize-visual {
    padding: 44px;
  }

  .thread-preview {
    padding-inline: 42px;
  }

  .mini-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .mini-feature-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(124, 114, 133, 0.24);
  }
}

@media (max-width: 820px) {
  .section-shell,
  .header-inner,
  .trust-strip {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    min-height: 68px;
    height: auto;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding-top: 16px;
  }

  .site-nav .nav-status {
    display: none;
  }

  .js .header-inner {
    height: 68px;
    min-height: 0;
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .js .menu-button {
    display: block;
  }

  .js .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .js .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .js .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    width: auto;
    max-height: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: var(--background);
    border-bottom: 1px solid var(--surface-3);
    transition: max-height 220ms ease;
  }

  .js .site-nav.is-open {
    max-height: calc(100vh - 68px);
    padding: 16px;
  }

  .js .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--surface-2);
    font-size: 15px;
  }

  .js .site-nav .nav-status {
    display: inline-flex;
    align-self: flex-start;
    margin: 20px 16px 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 80px 100px;
  }

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

  .hero h1 {
    font-size: clamp(56px, 15vw, 84px);
  }

  .hero-visual {
    min-height: 650px;
    transform: none;
  }

  .privacy-float {
    right: 4%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    min-height: 90px;
    padding-inline: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(124, 114, 133, 0.25);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 120px 70px;
  }

  .section-intro {
    max-width: 650px;
  }

  .feature-wide,
  .feature-organize {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    min-height: 410px;
  }

  .thread-preview {
    border-top: 1px solid rgba(124, 114, 133, 0.18);
    border-left: 0;
  }

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

  .feature-organize .organize-visual {
    order: 2;
  }

  .app-gallery-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .app-gallery-intro {
    max-width: 650px;
    justify-self: start;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .privacy-diagram {
    min-height: 520px;
  }

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

  .faq-heading {
    position: static;
  }

  .footer-top {
    gap: 80px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--surface-3);
  }

  .page-toc strong {
    width: 100%;
  }

  .page-toc a {
    margin: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    overflow: hidden;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 68px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-visual::before {
    width: 390px;
    height: 390px;
  }

  .orbit-one {
    width: 450px;
    height: 450px;
  }

  .orbit-two {
    width: 530px;
    height: 530px;
  }

  .phone {
    width: 282px;
  }

  .phone-screen {
    height: 570px;
  }

  .conversation {
    height: 47px;
  }

  .screen-section {
    padding-top: 9px;
  }

  .privacy-float {
    top: 92px;
    right: -8px;
    transform: scale(0.9);
  }

  .feature-showcase,
  .more-features,
  .faq {
    padding-bottom: 100px;
  }

  .app-gallery {
    padding-bottom: 100px;
  }

  .app-gallery-heading {
    margin-bottom: 42px;
  }

  .app-gallery-heading h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .app-gallery-track {
    grid-auto-columns: min(78vw, 286px);
  }

  .feature-wide,
  .feature-card {
    border-radius: 20px;
  }

  .feature-copy,
  .feature-card,
  .organize-visual {
    padding: 34px 26px;
  }

  .feature-copy {
    min-height: auto;
    padding-block: 54px;
  }

  .thread-preview {
    min-height: 580px;
    padding-inline: 24px;
  }

  .thread-header,
  .composer {
    right: 20px;
    left: 20px;
  }

  .feature-card {
    min-height: 570px;
  }

  .schedule-card,
  .sim-stack {
    right: 22px;
    left: 22px;
  }

  .sim-card {
    width: 82%;
  }

  .organize-visual {
    padding-bottom: 54px;
  }

  .privacy-inner {
    padding-block: 90px;
  }

  .privacy-diagram {
    min-height: 460px;
    transform: scale(0.88);
  }

  .privacy-ticker {
    justify-content: flex-start;
  }

  .mini-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .mini-feature-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(124, 114, 133, 0.24);
  }

  .mini-feature-grid article:last-child {
    border-bottom: 0;
  }

  .mini-feature-grid h3 {
    margin-top: 34px;
  }

  .accordion summary {
    min-height: 84px;
    font-size: 13px;
  }

  .footer-top {
    min-height: auto;
    flex-direction: column;
    gap: 60px;
  }

  .footer-top nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-block: 20px;
  }

  .page-hero {
    padding-block: 82px 70px;
  }

  .page-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .page-meta {
    flex-direction: column;
    gap: 6px;
  }

  .page-layout {
    padding-block: 70px 100px;
  }

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

@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 [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
