/* ── Moya landing system ── warm pearl + lavender / peach / mint ── */

:root {
  color-scheme: light;
  --c-purple: hsl(258, 70%, 60%);
  --c-purple-deep: hsl(262, 65%, 52%);
  --c-pink: hsl(338, 78%, 64%);
  --c-peach: hsl(20, 90%, 72%);
  --c-mint: hsl(160, 55%, 60%);
  --c-mint-deep: hsl(160, 55%, 38%);
  --c-bg: hsl(32, 50%, 98%);
  --c-text: hsl(240, 12%, 10%);
  --c-subtext: hsl(240, 8%, 38%);
  --c-muted: hsl(240, 6%, 55%);
  --c-hairline: hsla(240, 12%, 12%, 0.08);
  --c-chip-bg: hsla(255, 40%, 96%, 0.6);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--c-text);
  background: var(--c-bg);
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

::selection {
  background: hsla(258, 70%, 60%, 0.18);
  color: var(--c-text);
}

.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;
}

/* ── Page shell + floating blooms ── */
.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.bloom {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.bloom-lavender {
  top: -25%;
  right: -15%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(
    circle,
    hsla(258, 75%, 78%, 0.28) 0%,
    hsla(258, 70%, 80%, 0.06) 50%,
    transparent 75%
  );
}

.bloom-peach {
  bottom: -30%;
  left: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(
    circle,
    hsla(20, 90%, 80%, 0.22) 0%,
    hsla(338, 80%, 82%, 0.08) 45%,
    transparent 75%
  );
  filter: blur(90px);
}

.bloom-pink {
  top: 40%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, hsla(338, 85%, 82%, 0.18) 0%, transparent 70%);
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 1100px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ── MoyaMark ── */
.moya-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.moya-mark-sm {
  width: 22px;
  height: 22px;
}

.moya-mark-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, hsl(250, 40%, 84%) 0%, hsl(250, 35%, 74%) 75%);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.6),
    0 1px 4px -1px hsla(258, 55%, 40%, 0.18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moya-mark-core {
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, hsl(258, 80%, 72%) 0%, hsl(262, 70%, 56%) 80%);
  box-shadow: inset 0 0.5px 0 hsla(0, 0%, 100%, 0.45);
}

.moya-mark-ring::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 14%;
  width: 26%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(0, 0%, 100%, 0.55), transparent 70%);
  filter: blur(1px);
}

/* ── Header / nav ── */
.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand-platform {
  font-size: 12px;
  font-weight: 300;
  margin-left: 4px;
  color: var(--c-muted);
}

@media (max-width: 540px) {
  .brand-platform {
    display: none;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-link:hover svg {
  transform: translateX(2px);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 80px;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    padding-top: 56px;
    padding-bottom: 112px;
  }
}

.hero.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero.hero-centered .hero-title,
.hero.hero-centered .hero-subtitle,
.hero.hero-centered .form-meta {
  margin-left: auto;
  margin-right: auto;
}

.hero.hero-centered .hero-subtitle {
  max-width: 580px;
}

.hero.hero-centered .privacy-row {
  justify-content: center;
}

.hero.hero-centered .waitlist {
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-meta {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--c-muted);
}

.hero.hero-centered .hero-cta-wrap {
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero.hero-centered {
    padding-top: 80px;
    padding-bottom: 96px;
  }
}

.text-link {
  color: var(--c-purple-deep);
  text-decoration: underline;
  text-decoration-color: hsla(258, 70%, 60%, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 180ms ease;
}

.text-link:hover {
  text-decoration-color: hsla(258, 70%, 60%, 0.85);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-purple-deep);
  margin: 0 0 24px;
}

.hero-title {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--c-text);
  margin: 0 0 28px;
  max-width: 16ch;
}

.hero-title-xl {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: none;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 440px;
  color: var(--c-subtext);
  letter-spacing: -0.005em;
  margin: 0 0 36px;
}

.form-meta {
  margin: 12px 0 0;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--c-muted);
  max-width: 440px;
}

.privacy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--c-chip-bg);
  border: 1px solid var(--c-hairline);
}

.privacy-chip svg {
  width: 12px;
  height: 12px;
  color: var(--c-purple-deep);
}

.privacy-chip span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--c-subtext);
}

