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

:root {
  --screen-top: #eef4fc;
  --screen-middle: #f1effb;
  --screen-bottom: #eaf2fa;
  --ink-900: #2a3572;
  --ink-700: #3c466e;
  --ink-500: #61709f;
  --ink-400: #8391c0;
  --ink-300: #98a3c6;
  --blue-500: #4c79ea;
  --blue-400: #6d96f5;
  --blue-600: #4568de;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-border: rgba(255, 255, 255, 0.95);
  --shadow-soft: 0 18px 36px rgba(96, 120, 200, 0.12),
    0 2px 6px rgba(96, 120, 200, 0.06);
  --shadow-button: 0 12px 26px rgba(76, 104, 224, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  --radius-card: 24px;
  --content-width: 1040px;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.8), transparent 34rem),
    linear-gradient(165deg, var(--screen-top) 0%, var(--screen-middle) 52%, var(--screen-bottom) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid rgba(76, 121, 234, 0.5);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(calc(100% - 48px), var(--content-width));
  margin: 16px auto 0;
}

.nav-shell {
  min-height: 62px;
  padding: 10px 12px 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(96, 120, 200, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-500);
  font-size: 16px;
  font-weight: 700;
}

.brand-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-500);
  font-size: 13.5px;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue-600);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: var(--shadow-button);
  font-size: 13.5px;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-small {
  min-height: 42px;
  justify-self: end;
}

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

