@font-face {
  font-family: "Cal Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/CalSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Gabarito";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Gabarito-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Gabarito";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Gabarito-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Gabarito";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Gabarito-SemiBold.ttf") format("truetype");
}

:root {
  --room: #ffffff;
  --beige: #fff3e7;
  --purple: #6c5cff;
  --purple-deep: #4c3fd5;
  --title: #1c1840;
  --ebony: #2b2742;
  --muted: #756f78;
  --low: #c3c6cc;
  --blue: #72c8fe;
  --rose: #fce3d9;
  --shadow-soft: 0 24px 80px rgba(28, 24, 64, 0.14);
  --shadow-purple: 0 18px 46px rgba(108, 92, 255, 0.32);
  --section-radius: clamp(38px, 7vw, 72px);
  --card-radius: 20px;
  --button-radius: 10px;
  --page: clamp(20px, 5vw, 72px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--title);
}

body {
  margin: 0;
  background: var(--title);
  color: var(--title);
  font-family: "Gabarito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px var(--page) 0;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 900ms var(--ease-out), color 300ms ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.site-header.on-light {
  color: var(--title);
}

.wordmark {
  justify-self: start;
  position: relative;
  width: 83px;
  height: 30px;
  text-decoration: none;
}

.logo {
  position: absolute;
  inset: 0;
  width: 83px;
  height: 30px;
  transition: opacity 240ms ease;
}

.logo-dark {
  opacity: 0;
}

.site-header.on-light .logo-light {
  opacity: 0;
}

.site-header.on-light .logo-dark {
  opacity: 1;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(14px);
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.on-light .nav-pill {
  border-color: rgba(28, 24, 64, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(28, 24, 64, 0.1);
}

.nav-pill a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: currentColor;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: background 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.nav-pill a:hover,
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.13);
  opacity: 1;
  transform: translateY(-1px);
}

.site-header.on-light .nav-pill a:hover,
.site-header.on-light .nav-cta:hover {
  background: rgba(108, 92, 255, 0.1);
}

.nav-cta {
  justify-self: end;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav-cta img {
  width: 128px;
  height: auto;
}

.site-header.on-light .nav-cta {
  background: transparent;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--title);
  color: #ffffff;
  text-align: center;
}

.hero-media,
.hero-vignette,
.closing-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img,
.closing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 44%;
}

.hero-media img {
  filter: saturate(0.84) contrast(0.98);
  transform: scale(1.04);
  transition: transform 1200ms var(--ease-out);
}

.hero-vignette {
  background:
    radial-gradient(circle at 50% 42%, rgba(28, 24, 64, 0.14) 0%, rgba(28, 24, 64, 0.48) 58%, rgba(28, 24, 64, 0.78) 100%),
    linear-gradient(0deg, rgba(28, 24, 64, 0.72) 0%, rgba(28, 24, 64, 0.18) 42%, rgba(28, 24, 64, 0.2) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  padding-top: 64px;
}

.eyebrow,
.section-kicker,
.section-label,
.card-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

h1,
h2,
h3 {
  font-family: "Cal Sans", "Gabarito", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7.6vw, 108px);
  line-height: 0.92;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-copy p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
}

.hero-button,
.app-store-badge {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 28px;
  background: #ffffff;
  color: var(--title);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.app-store-badge {
  min-height: 0;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.app-store-badge img {
  width: 178px;
  height: auto;
}

.hero-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.hero-button:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--page);
  bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.content-shell {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding-top: clamp(44px, 6vw, 80px);
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  background: var(--room);
  color: var(--title);
  overflow: hidden;
}

.split-section {
  display: grid;
  grid-template-columns: 0.28fr 0.9fr 0.7fr;
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  padding: clamp(56px, 9vw, 120px) var(--page) clamp(56px, 9vw, 110px);
}

.section-label,
.section-kicker {
  color: var(--purple);
}

.split-copy h2,
.feature-intro h2,
.how-copy h2,
.faq-heading h2,
.closing-copy h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 6.7vw, 104px);
  line-height: 0.94;
}