/* ── Waitlist form ── */
.waitlist {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 440px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.95), hsla(258, 40%, 98%, 0.85));
  backdrop-filter: blur(28px) saturate(1.7);
  -webkit-backdrop-filter: blur(28px) saturate(1.7);
  border: 1px solid hsla(0, 0%, 100%, 0.95);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(258, 55%, 70%, 0.22),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 10px 28px -10px hsla(258, 45%, 40%, 0.18),
    0 22px 50px -22px hsla(338, 45%, 45%, 0.18);
}

.waitlist input {
  flex: 1;
  min-width: 0;
  background: transparent;
  outline: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 300;
  color: var(--c-text);
  padding: 8px 0;
}

.waitlist input::placeholder {
  color: var(--c-muted);
}

.waitlist button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  background: linear-gradient(155deg, hsl(338, 78%, 64%), hsl(258, 70%, 60%) 55%, hsl(262, 65%, 52%));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.3),
    0 6px 18px -6px hsla(262, 65%, 52%, 0.55),
    0 2px 8px -1px hsla(338, 78%, 64%, 0.35);
  transition: transform 180ms ease, opacity 180ms ease;
}

.waitlist button:hover {
  transform: scale(1.02);
}

.waitlist button:active {
  transform: scale(0.98);
}

.waitlist button:disabled {
  opacity: 0.7;
  cursor: progress;
}

.waitlist button svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.waitlist button svg[hidden] {
  display: none;
}

.waitlist button:hover svg.icon-arrow {
  transform: translateX(2px);
}

.waitlist .spinner {
  animation: spin 800ms linear infinite;
}

.waitlist-done {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: hsl(160, 55%, 32%);
  background: linear-gradient(155deg, hsla(160, 70%, 96%, 0.95), hsla(160, 55%, 92%, 0.85));
  border: 1px solid hsla(160, 50%, 60%, 0.35);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    0 6px 18px -8px hsla(160, 55%, 40%, 0.25);
}

.waitlist-done svg {
  width: 16px;
  height: 16px;
}

.waitlist-error {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: hsl(338, 62%, 44%);
}

/* ── Download button (gradient pill, used on /beta) ── */
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  background: linear-gradient(155deg, hsl(338, 78%, 64%), hsl(258, 70%, 60%) 55%, hsl(262, 65%, 52%));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.3),
    0 8px 22px -6px hsla(262, 65%, 52%, 0.55),
    0 2px 8px -1px hsla(338, 78%, 64%, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-button:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.3),
    0 12px 28px -6px hsla(262, 65%, 52%, 0.55),
    0 4px 12px -1px hsla(338, 78%, 64%, 0.4);
}

.download-button:active {
  transform: scale(0.98);
}

.download-button svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.download-button:hover svg {
  transform: translateY(1px);
}

/* ── Hero demo (homepage / beta) ── */
.hero-demo {
  position: relative;
  width: 100%;
}

.hero-demo::before {
  content: "";
  position: absolute;
  inset: -64px;
  z-index: -1;
  background:
    radial-gradient(45% 40% at 75% 35%, hsla(338, 80%, 80%, 0.32) 0%, transparent 70%),
    radial-gradient(40% 38% at 25% 70%, hsla(258, 75%, 78%, 0.30) 0%, transparent 75%),
    radial-gradient(35% 30% at 60% 85%, hsla(160, 70%, 78%, 0.18) 0%, transparent 75%);
  filter: blur(60px);
}

.demo-row {
  display: none;
}

@media (min-width: 768px) {
  .demo-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
  }
}

@media (min-width: 1024px) {
  .demo-row {
    padding-right: 48px;
  }
}

@media (min-width: 1280px) {
  .demo-row {
    padding-right: 80px;
  }
}

.demo-window-wrap {
  flex: 1;
  min-width: 0;
  max-width: 460px;
}

.demo-side {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
}

.demo-pills-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: center;
  width: 210px;
}

.demo-pills-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.demo-input-wrap {
  width: 100%;
  margin-top: 4px;
}

.demo-rail-wrap {
  display: flex;
  align-items: center;
}

.demo-mobile {
  max-width: 460px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .demo-mobile {
    display: none;
  }
}

.demo-mobile-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.demo-mobile-input {
  width: 100%;
  max-width: 360px;
  margin: 16px auto 0;
}

/* ── App window (macOS-style) ── */
.app-window {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsla(240, 10%, 15%, 0.1);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.9),
    0 2px 6px hsla(240, 15%, 15%, 0.06),
    0 30px 70px -20px hsla(240, 25%, 20%, 0.22);
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, hsl(0, 0%, 98%), hsl(0, 0%, 95%));
  border-bottom: 1px solid var(--c-hairline);
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.traffic-lights span:nth-child(1) {
  background: hsl(0, 65%, 65%);
}