.hero {
  position: relative;
  width: min(100%, 1280px);
  min-height: 635px;
  margin: 0 auto;
  padding: 68px 24px 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.privacy-copy h2,
.download-card h2,
.policy-h1,
.policy-h2,
.policy-h3 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(36px, 5.4vw, 56px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-eyebrow {
  margin: 14px 0 18px;
  color: var(--ink-500);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.hero-copy {
  max-width: 560px;
  margin: 0;
  color: var(--ink-500);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.ambient-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(0.5px);
  pointer-events: none;
}

.ambient-orb-peach {
  left: -22px;
  top: 170px;
  width: 122px;
  height: 122px;
  background: radial-gradient(circle at 38% 32%, #f8dcbc 0%, #efb68a 52%, rgba(239, 182, 138, 0) 71%);
  opacity: 0.8;
}

.ambient-orb-cyan {
  right: 28px;
  top: 78px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle at 38% 32%, #d3f1f6 0%, #9bdbe8 52%, rgba(155, 219, 232, 0) 71%);
  opacity: 0.8;
}

.yesi-orb {
  position: relative;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f9ff 0%, #e0eafc 100%);
  box-shadow:
    0 26px 52px rgba(84, 114, 214, 0.28),
    0 0 44px rgba(110, 142, 240, 0.28),
    inset 0 2px 10px rgba(255, 255, 255, 0.9),
    inset 0 -14px 26px rgba(160, 180, 240, 0.38);
  animation: yesi-breathe 6s ease-in-out infinite;
}

.yesi-orb-hero {
  width: 190px;
  height: 190px;
}

.yesi-orb-colors {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(38% 38% at 30% 34%, rgba(127, 216, 232, 0.85), rgba(127, 216, 232, 0) 70%),
    radial-gradient(46% 46% at 63% 40%, #4e7be8, rgba(78, 123, 232, 0) 72%),
    radial-gradient(44% 44% at 38% 68%, #9f8be8, rgba(159, 139, 232, 0) 70%),
    radial-gradient(30% 30% at 60% 74%, rgba(232, 169, 208, 0.9), rgba(232, 169, 208, 0) 70%);
  filter: blur(17px) saturate(1.2);
  animation: yesi-drift 9s ease-in-out infinite alternate;
}

.yesi-orb-shine {
  position: absolute;
  left: 16%;
  top: 10%;
  width: 42%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.store-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(96, 120, 200, 0.14);
  font-size: 15px;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-icon {
  width: 17px;
  height: 17px;
  flex: none;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.store-icon-app-store {
  -webkit-mask-image: url("/assets/app-store.svg");
  mask-image: url("/assets/app-store.svg");
}

.store-icon-google-play {
  -webkit-mask-image: url("/assets/google-play.svg");
  mask-image: url("/assets/google-play.svg");
}

.store-button-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: var(--shadow-button);
}

.security-note {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink-400);
  font-size: 13px;
  font-weight: 650;
}

.security-note svg,
.privacy-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.content-section,
.site-footer {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
}

.content-section {
  padding: 0 0 96px;
}

.section-heading {
  margin-bottom: 44px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--ink-400);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.privacy-copy h2,
.download-card h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.glass-card {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.step-card {
  min-height: 218px;
  padding: 26px;
  border-radius: 22px;
}

.icon-disc {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 8px 18px rgba(76, 104, 224, 0.32);
}

.icon-disc svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.step-card p,
.about-copy > p:not(.eyebrow),
.privacy-copy > p:not(.eyebrow),
.faq-list details p {
  color: var(--ink-500);
  text-wrap: pretty;
}

.step-card p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.support-heading {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.support-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.68;
  text-wrap: pretty;
}

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

.support-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 22px;
}

.support-card h3 {
  margin: 18px 0 0;
  color: var(--ink-900);
  font-size: 18px;
  line-height: 1.3;
}

.support-card p {
  margin: 10px 0 0;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.62;
  text-wrap: pretty;
}

.about-card {
  min-height: 650px;
  padding: clamp(36px, 5vw, 58px);
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 72px);
  border-radius: 30px;
  overflow: hidden;
}

.phone-stage {
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: 264px;
  height: 568px;
  padding: 7px;
  border: 1px solid rgba(42, 53, 114, 0.18);
  border-radius: 45px;
  background: linear-gradient(145deg, #e8ecf5, #aeb8ca);
  box-shadow: 0 28px 46px rgba(38, 44, 92, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(165deg, #eef4fc 0%, #f1effb 52%, #eaf2fa 100%);
}

.phone-status {
  position: relative;
  height: 35px;
  padding: 9px 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #15182a;
  font-size: 9px;
  font-weight: 750;
}

.phone-island {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 80px;
  height: 23px;
  border-radius: 999px;
  background: #050506;
  transform: translateX(-50%);
}

.phone-signal {
  letter-spacing: -0.08em;
}

.chat-header {
  min-height: 54px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.yesi-orb-small {
  width: 30px;
  height: 30px;
  box-shadow: 0 6px 14px rgba(84, 114, 214, 0.24), 0 0 10px rgba(110, 142, 240, 0.28);
}

.yesi-orb-small .yesi-orb-colors {
  filter: blur(3px) saturate(1.2);
}

.chat-header div:last-child {
  display: flex;
  flex-direction: column;
}

.chat-header strong {
  color: var(--ink-900);
  font-size: 11px;
  line-height: 1.2;
}

.chat-header span {
  color: var(--ink-400);
  font-size: 7px;
  font-weight: 650;
}

.chat-thread {
  height: 247px;
  padding: 11px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.chat-time {
  align-self: center;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--ink-400);
  background: rgba(131, 145, 192, 0.1);
  font-size: 7px;
  font-weight: 650;
}

.message {
  max-width: 84%;
  margin: 0;
  padding: 9px 10px;
  border-radius: 14px;
  font-size: 9px;
  line-height: 1.45;
}

.message-yesi {
  align-self: flex-start;
  color: var(--ink-900);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 13px rgba(96, 120, 200, 0.08);
}

.message-user {
  align-self: flex-end;
  color: #fff;
  border-bottom-right-radius: 5px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 8px 18px rgba(76, 104, 224, 0.22);
}

.composer {
  height: 42px;
  margin: 0 10px 7px;
  padding: 6px 6px 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(96, 120, 200, 0.14);
  font-size: 8px;
}

.composer > span:first-child {
  flex: 1;
}

.send-button {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 6px 12px rgba(76, 104, 224, 0.28);
  font-size: 15px;
}

.keyboard {
  height: 176px;
  padding: 5px 5px 12px;
  background: rgba(219, 224, 237, 0.92);
  backdrop-filter: blur(16px);
}

.suggestions,
.key-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.suggestions {
  height: 25px;
  color: #2c303b;
  font-size: 8px;
}

.suggestions span {
  flex: 1;
  text-align: center;
}

.key-row {
  margin-bottom: 5px;
}

.key-row-short {
  padding: 0 9px;
}

.key-row i {
  flex: 1;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #151820;
  background: #fff;
  box-shadow: 0 1px 1px rgba(30, 35, 55, 0.22);
  font-size: 9px;
  font-style: normal;
}

.key-row-actions i {
  background: #f8f9fb;
}

.key-row-actions .space-key {
  flex: 3.2;
}

.key-row-actions .return-key {
  color: #fff;
  background: #3989ef;
}

.home-indicator {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: rgba(28, 31, 44, 0.38);
  transform: translateX(-50%);
}

.about-copy h2 {
  max-width: 600px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.62;
}

.chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--blue-500);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 6px 16px rgba(96, 120, 200, 0.1);
  font-size: 12.5px;
  font-weight: 650;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.privacy-copy {
  padding: 10px;
}

.privacy-copy h2 {
  max-width: 430px;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.62;
}

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

.privacy-item {
  min-height: 70px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 18px;
  color: var(--ink-700);
  font-size: 14px;
}

.privacy-icon {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue-500);
  background: rgba(76, 121, 234, 0.1);
}

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

.faq-section {
  max-width: 728px;
}

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

.faq-list details {
  border-radius: 18px;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 19px 60px 19px 20px;
  display: flex;
  align-items: center;
  color: var(--ink-900);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, var(--blue-500) 45% 55%, transparent 55%) 8px 8px / 7px 7px no-repeat,
    linear-gradient(-45deg, transparent 45%, var(--blue-500) 45% 55%, transparent 55%) 12px 8px / 7px 7px no-repeat,
    rgba(76, 121, 234, 0.1);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 60px 20px 20px;
  font-size: 14px;
  line-height: 1.58;
}

.download-card {
  position: relative;
  min-height: 330px;
  padding: clamp(42px, 6vw, 68px) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 24px 48px rgba(76, 104, 224, 0.35);
}

.download-card h2 {
  position: relative;
  max-width: 620px;
  margin: 0;
}

.download-card > p {
  position: relative;
  max-width: 480px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.download-card .store-buttons {
  position: relative;
  margin-top: 24px;
}

.store-button-light {
  color: var(--blue-600);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 10px 24px rgba(38, 44, 92, 0.25);
}

.store-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.download-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.download-glow-one {
  top: -70px;
  right: -50px;
  width: 260px;
  height: 260px;
}

.download-glow-two {
  left: -50px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  opacity: 0.75;
}

.site-footer {
  padding: 0 0 44px;
}

.footer-top {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(131, 145, 192, 0.22);
}

.site-footer .brand-link {
  color: var(--ink-500);
  font-size: 13px;
}

.site-footer .brand-link img {
  width: 22px;
  height: 22px;
}

.footer-links {
  gap: 18px;
  color: var(--ink-400);
  font-size: 12.5px;
}

.language-links a[aria-current="page"] {
  color: var(--ink-700);
}

.disclaimer {
  margin: 16px 0 0;
  color: var(--ink-300);
  font-size: 12px;
}

@keyframes yesi-drift {
  from {
    transform: rotate(-8deg) scale(1) translate(-2%, 1%);
  }
  to {
    transform: rotate(10deg) scale(1.12) translate(3%, -3%);
  }
}

@keyframes yesi-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

/* Privacy policy pages */
.policy-header {
  width: min(calc(100% - 36px), 980px);
  margin: 24px auto 0;
}

.policy-header-shell {
  min-height: 62px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(96, 120, 200, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.policy-back {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: var(--shadow-button);
  font-size: 13.5px;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.policy-back:hover {
  transform: translateY(-1px);
}

.policy {
  width: min(calc(100% - 36px), 980px);
  margin: 18px auto 72px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  color: var(--ink-700);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  line-height: 1.7;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.policy a {
  color: var(--blue-600);
}

.policy a:hover {
  text-decoration: underline;
}

.policy-h1 {
  margin: 0 0 12px;
  color: var(--ink-900);
  font-size: clamp(30px, 5vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.policy-h2 {
  margin: 34px 0 12px;
  color: var(--ink-900);
  font-size: 23px;
  line-height: 1.25;
}

.policy-h3 {
  margin: 24px 0 12px;
  color: var(--ink-900);
  font-size: 18px;
}

.policy-meta,
.policy-small {
  color: var(--ink-500);
}

.policy-meta {
  font-size: 13px;
}

.policy-small {
  font-size: 14px;
}

.policy-callout {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--blue-500);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.policy-table {
  width: 100%;
  margin: 18px 0;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.policy-table thead,
.policy-table tbody {
  display: table;
  width: 100%;
  min-width: 620px;
  table-layout: fixed;
}

.policy-th,
.policy-td {
  padding: 11px;
  border: 1px solid rgba(131, 145, 192, 0.18);
  text-align: left;
  vertical-align: top;
}

.policy-th {
  color: var(--ink-900);
  background: rgba(76, 121, 234, 0.08);
  font-weight: 700;
}

.policy-divider {
  height: 1px;
  margin: 28px 0;
  background: rgba(131, 145, 192, 0.22);
}

.policy ul {
  padding-left: 1.5em;
}

.policy p,
.policy ul {
  margin: 10px 0;
}

.policy li {
  margin-bottom: 7px;
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 78px;
  }

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

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

  .step-card,
  .support-card {
    min-height: 0;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 42px 28px;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy h2,
  .about-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .chips {
    justify-content: center;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-copy {
    text-align: center;
  }

  .privacy-copy h2,
  .privacy-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header,
  .content-section,
  .site-footer {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .nav-shell {
    min-height: 56px;
    padding: 8px 8px 8px 15px;
    gap: 10px;
  }

  .brand-link {
    gap: 7px;
    font-size: 15px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 15px;
    font-size: 12.5px;
  }

  .hero {
    min-height: 710px;
    padding: 84px 20px 88px;
  }

  .yesi-orb-hero {
    width: 170px;
    height: 170px;
  }

  .ambient-orb-peach {
    left: -55px;
    top: 220px;
  }

  .ambient-orb-cyan {
    right: -42px;
    top: 90px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-eyebrow {
    margin: 14px 0 16px;
    font-size: 14.5px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.62;
  }

  .store-buttons {
    width: 100%;
  }

  .hero .store-button {
    flex: 1 1 145px;
    padding: 0 16px;
  }

  .security-note {
    max-width: 330px;
    align-items: flex-start;
    line-height: 1.35;
  }

  .security-note svg {
    margin-top: 2px;
    flex: none;
  }

  .content-section {
    padding-bottom: 78px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .step-card,
  .support-card {
    padding: 23px;
  }

  .about-card {
    padding: 36px 18px;
    border-radius: 24px;
  }

  .phone {
    width: 242px;
    height: 522px;
  }

  .phone-screen {
    border-radius: 36px;
  }

  .chat-thread {
    height: 207px;
  }

  .keyboard {
    height: 170px;
  }

  .privacy-section {
    width: min(calc(100% - 36px), var(--content-width));
  }

  .privacy-item {
    align-items: flex-start;
    line-height: 1.45;
  }

  .faq-list summary {
    padding-right: 54px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .download-card {
    min-height: 390px;
    padding-inline: 20px;
    border-radius: 24px;
  }

  .download-card .store-button {
    width: min(100%, 280px);
  }

  .policy {
    margin-top: 18px;
    border-radius: 22px;
  }

  .policy-header-shell {
    padding-left: 16px;
  }

  .policy-back {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12.5px;
  }
}

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