@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #101320;
  --ink-soft: #50586f;
  --ink-faint: #717990;
  --white: #ffffff;
  --cyan: #25d7ff;
  --sky: #92c6ff;
  --blue: #1647ff;
  --violet: #3d18ff;
  --purple: #8e43e7;
  --pink: #f16fd0;
  --rose: #ff95c5;
  --mint: #5be3be;
  --page: #f6fbff;
  --line: rgba(67, 75, 113, 0.14);
  --glass: rgba(255, 255, 255, 0.63);
  --glass-strong: rgba(255, 255, 255, 0.79);
  --glass-line: rgba(255, 255, 255, 0.84);
  --gradient: linear-gradient(118deg, var(--cyan) 0%, var(--blue) 34%, var(--violet) 58%, var(--pink) 100%);
  --gradient-soft: linear-gradient(125deg, rgba(37, 215, 255, 0.66), rgba(61, 24, 255, 0.55) 55%, rgba(241, 111, 208, 0.7));
  --shadow-soft: 0 24px 70px rgba(48, 54, 112, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --shadow-phone: 0 40px 90px rgba(30, 35, 82, 0.23), 0 8px 24px rgba(30, 35, 82, 0.14);
  --shell: min(1160px, calc(100vw - 48px));
  --header-height: 76px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 8%, rgba(37, 215, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 15%, rgba(241, 111, 208, 0.2), transparent 28rem),
    radial-gradient(circle at 56% 42%, rgba(146, 198, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 8% 70%, rgba(61, 24, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, #f9fdff 0%, #eef7ff 31%, #f7f2ff 58%, #fff5fb 78%, #f7fbff 100%);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: rgba(37, 215, 255, 0.28);
}

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

img {
  height: auto;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 720;
}

h1,
h2 {
  letter-spacing: -0.052em;
  text-wrap: balance;
}

h3,
p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(3.75rem, 7vw, 6.6rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 1.07;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

p {
  color: var(--ink-soft);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.ambient-canvas {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

.ambient-orb {
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 42% 58% 63% 37% / 44% 38% 62% 56%;
  filter: blur(72px);
  opacity: 0.19;
  will-change: transform;
}

.ambient-orb-cyan {
  top: -17vw;
  left: 0;
  background: var(--cyan);
  transform: translate3d(0, calc(var(--scroll-progress) * 140px), 0) rotate(calc(var(--scroll-progress) * 24deg));
}

.ambient-orb-violet {
  top: 34vh;
  right: 0;
  background: var(--violet);
  transform: translate3d(0, calc(var(--scroll-progress) * -90px), 0) rotate(calc(var(--scroll-progress) * -18deg));
}

.ambient-orb-pink {
  top: 72vh;
  left: 28vw;
  background: var(--pink);
  transform: translate3d(calc(var(--scroll-progress) * 50px), calc(var(--scroll-progress) * 110px), 0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 0;
  width: 100%;
  padding-inline: 18px;
  pointer-events: none;
}

.glass-bar,
.header-inner {
  width: min(1160px, 100%);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 18% 0%, rgba(37, 215, 255, 0.12), transparent 45%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 46px rgba(46, 52, 100, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  pointer-events: auto;
  transition: min-height 240ms ease, padding 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled .glass-bar,
.site-header.is-scrolled .header-inner {
  min-height: 64px;
  padding-block: 6px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 48px rgba(46, 52, 100, 0.15), inset 0 1px 0 #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  min-height: 48px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 7px 17px rgba(61, 24, 255, 0.17);
}

.brand-name {
  font-size: 1.06rem;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.header-menu {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.main-nav,
.header-tools,
.language-switcher {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #333a50;
  font-size: 0.83rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  gap: 12px;
}

.language-switcher {
  gap: 3px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(107, 114, 150, 0.13);
  border-radius: 999px;
}

.language-switcher > span {
  display: none;
}

.language-switcher button {
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink-faint);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 680;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 12px rgba(41, 45, 80, 0.1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(83, 90, 127, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 12px 30px rgba(54, 49, 139, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-gradient,
.button-dark {
  color: #fff;
  background: var(--gradient);
}

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

/* Shared type and links */
.eyebrow,
.section-label,
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3d36a9;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 740;
  letter-spacing: 0.015em;
}

.eyebrow-mark {
  width: 9px;
  height: 9px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(37, 215, 255, 0.13);
}

.gradient-ink,
.title-accent {
  color: #3427cb;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #2820b6;
  font-weight: 730;
  border-bottom: 1px solid rgba(61, 24, 255, 0.3);
}

.text-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-heading {
  max-width: 820px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 1.06rem;
}

/* Hero */
.hero {
  min-height: 900px;
  padding-top: 150px;
  padding-bottom: 105px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

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

.hero-copy .eyebrow {
  margin-bottom: 23px;
}

.hero-copy h1 > span {
  display: block;
}

.hero-copy h1 .gradient-ink {
  /* Cover the final glyph's overhang from negative letter-spacing without shifting punctuation. */
  padding-inline-end: 0.1em;
  margin-inline-end: -0.1em;
}

.hero-lede {
  max-width: 650px;
  margin-top: 30px;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.62;
}

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

.store-link {
  min-width: 174px;
  min-height: 59px;
  padding: 8px 17px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 17px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-link-dark {
  color: #fff;
  background: #101320;
  border: 1px solid rgba(255, 255, 255, 0.19);
  box-shadow: 0 14px 34px rgba(16, 19, 32, 0.2);
}

.store-link-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(42, 48, 91, 0.11);
  backdrop-filter: blur(18px);
}

.store-mark {
  flex: 0 0 auto;
  font-size: 1.72rem;
  line-height: 1;
}

.play-mark {
  color: var(--violet);
  font-size: 1.34rem;
}

.store-link span:last-child {
  display: grid;
  line-height: 1.05;
}

.store-link small {
  font-size: 0.55rem;
  font-weight: 550;
}

.store-link strong {
  margin-top: 4px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.hero-trust {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.hero-trust p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f566d;
  font-size: 0.92rem;
  font-weight: 620;
}

.trust-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--gradient);
  border-radius: 50%;
}

.hero-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-liquid {
  position: absolute;
  z-index: -1;
  width: 112%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96) 0 10%, transparent 27%),
    conic-gradient(from 200deg at 48% 48%, rgba(37, 215, 255, 0.72), rgba(61, 24, 255, 0.62), rgba(241, 111, 208, 0.75), rgba(146, 198, 255, 0.64), rgba(37, 215, 255, 0.72));
  border-radius: 47% 53% 39% 61% / 58% 43% 57% 42%;
  filter: blur(1px) saturate(120%);
  opacity: 0.7;
  transform: translate3d(0, var(--liquid-y, 0), 0) rotate(-7deg);
  box-shadow: 0 40px 100px rgba(61, 24, 255, 0.18);
}

.hero-liquid::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.4), transparent 48%);
  backdrop-filter: blur(12px);
}

.phone-shell {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: auto;
  padding: 7px;
  overflow: visible;
  background: linear-gradient(145deg, #2b2f43, #080a12 58%, #32384d);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 45px;
  box-shadow: var(--shadow-phone), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.phone-shell picture {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 38px;
}

.phone-shell img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 38px;
}

.phone-shell-hero {
  width: min(86%, 352px);
  transform: translate3d(0, var(--phone-y, 0), 0);
}

.glass-note {
  position: absolute;
  z-index: 3;
  min-height: 54px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2a3045;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(46, 52, 96, 0.16), inset 0 1px 0 #fff;
  backdrop-filter: blur(24px) saturate(170%);
  font-size: 0.78rem;
  font-weight: 720;
}

.glass-note-people {
  top: 23%;
  left: -4%;
}

.glass-note-charlotte {
  right: -7%;
  bottom: 22%;
}

.glass-note-charlotte img {
  width: 24px;
  border-radius: 7px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #28d9ae;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(40, 217, 174, 0.15);
  animation: pulse 2.4s ease-out infinite;
}

/* How it works */
.how-section {
  position: relative;
  padding: 115px 0 150px;
}

.how-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 52vw;
  height: 75%;
  background: radial-gradient(ellipse, rgba(146, 198, 255, 0.22), transparent 67%);
}

.walkthrough {
  margin-top: 80px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.walkthrough-visual {
  min-height: 155vh;
}

.sticky-phone {
  position: sticky;
  top: 132px;
  display: grid;
  justify-items: center;
}

.sticky-phone::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  width: min(42vw, 470px);
  aspect-ratio: 1;
  background: var(--gradient-soft);
  border-radius: 61% 39% 45% 55% / 42% 55% 45% 58%;
  filter: blur(26px);
  opacity: 0.47;
  transform: rotate(13deg);
}

.screen-stack {
  width: min(78%, 310px);
  display: grid;
  overflow: hidden;
}

.story-screen {
  position: relative;
  inset: auto;
  grid-area: 1 / 1;
  width: 100% !important;
  height: auto !important;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 520ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-screen.is-active {
  opacity: 1;
  transform: scale(1);
}

.screen-dots {
  margin-top: 25px;
  display: flex;
  gap: 8px;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  background: rgba(77, 83, 119, 0.22);
  border-radius: 50%;
  transition: width 260ms ease, background 260ms ease;
}

.screen-dots span.is-active {
  width: 28px;
  background: var(--gradient);
  border-radius: 999px;
}

.walkthrough-copy {
  padding-top: 3vh;
}

.walk-step {
  min-height: 52vh;
  padding: 48px 0 70px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.48;
  transition: opacity 320ms ease, transform 320ms ease;
}

.walk-step:last-child {
  border-bottom: 1px solid var(--line);
}

.walk-step.is-current {
  opacity: 1;
  transform: translateX(8px);
}

.step-symbol {
  width: 58px;
  height: 58px;
  margin-bottom: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(61, 24, 255, 0.2);
}

.step-symbol svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.walk-step h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.walk-step p {
  max-width: 570px;
  margin-top: 17px;
  font-size: 1.02rem;
}

.route-flow {
  position: relative;
  margin-top: 65px;
  padding: clamp(36px, 5vw, 62px);
  overflow: hidden;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.35));
  border: 1px solid var(--glass-line);
  border-radius: 70px 34px 70px 34px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(28px) saturate(160%);
}

.route-flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90%;
  right: -8%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(241, 111, 208, 0.3), transparent 67%);
}

.route-flow-copy {
  max-width: 700px;
}

.route-flow-copy h3 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1.2;
}

.route-track {
  position: relative;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.route-track-line {
  position: absolute;
  top: 11px;
  right: 10%;
  left: 10%;
  height: 3px;
  overflow: hidden;
  background: rgba(86, 93, 129, 0.18);
  border-radius: 999px;
}

.route-progress {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 180ms;
}

.route-flow.is-visible .route-progress {
  transform: scaleX(1);
}

.route-stop {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.route-stop > span {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 6px solid var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(61, 24, 255, 0.1);
}

.route-stop-private > span {
  border-color: #9299aa;
}

.route-stop-together > span {
  border-color: var(--pink);
  box-shadow: 0 0 0 7px rgba(241, 111, 208, 0.16);
}

.route-stop small {
  max-width: 150px;
  color: #4c5369;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

/* Privacy */
.privacy-section {
  padding: 155px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.privacy-copy .eyebrow {
  margin-bottom: 20px;
}

.section-intro {
  max-width: 620px;
  margin-top: 27px;
  font-size: 1.06rem;
}

.feature-flow {
  margin-top: 50px;
}

.feature-flow article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
}

.feature-flow article:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-flow p {
  margin-top: 8px;
  font-size: 0.91rem;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 0.87rem;
  font-weight: 800;
}

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

.soft-halo {
  position: absolute;
  z-index: -1;
  width: 120%;
  aspect-ratio: 1;
  background: var(--gradient-soft);
  border-radius: 39% 61% 54% 46% / 61% 47% 53% 39%;
  filter: blur(35px);
  opacity: 0.4;
  transform: rotate(-9deg);
}

.privacy-caption {
  position: absolute;
  right: -3%;
  bottom: 18%;
  min-height: 54px;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(47, 52, 91, 0.14);
  backdrop-filter: blur(22px);
  font-size: 0.78rem;
  font-weight: 720;
}

.shield-dot {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
}

/* Charlotte AI */
.ai-section {
  --ai-edge: clamp(58px, 6vw, 96px);
  position: relative;
  margin-top: 90px;
  padding: 150px 0 170px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 215, 255, 0.35), transparent 28rem),
    radial-gradient(circle at 88% 35%, rgba(241, 111, 208, 0.34), transparent 30rem),
    radial-gradient(circle at 50% 96%, rgba(85, 50, 255, 0.46), transparent 34rem),
    linear-gradient(150deg, #09132f 0%, #171249 38%, #251167 72%, #111538 100%);
  border-radius: 54% 46% 58% 42% / 86px 70px 78px 64px;
  isolation: isolate;
}

.ai-section::before,
.ai-section::after {
  content: none;
}

@supports ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
  .ai-section {
    border-radius: 0;
    -webkit-mask:
      radial-gradient(ellipse 74% 115% at 46% 100%, #000 98.5%, transparent 100%) top / 100% var(--ai-edge) no-repeat,
      linear-gradient(#000 0 0) center / 100% calc(100% - var(--ai-edge) - var(--ai-edge) + 4px) no-repeat,
      radial-gradient(ellipse 72% 115% at 56% 0%, #000 98.5%, transparent 100%) bottom / 100% var(--ai-edge) no-repeat;
    mask:
      radial-gradient(ellipse 74% 115% at 46% 100%, #000 98.5%, transparent 100%) top / 100% var(--ai-edge) no-repeat,
      linear-gradient(#000 0 0) center / 100% calc(100% - var(--ai-edge) - var(--ai-edge) + 4px) no-repeat,
      radial-gradient(ellipse 72% 115% at 56% 0%, #000 98.5%, transparent 100%) bottom / 100% var(--ai-edge) no-repeat;
  }
}

.ai-glow {
  position: absolute;
  z-index: -1;
  top: 24%;
  left: 50%;
  width: 64vw;
  height: 46vw;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(68, 182, 255, 0.22), transparent 66%);
  filter: blur(30px);
}

.ai-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.ai-inner {
  position: relative;
  z-index: 1;
}

.ai-heading h2 {
  color: #fff;
  font-size: clamp(4.5rem, 9vw, 8.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.ai-partner-line {
  margin-top: 18px;
  color: #bdeeff;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 740;
}

.ai-promise {
  margin-top: 54px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.ai-promise span {
  display: block;
}

.ai-promise span:last-child {
  color: #fff;
  background: linear-gradient(100deg, #8cecff, #c4b8ff 55%, #ff9edb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-intro {
  max-width: 700px;
  margin: 26px auto 0;
  color: rgba(236, 241, 255, 0.78);
  font-size: 1.06rem;
}

.ai-phone-gallery {
  max-width: 960px;
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(30px, 5vw, 64px);
}

.ai-phone:nth-child(2) {
  margin-top: 76px;
}

.ai-phone .phone-shell {
  width: 100%;
}

.phone-shell-dark {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.4), 0 0 80px rgba(78, 64, 255, 0.12);
}

.ai-phone figcaption {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 680;
}

.ai-flow {
  margin-top: 105px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-flow article {
  padding: 34px clamp(18px, 2.7vw, 36px) 40px;
}

.ai-flow article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-flow h3 {
  color: #fff;
}

.ai-flow p {
  margin-top: 14px;
  color: rgba(238, 242, 255, 0.79);
  font-size: 0.95rem;
}

/* Partner access */
.partner-access {
  padding: 165px 0 145px;
}

.partner-access > .section-heading,
.faq-section > .section-heading,
.partner-audiences > .section-heading,
.partnership-flow > .section-heading {
  margin-inline: auto;
  text-align: center;
}

.partner-access > .section-heading .eyebrow,
.faq-section > .section-heading .eyebrow,
.partner-audiences > .section-heading .section-label,
.partnership-flow > .section-heading .section-label {
  justify-content: center;
}

.partner-access > .section-heading .eyebrow {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.audience-flow {
  max-width: 960px;
  margin: 75px auto 0;
}

.flow-item {
  position: relative;
  padding: 40px 8px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  border-top: 1px solid var(--line);
}

.flow-item:last-child {
  border-bottom: 1px solid var(--line);
}

.audience-orb {
  width: 96px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 46% 54% 62% 38% / 53% 43% 57% 47%;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 18px 36px rgba(54, 48, 134, 0.16);
}

.audience-orb svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 5px rgba(20, 18, 68, 0.32));
}

.audience-company {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.audience-school {
  background: linear-gradient(135deg, var(--sky), var(--pink));
  border-radius: 58% 42% 42% 58% / 38% 58% 42% 62%;
}

.audience-city {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-radius: 40% 60% 57% 43% / 58% 36% 64% 42%;
}

.flow-type {
  margin-bottom: 7px;
  color: #413ab2;
  font-size: 0.92rem;
  font-weight: 740;
}

.flow-item h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.flow-item div > p:last-child {
  max-width: 690px;
  margin-top: 9px;
}

.centered-action {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* Story teaser */
.story-teaser {
  padding: 85px 0 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.story-teaser-media {
  position: relative;
}

.story-teaser-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -9%;
  background: var(--gradient-soft);
  border-radius: 61% 39% 48% 52% / 44% 54% 46% 56%;
  filter: blur(38px);
  opacity: 0.32;
}

.story-teaser-media picture,
.story-teaser-media img {
  width: 100%;
}

.story-teaser-media img {
  border-radius: 54px 28px 54px 28px;
  box-shadow: 0 32px 76px rgba(36, 39, 85, 0.2);
}

.story-teaser-copy .eyebrow {
  margin-bottom: 19px;
}

.story-teaser-copy h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
}

.story-teaser-copy > p:not(.eyebrow) {
  margin-top: 24px;
}

.story-teaser-copy .text-link {
  margin-top: 25px;
}

/* FAQ */
.faq-section {
  padding: 100px 0 155px;
}

.faq-section > .section-heading h2 {
  font-size: clamp(3.8rem, 7vw, 6rem);
}

.faq-list {
  max-width: 900px;
  margin: 70px auto 0;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  min-height: 92px;
  padding: 25px 62px 25px 2px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 690;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 450;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 760px;
  padding: 0 55px 30px 2px;
}

.faq-list details p {
  font-size: 0.96rem;
}

.faq-list details a {
  display: inline-block;
  margin-top: 10px;
  color: #352bbd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Download */
.download-section {
  position: relative;
  min-height: 670px;
  margin-bottom: 115px;
  padding: clamp(48px, 7vw, 88px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(125deg, rgba(146, 219, 255, 0.78), rgba(158, 133, 255, 0.7) 51%, rgba(255, 170, 220, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 72px 38px 72px 38px;
  box-shadow: var(--shadow-soft);
}

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

.download-copy .eyebrow {
  margin-bottom: 19px;
}

.download-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 25px;
  color: rgba(25, 28, 49, 0.76);
  font-size: 1.05rem;
}

.download-visual {
  position: relative;
  height: 590px;
  align-self: end;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.download-visual .phone-shell {
  width: 292px;
}

.download-halo {
  position: absolute;
  bottom: -20%;
  width: 150%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 64%);
}

/* Inner pages shared */
.page-hero {
  position: relative;
  padding-top: 165px;
  padding-bottom: 105px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.page-hero h1 {
  font-size: clamp(3.6rem, 6.4vw, 5.9rem);
}

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

.page-hero-copy .kicker,
.page-hero-copy .eyebrow {
  margin-bottom: 22px;
}

.kicker {
  flex-wrap: wrap;
}

.kicker span + span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 9px 1px 0;
  display: inline-block;
  background: var(--pink);
  border-radius: 50%;
}

.page-hero-copy h1 span {
  display: block;
}

.story-hero-copy > p:last-child,
.page-hero-lede,
.partners-lede {
  max-width: 650px;
  margin-top: 28px;
  font-size: 1.06rem;
}

.page-hero-organic {
  position: absolute;
  z-index: -1;
  inset: 70px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.organic-form {
  position: absolute;
  display: block;
  background: var(--gradient-soft);
  filter: blur(45px);
  opacity: 0.3;
}

.organic-form-one {
  top: 8%;
  right: 2%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 44% 56% 59% 41% / 64% 42% 58% 36%;
}

.organic-form-two {
  bottom: 0;
  left: 18%;
  width: 37%;
  aspect-ratio: 1;
  border-radius: 58% 42% 37% 63% / 43% 60% 40% 57%;
}

.page-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 56px 28px 56px 28px;
  box-shadow: 0 32px 85px rgba(36, 39, 86, 0.2);
}

.page-hero-media figcaption {
  margin-top: 14px;
  color: var(--ink-faint);
  font-size: 0.74rem;
}

/* History */
.story-flow {
  padding: 100px 0 130px;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(50px, 9vw, 130px);
}

.story-flow-header {
  position: sticky;
  top: 150px;
  align-self: start;
}

.story-flow-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.story-flow-body {
  max-width: 720px;
}

.story-flow-body > p {
  margin-bottom: 32px;
  color: #3f465b;
  font-size: 1.02rem;
  line-height: 1.75;
}

.story-flow-body .story-lead {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.story-quote {
  position: relative;
  margin: 68px 0;
  padding: 44px 46px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.69), rgba(255, 255, 255, 0.36));
  border: 1px solid var(--glass-line);
  border-radius: 44px 22px 44px 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(28px);
}

.story-quote::before {
  content: "“";
  position: absolute;
  top: -25px;
  left: 30px;
  color: rgba(61, 24, 255, 0.22);
  font-size: 7rem;
  font-weight: 750;
  line-height: 1;
}

.story-quote-text {
  position: relative;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-weight: 720;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.story-quote-attribution {
  margin-top: 22px;
  display: block;
  color: #5049b6;
  font-size: 0.76rem;
  font-weight: 720;
}

.story-conclusion {
  padding-top: 30px;
  color: var(--ink) !important;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.founder-section {
  margin-bottom: 140px;
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34));
  border: 1px solid var(--glass-line);
  border-radius: 70px 35px 70px 35px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(28px) saturate(150%);
}

.founder-portrait img {
  width: 100%;
  height: auto;
  border-radius: 48% 52% 45% 55% / 54% 42% 58% 46%;
  box-shadow: 0 24px 60px rgba(39, 43, 89, 0.18);
}

.founder-portrait p {
  margin-top: 17px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 720;
  text-align: center;
}

.founder-portrait p span {
  color: var(--ink-faint);
  font-size: 0.75rem;
  font-weight: 560;
}

.purpose-copy .section-label {
  margin-bottom: 18px;
}

.purpose-copy > p:not(.section-label) {
  margin-top: 20px;
}

.purpose-copy .purpose-ai {
  padding-top: 20px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 1.06rem;
  font-weight: 650;
}

.purpose-copy .button {
  margin-top: 30px;
}

/* Partners: broad support for semantic classes */
.partners-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.page-hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.direct-contact {
  margin-top: 22px !important;
  font-size: 0.83rem !important;
}

.direct-contact a {
  color: #3429bd;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partners-visual,
.partner-hero-visual,
.phone-duo,
.page-partners .page-hero-media {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-visual::before,
.partner-hero-visual::before,
.phone-duo::before,
.page-partners .page-hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 110%;
  aspect-ratio: 1;
  background: var(--gradient-soft);
  border-radius: 55% 45% 42% 58% / 41% 62% 38% 59%;
  filter: blur(32px);
  opacity: 0.42;
}

.partners-visual .phone-shell,
.partner-hero-visual .phone-shell,
.phone-duo .phone-shell,
.page-partners .page-hero-media .phone-shell {
  width: min(48%, 285px);
}

.partners-visual .phone-shell + .phone-shell,
.partner-hero-visual .phone-shell + .phone-shell,
.phone-duo .phone-shell + .phone-shell,
.page-partners .page-hero-media .phone-shell + .phone-shell {
  margin-top: 90px;
  margin-left: -25px;
}

.page-partners .page-hero-media .phone-shell img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 38px;
  box-shadow: none;
}

.page-partners .page-hero-media .phone-shell figcaption {
  position: absolute;
  top: calc(100% + 16px);
  right: -8px;
  left: -8px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 630;
  line-height: 1.35;
  text-align: center;
}

.partner-audiences,
.partner-process,
.partnership-process,
.partnership-flow,
.partner-cta,
.other-contacts {
  width: var(--shell);
  margin-inline: auto;
  padding-block: 110px;
}

.partner-section-head,
.process-intro,
.partner-cta-copy,
.other-contacts-intro {
  max-width: 780px;
}

.partner-section-head h2,
.process-intro h2,
.partner-cta h2,
.other-contacts h2 {
  margin-top: 15px;
}

.partner-audiences .audience-flow,
.partner-audiences .audience-list {
  margin-top: 64px;
}

.partner-audiences .section-heading,
.partnership-flow .section-heading {
  margin-inline: auto;
}

.page-partners .flow-item {
  position: relative;
  padding-left: 42px;
  display: block;
}

.page-partners .flow-item::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 5px;
  width: 14px;
  height: 14px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(61, 24, 255, 0.08);
}

.page-partners .flow-item h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
}

.page-partners .flow-item p {
  max-width: 760px;
  margin-top: 9px;
}

.audience-list {
  display: grid;
  gap: 0;
}

.audience-list article {
  padding: 36px 5px;
  border-top: 1px solid var(--line);
}

.audience-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.audience-list article > span {
  display: none;
}

.audience-type {
  color: #4038ad;
  font-size: 0.92rem;
  font-weight: 740;
}

.audience-list h3 {
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
}

.audience-list h3 + p {
  max-width: 730px;
  margin-top: 9px;
}

.partnership-process,
.partner-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
}

.process-list,
.partnership-flow-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li,
.partnership-flow-items article {
  padding: 29px 0;
  display: block;
  border-top: 1px solid var(--line);
}

.process-list li:last-child,
.partnership-flow-items article:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  display: none;
}

.process-list p,
.partnership-flow-items p {
  margin-top: 9px;
}

.partner-cta {
  margin-top: 50px;
  margin-bottom: 90px;
  padding: clamp(44px, 7vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.6fr);
  align-items: center;
  gap: 50px;
  background: linear-gradient(125deg, rgba(146, 219, 255, 0.78), rgba(161, 139, 255, 0.7), rgba(255, 172, 221, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 70px 34px 70px 34px;
  box-shadow: var(--shadow-soft);
}

.partner-cta-copy > p:last-child {
  margin-top: 20px;
}

.partner-mail-row {
  min-height: 116px;
  padding: 23px 26px;
  display: grid;
  align-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.69);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: 0 18px 45px rgba(53, 52, 119, 0.13);
  backdrop-filter: blur(22px);
  overflow-wrap: anywhere;
}

.partner-mail-row strong {
  margin-top: 4px;
  color: #362dbd;
}

.partner-mail-row i {
  display: none;
}

.contact-lines {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.contact-lines a {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.contact-lines span {
  color: var(--ink-faint);
}

/* Legal pages */
.legal-page {
  position: relative;
  min-height: 100vh;
}

.legal-hero {
  position: relative;
  min-height: 650px;
  padding: 178px 0 105px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
}

.legal-hero-organic {
  position: absolute;
  z-index: -1;
  inset: 72px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.legal-hero-organic .organic-form-one {
  top: -24%;
  right: 0;
  width: min(54vw, 650px);
}

.legal-hero-organic .organic-form-two {
  bottom: -42%;
  left: 5%;
  width: min(40vw, 500px);
}

.legal-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.legal-hero-copy .section-label {
  margin-bottom: 22px;
}

.legal-hero h1 {
  max-width: 820px;
  font-size: clamp(3.7rem, 6.5vw, 6rem);
}

.legal-hero-intro {
  max-width: 690px;
  margin-top: 28px;
  font-size: 1.05rem;
}

.legal-hero-mark {
  position: relative;
  width: 250px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.92), transparent 31%),
    linear-gradient(135deg, rgba(113, 218, 255, 0.7), rgba(139, 111, 255, 0.64) 54%, rgba(255, 138, 214, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 44% 56% 62% 38% / 54% 39% 61% 46%;
  box-shadow: 0 35px 85px rgba(48, 47, 115, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: rotate(4deg);
}

.legal-hero-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18%;
  background: var(--gradient-soft);
  border-radius: inherit;
  filter: blur(42px);
  opacity: 0.3;
}

.legal-hero-mark img {
  width: 116px;
  height: 116px;
  border-radius: 29px;
  box-shadow: 0 18px 42px rgba(38, 35, 103, 0.24);
  transform: rotate(-4deg);
}

.legal-layout {
  padding: 82px 0 150px;
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 780px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(58px, 9vw, 120px);
  border-top: 1px solid var(--line);
}

.legal-index {
  position: sticky;
  top: 118px;
  max-height: calc(100vh - 150px);
  padding: 24px 25px;
  overflow: auto;
  display: grid;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid var(--glass-line);
  border-radius: 34px 18px 34px 18px;
  box-shadow: 0 20px 55px rgba(47, 52, 103, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  scrollbar-width: thin;
  scrollbar-color: rgba(70, 67, 163, 0.32) transparent;
}

.legal-index a {
  min-width: 0;
  min-height: 38px;
  padding: 8px 1px;
  display: flex;
  align-items: center;
  color: #555d75;
  border-bottom: 1px solid rgba(67, 75, 113, 0.1);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
  hyphens: auto;
  transition: color 170ms ease, transform 170ms ease;
}

.legal-index a:last-child {
  border-bottom: 0;
}

.legal-index a:hover,
.legal-index a:focus-visible {
  color: #352bbd;
  transform: translateX(3px);
}

.legal-body {
  min-width: 0;
}

.legal-section {
  padding: 0 0 52px;
  scroll-margin-top: 125px;
}

.legal-section + .legal-section {
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 21px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.legal-section h3 {
  margin: 32px 0 14px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.legal-section h4 {
  margin: 25px 0 11px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  color: #444c62;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-section p + p,
.legal-section p + ul,
.legal-section p + ol,
.legal-section ul + p,
.legal-section ol + p,
.legal-section dl + p {
  margin-top: 18px;
}

.legal-section ul,
.legal-section ol {
  margin: 18px 0 0;
  padding-left: 1.4em;
}

.legal-section li > ul,
.legal-section li > ol {
  margin-top: 8px;
  padding-left: 1.25em;
}

.legal-section li + li {
  margin-top: 7px;
}

.legal-section li > p {
  margin: 0;
}

.legal-section li > p + p {
  margin-top: 9px;
}

.legal-section dl {
  margin: 20px 0 0;
}

.legal-section dt {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.55;
}

.legal-section dd {
  margin: 5px 0 17px;
  color: #444c62;
  line-height: 1.75;
}

.legal-section strong {
  color: var(--ink);
}

.legal-section .text-link {
  color: #352bbd;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.legal-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(67, 75, 113, 0.14);
  border-radius: 22px 13px 22px 13px;
  box-shadow: 0 15px 38px rgba(47, 52, 103, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.legal-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  text-align: left;
}

.legal-table-wrap-wide table {
  min-width: 760px;
}

.legal-table-wrap caption {
  padding: 18px 19px 14px;
  color: var(--ink);
  background: rgba(239, 242, 255, 0.52);
  border-bottom: 1px solid rgba(67, 75, 113, 0.12);
  caption-side: top;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.5;
  text-align: left;
}

.legal-table-wrap caption.legal-caption-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 14px 16px;
  color: #444c62;
  border-right: 1px solid rgba(67, 75, 113, 0.1);
  border-bottom: 1px solid rgba(67, 75, 113, 0.1);
  font-size: 0.92rem;
  line-height: 1.58;
  overflow-wrap: break-word;
  vertical-align: top;
}

.legal-table-wrap th {
  color: var(--ink);
  background: rgba(239, 242, 255, 0.42);
  font-weight: 750;
}

.legal-table-wrap tr > :last-child {
  border-right: 0;
}

.legal-table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}

.legal-note,
.legal-section [role="note"] {
  margin: 25px 0;
  padding: 18px 20px 18px 22px;
  color: #444c62;
  background: linear-gradient(135deg, rgba(232, 247, 255, 0.74), rgba(247, 236, 255, 0.68));
  border: 1px solid rgba(91, 91, 176, 0.14);
  border-left: 3px solid rgba(74, 66, 202, 0.62);
  border-radius: 8px 20px 20px 8px;
}

.legal-note > :first-child,
.legal-section [role="note"] > :first-child {
  margin-top: 0;
}

.legal-note > :last-child,
.legal-section [role="note"] > :last-child {
  margin-bottom: 0;
}

.legal-note-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-footnotes {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(67, 75, 113, 0.14);
}

.legal-footnotes p,
.legal-footnotes li {
  font-size: 0.88rem;
  line-height: 1.68;
}

.page-legal .footer-bottom a[aria-current="page"] {
  color: var(--ink);
  font-weight: 720;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 55px 0 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(233, 245, 255, 0.72));
  border-top: 1px solid rgba(87, 94, 129, 0.1);
}

.footer-top,
.footer-bottom {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-top {
  padding-bottom: 36px;
}

.footer-top > p {
  max-width: 420px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 650;
  text-align: right;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 17px 25px;
}

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

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(40, 217, 174, 0.16); }
  50% { box-shadow: 0 0 0 10px rgba(40, 217, 174, 0); }
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --shell: min(calc(100% - 40px), 1040px);
  }

  .glass-bar,
  .header-inner {
    gap: 17px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 0.76rem;
  }

  .language-switcher button {
    padding-inline: 9px;
  }

  .button-small {
    padding-inline: 15px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 35px;
  }

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

  .ai-flow article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ai-flow article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    top: 12px;
    padding-inline: 12px;
  }

  .glass-bar,
  .header-inner {
    position: relative;
    min-height: 68px;
    padding: 8px 10px 8px 14px;
    border-radius: 32px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    max-height: calc(100vh - 105px);
    padding: 22px;
    overflow: auto;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 19px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.93);
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(38, 43, 86, 0.18);
    backdrop-filter: blur(30px) saturate(170%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px) scale(0.985);
    transform-origin: top;
    transition: opacity 200ms ease, visibility 200ms ease, transform 220ms ease;
  }

  .site-header.menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .main-nav,
  .header-tools {
    display: grid;
  }

  .header-tools {
    width: 100%;
    align-items: stretch;
  }

  .header-tools .button-small {
    width: 100%;
  }

  .main-nav a {
    min-height: 52px;
    padding-inline: 5px;
    border-bottom: 1px solid var(--line);
    font-size: 0.93rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-tools {
    grid-template-columns: 1fr auto;
    gap: 13px;
  }

  .language-switcher {
    justify-content: stretch;
  }

  .language-switcher button {
    flex: 1;
    min-height: 46px;
    font-size: 0.8rem;
  }

  .hero,
  .privacy-section,
  .story-teaser,
  .page-hero,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 150px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-stage {
    min-height: 650px;
  }

  .hero-liquid {
    width: min(620px, 88vw);
  }

  .glass-note-people {
    left: calc(50% - 260px);
  }

  .glass-note-charlotte {
    right: calc(50% - 275px);
  }

  .walkthrough {
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
    gap: 48px;
  }

  .privacy-copy {
    max-width: 760px;
  }

  .privacy-visual {
    min-height: 660px;
  }

  .story-teaser-media {
    max-width: 760px;
  }

  .story-teaser-copy {
    max-width: 760px;
  }

  .download-section {
    grid-template-columns: 1fr 280px;
  }

  .page-hero {
    padding-top: 155px;
  }

  .page-hero-copy {
    max-width: 800px;
  }

  .page-hero-media {
    max-width: 820px;
  }

  .story-flow,
  .partnership-process,
  .partner-process {
    grid-template-columns: 1fr;
  }

  .story-flow-header {
    position: static;
  }

  .story-flow-body {
    max-width: 780px;
  }

  .founder-section {
    max-width: 800px;
  }

  .founder-portrait {
    max-width: 430px;
  }

  .legal-hero {
    min-height: 580px;
    padding-top: 155px;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 48px;
  }

  .legal-hero-mark {
    width: 190px;
  }

  .legal-hero-mark img {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .legal-index {
    position: static;
    max-height: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 22px;
  }

  .legal-index a:last-child {
    border-bottom: 1px solid rgba(67, 75, 113, 0.1);
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(calc(100% - 32px), 720px);
  }

  body {
    font-size: 17px;
  }

  .story-teaser-media::before,
  .page-partners .page-hero-media::before {
    width: 100%;
    inset-inline: 0;
  }

  .soft-halo,
  .download-halo {
    width: 100%;
  }

  .soft-halo {
    transform: none;
  }

  h1 {
    font-size: clamp(3.15rem, 13vw, 5rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
    line-height: 1.09;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-stage {
    min-height: 610px;
  }

  .phone-shell-hero {
    width: min(78vw, 320px);
  }

  .walkthrough {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .walkthrough-visual {
    min-height: auto;
  }

  .sticky-phone {
    position: relative;
    top: auto;
  }

  .screen-stack {
    width: min(74vw, 310px);
  }

  .walkthrough-copy {
    padding-top: 25px;
  }

  .walk-step {
    min-height: auto;
    padding: 40px 0;
    opacity: 1;
  }

  .walk-step.is-current {
    transform: none;
  }

  .route-flow {
    padding: 40px 28px;
    border-radius: 52px 24px 52px 24px;
  }

  .privacy-section {
    padding-block: 110px;
  }

  .privacy-visual {
    min-height: 620px;
  }

  .ai-section {
    --ai-edge: clamp(44px, 13vw, 62px);
    margin-top: 55px;
    padding: 120px 0 135px;
    border-radius: 56% 44% 55% 45% / 58px 42px 56px 40px;
  }

  .ai-phone-gallery {
    max-width: 360px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .ai-phone,
  .ai-phone:nth-child(2) {
    margin: 0;
  }

  .ai-phone .phone-shell {
    width: min(76vw, 320px);
    margin-inline: auto;
  }

  .ai-flow {
    grid-template-columns: 1fr;
  }

  .ai-flow article,
  .ai-flow article + article,
  .ai-flow article:nth-child(3),
  .ai-flow article:nth-child(4) {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ai-flow article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .partner-access {
    padding-block: 115px 105px;
  }

  .story-teaser {
    padding-block: 70px 115px;
  }

  .faq-section {
    padding-block: 80px 115px;
  }

  .download-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 48px 28px 0;
    text-align: center;
    border-radius: 52px 25px 52px 25px;
  }

  .download-copy .eyebrow,
  .download-copy .hero-actions {
    justify-content: center;
  }

  .download-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .download-visual {
    height: auto;
    min-height: 650px;
    overflow: visible;
  }

  .page-hero {
    padding-bottom: 75px;
  }

  .legal-hero {
    min-height: auto;
    padding: 150px 0 85px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legal-hero-copy {
    max-width: 700px;
  }

  .legal-hero-mark {
    width: 150px;
    justify-self: end;
    margin-right: 6%;
  }

  .legal-hero-mark img {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }

  .legal-layout {
    padding: 60px 0 110px;
    gap: 64px;
  }

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

  .story-flow {
    padding-block: 70px 100px;
  }

  .founder-section {
    margin-bottom: 100px;
    padding: 40px 28px;
    border-radius: 50px 24px 50px 24px;
  }

  .partners-visual,
  .partner-hero-visual,
  .phone-duo,
  .page-partners .page-hero-media {
    min-height: 650px;
  }

  .partner-audiences,
  .partner-process,
  .partnership-process,
  .other-contacts {
    padding-block: 85px;
  }

  .partner-cta {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    border-radius: 52px 24px 52px 24px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

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

  html {
    scroll-padding-top: 100px;
  }

  body {
    font-size: 16.5px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(2.15rem, 11.6vw, 3.25rem);
  }

  .site-header {
    padding-inline: 8px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .header-menu {
    padding: 17px;
  }

  .header-tools {
    grid-template-columns: 1fr;
  }

  .button-small {
    width: 100%;
  }

  .hero {
    padding-top: 132px;
    gap: 35px;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 1rem;
  }

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

  .store-link {
    width: min(100%, 320px);
    margin-inline: auto;
    justify-content: flex-start;
  }

  .hero-trust {
    max-width: 330px;
    margin-inline: auto;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .hero-stage {
    min-height: 555px;
  }

  .hero-liquid {
    width: 100%;
    transform: translate3d(0, var(--liquid-y, 0), 0);
  }

  .phone-shell,
  .phone-shell-hero {
    width: min(78vw, 300px);
    padding: 6px;
    border-radius: 40px;
  }

  .phone-shell img {
    border-radius: 34px;
  }

  .glass-note {
    min-height: 49px;
    padding: 10px 13px;
    font-size: 0.71rem;
  }

  .glass-note-people {
    top: 20%;
    left: 0;
  }

  .glass-note-charlotte {
    right: 0;
    bottom: 18%;
  }

  .how-section {
    padding-block: 85px 105px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .screen-stack {
    width: min(74vw, 290px);
  }

  .step-symbol {
    width: 52px;
    height: 52px;
  }

  .walk-step h3 {
    font-size: 1.65rem;
  }

  .route-flow {
    padding: 35px 23px 40px;
  }

  .route-track {
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-track-line {
    top: 12px;
    bottom: 12px;
    left: 11px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .route-progress {
    transform: scaleY(0);
    transform-origin: top;
  }

  .route-flow.is-visible .route-progress {
    transform: scaleY(1);
  }

  .route-stop {
    min-height: 70px;
    grid-template-columns: 24px minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    gap: 16px;
    text-align: left;
  }

  .route-stop small {
    max-width: none;
    padding-top: 2px;
    font-size: 0.94rem;
  }

  .privacy-section {
    padding-block: 95px;
  }

  .feature-flow {
    margin-top: 38px;
  }

  .feature-flow article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
  }

  .privacy-visual {
    min-height: 575px;
  }

  .soft-halo,
  .download-halo {
    width: 100%;
  }

  .soft-halo {
    transform: none;
  }

  .privacy-caption {
    right: 0;
    bottom: 13%;
  }

  .ai-heading {
    text-align: center;
  }

  .ai-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .ai-promise {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .ai-phone-gallery {
    margin-top: 68px;
  }

  .ai-flow {
    margin-top: 80px;
  }

  .ai-flow article {
    padding-inline: 2px;
  }

  .flow-item {
    grid-template-columns: 65px minmax(0, 1fr);
    gap: 18px;
    padding-block: 32px;
  }

  .audience-orb {
    width: 60px;
  }

  .audience-orb svg {
    width: 28px;
    height: 28px;
  }

  .story-teaser-media img,
  .page-hero-media img {
    border-radius: 40px 20px 40px 20px;
  }

  .faq-list {
    margin-top: 48px;
  }

  .faq-list summary {
    min-height: 82px;
    padding-right: 52px;
    font-size: 1rem;
  }

  .faq-list details > div {
    padding-right: 10px;
  }

  .download-section {
    margin-bottom: 85px;
    padding-inline: 20px;
  }

  .download-visual {
    height: auto;
    min-height: 650px;
  }

  .page-hero {
    padding-top: 132px;
    gap: 36px;
  }

  .legal-hero {
    padding-top: 132px;
    padding-bottom: 68px;
    gap: 35px;
  }

  .legal-hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4rem);
  }

  .legal-hero-intro {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .legal-hero-mark {
    width: 124px;
    margin-right: 3%;
  }

  .legal-hero-mark img {
    width: 62px;
    height: 62px;
    border-radius: 17px;
  }

  .legal-layout {
    padding-top: 48px;
    padding-bottom: 90px;
    gap: 52px;
  }

  .legal-index {
    padding: 20px 21px;
    grid-template-columns: 1fr;
    border-radius: 28px 15px 28px 15px;
  }

  .legal-index a {
    min-height: 43px;
    font-size: 0.82rem;
  }

  .legal-index a:last-child {
    border-bottom: 0;
  }

  .legal-section {
    padding-bottom: 42px;
  }

  .legal-section + .legal-section {
    padding-top: 42px;
  }

  .legal-section h2 {
    font-size: clamp(1.5rem, 8vw, 2.05rem);
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .legal-section h3 {
    margin-top: 27px;
    font-size: 1.18rem;
  }

  .legal-table-wrap {
    margin-block: 23px;
    border-radius: 18px 10px 18px 10px;
  }

  .legal-table-wrap table {
    min-width: 620px;
  }

  .legal-table-wrap-wide table {
    min-width: 760px;
  }

  .legal-table-wrap caption {
    padding: 15px 14px 12px;
    font-size: 0.88rem;
  }

  .legal-table-wrap th,
  .legal-table-wrap td {
    padding: 12px 13px;
    font-size: 0.88rem;
  }

  .legal-note,
  .legal-section [role="note"] {
    padding: 16px 16px 16px 18px;
  }

  .story-hero-copy > p:last-child,
  .page-hero-lede,
  .partners-lede {
    font-size: 1rem;
  }

  .story-flow-body > p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .story-quote {
    margin-block: 50px;
    padding: 37px 25px;
    border-radius: 38px 18px 38px 18px;
  }

  .story-quote::before {
    left: 18px;
  }

  .founder-section {
    padding: 32px 22px;
  }

  .partners-visual,
  .partner-hero-visual,
  .phone-duo,
  .page-partners .page-hero-media {
    min-height: 570px;
  }

  .partners-visual .phone-shell,
  .partner-hero-visual .phone-shell,
  .phone-duo .phone-shell,
  .page-partners .page-hero-media .phone-shell {
    width: min(52%, 230px);
  }

  .partners-visual .phone-shell + .phone-shell,
  .partner-hero-visual .phone-shell + .phone-shell,
  .phone-duo .phone-shell + .phone-shell,
  .page-partners .page-hero-media .phone-shell + .phone-shell {
    margin-top: 70px;
    margin-left: -20px;
  }

  .partner-audiences,
  .partner-process,
  .partnership-process,
  .other-contacts {
    padding-block: 65px;
  }

  .partner-cta {
    width: var(--shell);
    padding: 38px 22px;
  }

  .partner-mail-row {
    padding: 21px 18px;
  }

  .contact-lines a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .footer-top,
  .footer-bottom {
    width: var(--shell);
  }
}

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

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

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