.traffic-lights span:nth-child(2) {
  background: hsl(40, 80%, 60%);
}

.traffic-lights span:nth-child(3) {
  background: hsl(130, 50%, 55%);
}

.titlebar-app {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.titlebar-app svg {
  width: 14px;
  height: 14px;
  color: var(--c-muted);
}

.titlebar-app-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--c-subtext);
}

.titlebar-search {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: hsla(240, 10%, 15%, 0.04);
}

.titlebar-search svg {
  width: 12px;
  height: 12px;
  color: var(--c-muted);
}

.titlebar-search span {
  font-size: 10.5px;
  color: var(--c-muted);
}

.app-body {
  padding: 20px;
  opacity: 0;
  animation: fadeIn 450ms var(--ease) forwards;
}

.app-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin: 0 0 12px;
}

.app-sender {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0 0 4px;
}

.app-meta {
  font-size: 11.5px;
  color: var(--c-muted);
  margin: 0 0 16px;
}

.app-body-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-body-line {
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--c-subtext);
  margin: 0;
  min-height: 18px;
}

/* ── Moya action pill ── */
.moya-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(32px) saturate(1.9);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  border: 1px solid hsla(0, 0%, 100%, 0.95);
  animation: fadeInRight 400ms var(--ease) backwards;
}

.moya-pill svg {
  width: 14px;
  height: 14px;
}

.moya-pill span {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-text);
}

.moya-pill[data-tint="0"] {
  background: linear-gradient(155deg, hsla(258, 80%, 96%, 0.95), hsla(258, 70%, 92%, 0.85));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(258, 60%, 70%, 0.25),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 8px 22px -8px hsla(258, 40%, 40%, 0.18),
    0 18px 44px -18px hsla(338, 40%, 40%, 0.18);
}

.moya-pill[data-tint="0"] svg {
  color: var(--c-purple-deep);
}

.moya-pill[data-tint="1"] {
  background: linear-gradient(155deg, hsla(338, 90%, 97%, 0.95), hsla(338, 75%, 93%, 0.85));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(338, 70%, 70%, 0.25),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 8px 22px -8px hsla(258, 40%, 40%, 0.18),
    0 18px 44px -18px hsla(338, 40%, 40%, 0.18);
}

.moya-pill[data-tint="1"] svg {
  color: var(--c-pink);
}

.moya-pill[data-tint="2"] {
  background: linear-gradient(155deg, hsla(160, 70%, 96%, 0.95), hsla(160, 55%, 92%, 0.85));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(160, 50%, 60%, 0.25),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 8px 22px -8px hsla(258, 40%, 40%, 0.18),
    0 18px 44px -18px hsla(338, 40%, 40%, 0.18);
}

.moya-pill[data-tint="2"] svg {
  color: hsl(160, 60%, 40%);
}

/* ── Moya input ── */
.moya-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 8px;
  border-radius: 999px;
  width: 100%;
  background: linear-gradient(
    155deg,
    hsla(258, 80%, 98%, 0.95) 0%,
    hsla(338, 80%, 98%, 0.85) 55%,
    hsla(20, 90%, 97%, 0.9) 100%
  );
  backdrop-filter: blur(32px) saturate(1.9);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  border: 1px solid hsla(0, 0%, 100%, 0.95);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 -1px 0 hsla(338, 40%, 80%, 0.18),
    0 1px 2px hsla(258, 30%, 40%, 0.05),
    0 8px 24px -8px hsla(258, 40%, 50%, 0.18),
    0 22px 56px -20px hsla(338, 50%, 50%, 0.18);
}

.moya-input-placeholder {
  flex: 1;
  font-size: 12px;
  font-weight: 300;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.moya-input-send {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--c-pink), var(--c-purple) 55%, var(--c-purple-deep));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.5),
    0 3px 10px -2px hsla(262, 65%, 52%, 0.4),
    0 2px 6px -1px hsla(338, 78%, 64%, 0.33);
}

.moya-input-send svg {
  width: 14px;
  height: 14px;
  color: white;
}

/* ── Edge rail ── */
.edge-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.65) 0%, hsla(0, 0%, 100%, 0.45) 100%);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border: 1px solid hsla(0, 0%, 100%, 0.7);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.9),
    0 12px 32px -10px hsla(345, 15%, 30%, 0.18);
}

.edge-rail-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 48px;
  border-radius: 999px;
}

.edge-rail-cell svg {
  width: 14px;
  height: 14px;
}