.split-text p,
.how-copy p,
.faq-heading,
.closing-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.principle-stage {
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  padding: 0 var(--page) clamp(88px, 12vw, 150px);
}

.principle-card,
.feature-card,
.phone-frame,
.truth-band,
details {
  border: 1px solid rgba(28, 24, 64, 0.08);
  box-shadow: var(--shadow-soft);
}

.principle-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--card-radius);
  background: var(--beige);
}

.principle-card:nth-child(2) {
  min-height: 480px;
  background: var(--purple);
  color: #ffffff;
  transform: translateY(-42px);
}

.principle-card:nth-child(2) .card-kicker,
.principle-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

.principle-card:nth-child(3) {
  background: linear-gradient(145deg, #f1f8ff 0%, rgba(114, 200, 254, 0.42) 100%);
  transform: translateY(34px);
}

.card-kicker {
  color: var(--purple);
}

.principle-card h3 {
  max-width: 320px;
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
}

.principle-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.app-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(80px, 11vw, 150px) var(--page);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.app-showcase-copy {
  max-width: 620px;
}

.app-showcase-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.96;
}

.app-showcase-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
}

.screenshot-wall {
  position: relative;
  min-height: 760px;
}

.app-screen {
  position: absolute;
  width: min(260px, 34vw);
  margin: 0;
  padding: 10px;
  border-radius: 34px;
  background: var(--title);
  box-shadow: 0 28px 80px rgba(28, 24, 64, 0.22);
}

.app-screen img {
  width: 100%;
  border-radius: 25px;
}

.app-screen figcaption {
  padding: 12px 8px 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.screen-home {
  top: 0;
  left: 12%;
  transform: rotate(-4deg);
  z-index: 3;
}

.screen-voices {
  top: 108px;
  right: 4%;
  transform: rotate(5deg);
  z-index: 2;
}

.screen-new {
  left: 34%;
  bottom: 0;
  transform: rotate(-1deg);
  z-index: 4;
}

.mascot-card {
  position: absolute;
  left: 0;
  bottom: 74px;
  z-index: 5;
  width: clamp(150px, 18vw, 240px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 243, 231, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(28, 24, 64, 0.12));
}

.shape-heart {
  top: 72px;
  right: 38%;
  width: 54px;
  transform: rotate(-10deg);
}

.shape-star {
  right: 0;
  bottom: 160px;
  width: 62px;
  transform: rotate(12deg);
}

.shape-diamond {
  left: 8%;
  top: 54%;
  width: 74px;
  transform: rotate(10deg);
}

.feature-stack {
  padding: clamp(80px, 10vw, 130px) var(--page);
  background: var(--beige);
}

.feature-intro {
  max-width: 880px;
  margin-bottom: clamp(34px, 7vw, 82px);
}

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

.feature-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--card-radius);
  background: #ffffff;
}

.feature-card:nth-child(2) {
  border-color: rgba(114, 200, 254, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.feature-card:nth-child(2) span {
  color: #2e93c9;
}

.feature-card:nth-child(3) {
  background: var(--beige);
}

.feature-card span {
  color: var(--purple);
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.02;
}

.feature-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  padding: clamp(90px, 12vw, 160px) var(--page);
}

.how-copy {
  max-width: 780px;
}

.how-copy h2 {
  margin-bottom: 24px;
}

.phone-scene {
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone-frame {
  width: min(390px, 100%);
  min-height: 590px;
  padding: 22px;
  border: 10px solid var(--title);
  border-radius: 48px;
  background:
    radial-gradient(circle at 84% 15%, rgba(114, 200, 254, 0.5), transparent 24%),
    radial-gradient(circle at 12% 74%, rgba(108, 92, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--beige) 100%);
}

.phone-status {
  width: 74px;
  height: 12px;
  margin: 0 auto 46px;
  border-radius: 999px;
  background: rgba(28, 24, 64, 0.12);
}

.app-title {
  margin-bottom: 20px;
  font-family: "Cal Sans", "Gabarito", sans-serif;
  font-size: 36px;
}

.story-cover {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 24px;
  background: var(--purple);
  color: #ffffff;
}

.story-cover p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.story-cover h3 {
  margin: 0;
  font-size: 62px;
}

.story-cover button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
}

.story-cover button::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 23px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--purple);
}