.edge-rail-cell span {
  font-size: 7.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 2px;
}

.edge-rail-cell.is-active {
  color: var(--c-purple-deep);
  background: linear-gradient(180deg, hsla(255, 60%, 78%, 0.28) 0%, hsla(255, 55%, 70%, 0.18) 100%);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.7),
    inset 0 0 0 1px hsla(255, 45%, 68%, 0.22);
}

.edge-rail-cell.is-muted {
  color: var(--c-muted);
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 10;
  padding-top: 88px;
  padding-bottom: 88px;
}

@media (min-width: 768px) {
  .section {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

.section-narrow {
  max-width: 1100px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-purple-deep);
  margin: 0 0 16px;
}

.section-eyebrow.muted {
  color: var(--c-muted);
  font-weight: 300;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--c-text);
  margin: 0;
}

.section-desc {
  margin: 18px auto 0;
  max-width: 540px;
  font-size: 15px;
  font-weight: 300;
  color: var(--c-subtext);
  line-height: 1.6;
}

.gradient-text {
  background-image: linear-gradient(110deg, var(--c-purple-deep) 0%, var(--c-pink) 55%, var(--c-peach) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Glass benefit cards (3-up) ── */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.benefit-card {
  position: relative;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 28px;
  opacity: 0.7;
  filter: blur(24px);
  transition: opacity 500ms ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card[data-tint="0"]::before {
  background: radial-gradient(60% 70% at 50% 30%, hsla(258, 80%, 75%, 0.35) 0%, transparent 75%);
}

.benefit-card[data-tint="1"]::before {
  background: radial-gradient(60% 70% at 50% 30%, hsla(338, 85%, 80%, 0.35) 0%, transparent 75%);
}

.benefit-card[data-tint="2"]::before {
  background: radial-gradient(60% 70% at 50% 30%, hsla(160, 70%, 75%, 0.32) 0%, transparent 75%);
}

.benefit-inner {
  height: 100%;
  padding: 26px;
  border-radius: 22px;
  backdrop-filter: blur(32px) saturate(1.9);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  border: 1px solid hsla(0, 0%, 100%, 0.95);
  transition: transform 500ms var(--ease);
}

.benefit-card:hover .benefit-inner {
  transform: translateY(-4px);
}

.benefit-card[data-tint="0"] .benefit-inner {
  background: linear-gradient(155deg, hsla(258, 90%, 97%, 0.9) 0%, hsla(258, 70%, 93%, 0.7) 100%);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(258, 60%, 70%, 0.28),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 12px 32px -10px hsla(258, 40%, 40%, 0.14),
    0 28px 60px -22px hsla(338, 40%, 40%, 0.18);
}

.benefit-card[data-tint="1"] .benefit-inner {
  background: linear-gradient(155deg, hsla(338, 90%, 97%, 0.9) 0%, hsla(338, 75%, 93%, 0.7) 100%);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(338, 70%, 72%, 0.28),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 12px 32px -10px hsla(258, 40%, 40%, 0.14),
    0 28px 60px -22px hsla(338, 40%, 40%, 0.18);
}

.benefit-card[data-tint="2"] .benefit-inner {
  background: linear-gradient(155deg, hsla(160, 75%, 97%, 0.9) 0%, hsla(160, 55%, 93%, 0.7) 100%);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.98),
    inset 0 0 0 1px hsla(160, 50%, 60%, 0.28),
    0 1px 2px hsla(240, 15%, 15%, 0.04),
    0 12px 32px -10px hsla(258, 40%, 40%, 0.14),
    0 28px 60px -22px hsla(160, 40%, 40%, 0.18);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.95), hsla(0, 0%, 100%, 0.65));
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
}

.benefit-card[data-tint="0"] .benefit-icon {
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    inset 0 0 0 1px hsla(258, 60%, 70%, 0.28);
}

.benefit-card[data-tint="0"] .benefit-icon svg {
  color: var(--c-purple-deep);
}

.benefit-card[data-tint="1"] .benefit-icon {
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    inset 0 0 0 1px hsla(338, 70%, 72%, 0.28);
}

.benefit-card[data-tint="1"] .benefit-icon svg {
  color: var(--c-pink);
}

.benefit-card[data-tint="2"] .benefit-icon {
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    inset 0 0 0 1px hsla(160, 50%, 60%, 0.28);
}

.benefit-card[data-tint="2"] .benefit-icon svg {
  color: hsl(160, 55%, 38%);
}

.benefit-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin: 0 0 8px;
}

.benefit-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--c-subtext);
  line-height: 1.6;
  margin: 0 0 16px;
}

.benefit-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.benefit-points svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-card[data-tint="0"] .benefit-points svg {
  color: var(--c-purple-deep);
}

.benefit-card[data-tint="1"] .benefit-points svg {
  color: var(--c-pink);
}

.benefit-card[data-tint="2"] .benefit-points svg {
  color: hsl(160, 55%, 38%);
}

.benefit-points span {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--c-text);
}

/* ── Steps (numbered, used in How it works) ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.7), hsla(258, 40%, 98%, 0.6));
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid hsla(0, 0%, 100%, 0.85);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    0 6px 18px -10px hsla(258, 40%, 40%, 0.16);
}

.step-index {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: linear-gradient(155deg, var(--c-pink), var(--c-purple) 55%, var(--c-purple-deep));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.4),
    0 4px 10px -2px hsla(262, 65%, 52%, 0.35);
}

.step-content h3 {
  margin: 4px 0 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.step-content p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-subtext);
}

/* ── Compare cards (2-up split) ── */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

.compare-grid-4 {
  max-width: 920px;
}

@media (min-width: 768px) {
  .compare-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.compare-card {
  padding: 24px 26px;
  border-radius: 20px;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.8), hsla(258, 30%, 98%, 0.65));
  backdrop-filter: blur(28px) saturate(1.7);
  -webkit-backdrop-filter: blur(28px) saturate(1.7);
  border: 1px solid hsla(0, 0%, 100%, 0.9);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    0 8px 24px -10px hsla(258, 40%, 40%, 0.16),
    0 18px 40px -18px hsla(338, 40%, 40%, 0.16);
}

.compare-card.muted {
  background: linear-gradient(155deg, hsla(240, 10%, 96%, 0.7), hsla(240, 10%, 92%, 0.55));
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.9),
    0 6px 18px -12px hsla(240, 15%, 30%, 0.1);
}

.compare-card.accent {
  background: linear-gradient(155deg, hsla(258, 90%, 97%, 0.85), hsla(338, 80%, 96%, 0.7));
}

.compare-card h3 {
  margin: 0 0 8px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.compare-card.muted h3 {
  color: var(--c-subtext);
}

.compare-card p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-subtext);
}

/* ── FAQ ── */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.7), hsla(258, 30%, 98%, 0.55));
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid hsla(0, 0%, 100%, 0.85);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    0 4px 14px -10px hsla(258, 40%, 40%, 0.12);
}

.faq-q {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.faq-a {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-subtext);
}

/* ── Related links ── */
.related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .related {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-card {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(155deg, hsla(0, 0%, 100%, 0.7), hsla(258, 30%, 98%, 0.55));
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid hsla(0, 0%, 100%, 0.85);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    0 4px 14px -10px hsla(258, 40%, 40%, 0.12);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.95),
    0 10px 24px -10px hsla(258, 40%, 40%, 0.2);
}

.related-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0 0 6px;
}

.related-card-title svg {
  width: 13px;
  height: 13px;
  color: var(--c-purple-deep);
  transition: transform 180ms ease;
}

.related-card:hover .related-card-title svg {
  transform: translateX(2px);
}

.related-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-subtext);
}

/* ── Privacy section ── */
.privacy-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--c-hairline);
  border-bottom: 1px solid var(--c-hairline);
}

@media (min-width: 768px) {
  .privacy-block {
    padding: 112px 0;
  }
}

.privacy-title {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--c-text);
  margin: 0 0 24px;
}

.privacy-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-subtext);
  max-width: 480px;
  margin: 24px auto 36px;
  font-weight: 300;
}

.privacy-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* ── Bottom CTA ── */
.cta {
  text-align: center;
}

.cta-title {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--c-text);
  max-width: 620px;
  margin: 0 auto 28px;
}

.cta-form-wrap {
  display: flex;
  justify-content: center;
}

.cta-meta {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: var(--c-muted);
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  padding-bottom: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--c-muted);
}

.site-footer a {
  transition: opacity 180ms ease;
}

.site-footer a:hover {
  opacity: 0.8;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  animation: fadeInUp 750ms var(--ease) forwards;
}

.reveal-fade-1 { animation-delay: 50ms; }
.reveal-fade-2 { animation-delay: 120ms; }
.reveal-fade-3 { animation-delay: 220ms; }
.reveal-fade-4 { animation-delay: 320ms; }

.hero-demo-anim {
  opacity: 0;
  animation: fadeInUp 950ms var(--ease) 250ms forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