.mini-player {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--title);
  color: #ffffff;
}

.mini-player span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.mini-player p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truth-band {
  margin: 0 var(--page);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--section-radius);
  background: var(--title);
  color: #ffffff;
}

.truth-band p {
  max-width: 820px;
  font-family: "Cal Sans", "Gabarito", sans-serif;
  font-size: clamp(54px, 8vw, 124px);
  line-height: 0.9;
}

.truth-band span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.45;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(84px, 12vw, 150px) var(--page);
}

.faq-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5.4vw, 74px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 24px;
  color: var(--title);
  font-weight: 700;
}

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

details p {
  margin: -4px 24px 24px;
  color: var(--muted);
  line-height: 1.45;
}

.closing {
  position: relative;
  z-index: 2;
  min-height: calc(100svh + var(--section-radius));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: calc(var(--section-radius) * -1);
  padding: calc(var(--section-radius) + 94px) var(--page) 28px;
  overflow: hidden;
  background: var(--title);
  color: #ffffff;
}

.closing-media {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.closing-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(28, 24, 64, 0.98), rgba(28, 24, 64, 0.58)),
    linear-gradient(0deg, rgba(28, 24, 64, 0.92), rgba(28, 24, 64, 0.14));
}

.closing-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.closing-copy h2 {
  margin-bottom: 24px;
  color: #ffffff;
}

.closing-copy p {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.closing-copy .app-store-badge img {
  width: 190px;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.site-footer img {
  width: 83px;
  height: 30px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

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

.footer-links a {
  opacity: 0.86;
  transition: opacity 200ms ease;
}

.footer-links a:hover {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}

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

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

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

/* ---------------------------------------------------------------------------
   Sub-pages: /support, /privacy, /terms
   Light, readable document pages that reuse the brand palette and type.
--------------------------------------------------------------------------- */
.subpage {
  background: var(--room);
  color: var(--title);
}

.doc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px var(--page);
  border-bottom: 1px solid rgba(28, 24, 64, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.doc-header .doc-logo {
  width: 83px;
  height: 30px;
}

.doc-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.doc-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ebony);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.86;
  transition: background 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.doc-nav a:hover {
  background: rgba(108, 92, 255, 0.1);
  opacity: 1;
  transform: translateY(-1px);
}

.doc-nav a.is-active {
  background: var(--purple);
  color: #ffffff;
  opacity: 1;
}

.doc-main {
  width: min(820px, calc(100% - 2 * var(--page)));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 110px);
}

.doc-hero {
  margin-bottom: clamp(36px, 6vw, 64px);
}

.doc-hero .eyebrow {
  color: var(--purple);
}

.doc-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.96;
}

.doc-hero .doc-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
}

.doc-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 40px;
  padding: 5px;
  border: 1px solid rgba(28, 24, 64, 0.1);
  border-radius: 999px;
  background: var(--beige);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ebony);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}

.lang-switch a:hover {
  background: rgba(108, 92, 255, 0.12);
}

.doc-body h2 {
  margin: clamp(40px, 6vw, 64px) 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  scroll-margin-top: 90px;
}

.doc-body h3 {
  margin: 32px 0 12px;
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.15;
}

.doc-body p,
.doc-body li {
  color: var(--ebony);
  font-size: 17px;
  line-height: 1.62;
}

.doc-body p {
  margin: 0 0 16px;
}

.doc-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.doc-body li {
  margin-bottom: 8px;
}

.doc-body a {
  color: var(--purple-deep);
  font-weight: 600;
  text-underline-offset: 3px;
}

.doc-body code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--beige);
  font-size: 0.92em;
}

.doc-body hr {
  margin: clamp(48px, 7vw, 72px) 0;
  border: 0;
  border-top: 1px solid rgba(28, 24, 64, 0.12);
}

.doc-table-wrap {
  margin: 0 0 22px;
  overflow-x: auto;
}

.doc-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}

.doc-body th,
.doc-body td {
  padding: 12px 16px;
  border: 1px solid rgba(28, 24, 64, 0.1);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.doc-body th {
  background: var(--beige);
  color: var(--title);
  font-weight: 700;
}

.fill {
  padding: 1px 6px;
  border-radius: 5px;
  background: rgba(108, 92, 255, 0.12);
  color: var(--purple-deep);
  font-size: 0.9em;
  font-weight: 600;
}

/* Support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.support-card {
  padding: 28px;
  border: 1px solid rgba(28, 24, 64, 0.08);
  border-radius: var(--card-radius);
  background: var(--beige);
  box-shadow: var(--shadow-soft);
}

.support-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
  border-color: rgba(114, 200, 254, 0.42);
}

.support-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.support-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.support-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.support-card a {
  color: var(--purple-deep);
  font-weight: 600;
}

.support-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 4px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--purple);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-purple);
  transition: transform 220ms var(--ease-out);
}

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

.faq-block {
  margin-top: clamp(40px, 6vw, 64px);
}

.faq-block h2 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4.4vw, 52px);
}

.faq-block > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.doc-footer {
  padding: 40px var(--page);
  border-top: 1px solid rgba(28, 24, 64, 0.08);
  background: var(--title);
  color: rgba(255, 255, 255, 0.7);
}

.doc-footer-inner {
  width: min(820px, calc(100% - 2 * var(--page)));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.doc-footer-inner img {
  width: 83px;
  height: 30px;
}

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

.doc-footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.86;
}

.doc-footer a:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .doc-nav {
    gap: 2px;
  }

  .doc-nav a {
    padding: 0 12px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-pill {
    display: none;
  }

  .split-section,
  .how-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .principle-stage {
    min-height: 0;
  }

  .principle-card,
  .principle-card:nth-child(2),
  .principle-card:nth-child(3) {
    min-height: 280px;
    transform: none;
  }

  .app-showcase {
    grid-template-columns: 1fr;
  }

  .screenshot-wall {
    min-height: 980px;
  }

  .app-screen {
    width: min(250px, 48vw);
  }

  .screen-home {
    left: 4%;
  }

  .screen-voices {
    right: 4%;
  }

  .screen-new {
    left: 28%;
  }

  .phone-scene {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 16px;
  }

  .wordmark {
    font-size: 29px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 16px;
  }

  .hero {
    place-items: end center;
    text-align: left;
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(28, 24, 64, 0.95) 0%, rgba(28, 24, 64, 0.7) 50%, rgba(28, 24, 64, 0.08) 100%),
      linear-gradient(90deg, rgba(28, 24, 64, 0.38), rgba(28, 24, 64, 0));
  }

  .hero-copy {
    width: 100%;
    padding: 120px var(--page) 76px;
  }

  h1 {
    font-size: clamp(38px, 10.6vw, 45px);
    line-height: 0.98;
  }

  .hero-copy p:not(.eyebrow) {
    margin-left: 0;
    font-size: 17px;
  }

  .hero-button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .split-section,
  .feature-stack,
  .how-section,
  .faq-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .split-copy h2,
  .feature-intro h2,
  .how-copy h2,
  .closing-copy h2 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .principle-stage {
    padding-bottom: 66px;
  }

  .app-showcase {
    padding-top: 66px;
    padding-bottom: 82px;
  }

  .screenshot-wall {
    min-height: 1060px;
  }

  .app-screen {
    width: min(255px, 72vw);
    border-radius: 30px;
  }

  .screen-home {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
  }

  .screen-voices {
    top: 285px;
    right: 0;
    transform: rotate(4deg);
  }

  .screen-new {
    left: 10%;
    bottom: 0;
    transform: rotate(-2deg);
  }

  .mascot-card {
    left: auto;
    right: 0;
    bottom: 230px;
    width: 138px;
    padding: 12px;
  }

  .shape-heart {
    top: 30px;
    right: 12px;
  }

  .shape-star {
    right: 18px;
    bottom: 94px;
  }

  .shape-diamond {
    left: 0;
    top: 52%;
  }

  .truth-band {
    min-height: 360px;
  }

  .phone-frame {
    min-height: 540px;
    border-width: 8px;
    border-radius: 40px;
  }

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