:root {
  color-scheme: light;
  --background: #f4f1ea;
  --surface: #fffdf8;
  --surface-muted: #e9e4d9;
  --line: #e1dbd0;
  --ink: #1e211e;
  --ink-muted: #5f635e;
  --coral: #ff725e;
  --coral-dark: #d84a38;
  --mint: #b9d9c7;
  --yellow: #f6c85f;
  --radius: 24px;
  --shell: min(1140px, calc(100vw - 48px));
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--ink);
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

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

button,
summary {
  font: inherit;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

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

.skip-link {
  background: var(--ink);
  color: white;
  inset-inline-start: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -64px;
  z-index: 20;
}

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

.site-header {
  align-items: center;
  display: flex;
  height: 88px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 22px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: -0.8px;
}

.brand-mark {
  display: block;
  flex: none;
  height: 28px;
  width: 28px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-inline-start: 100px;
}

.desktop-nav a,
.language-menu summary,
.footer-links a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 620;
  transition: color 140ms ease;
}

.desktop-nav a:hover,
.language-menu summary:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}

.language-menu {
  position: relative;
}
.language-menu summary {
  align-items: center;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  gap: 7px;
  list-style: none;
  padding: 4px 0 5px;
}
.language-menu summary::-webkit-details-marker {
  display: none;
}
.language-menu summary svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 16px;
}
.language-menu__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 35px rgb(30 33 30 / 12%);
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  inset-inline-end: 0;
  max-height: min(420px, calc(100vh - 118px));
  overflow-y: auto;
  padding: 9px;
  position: absolute;
  top: calc(100% + 10px);
  width: min(286px, calc(100vw - 40px));
  z-index: 12;
}
.language-menu--footer .language-menu__panel {
  bottom: calc(100% + 10px);
  top: auto;
}
.language-menu__panel a {
  border-radius: 9px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 650;
  padding: 9px 10px;
}
.language-menu__panel a:hover,
.language-menu__panel a:focus-visible {
  background: var(--surface-muted);
  color: var(--ink);
}
.language-menu__panel a[aria-current='page'] {
  background: var(--ink);
  color: white;
}

.mobile-nav {
  display: none;
  position: relative;
}
.mobile-nav summary {
  cursor: pointer;
  display: grid;
  gap: 5px;
  list-style: none;
  padding: 8px;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav summary span {
  background: var(--ink);
  display: block;
  height: 1.5px;
  width: 20px;
}
.mobile-nav nav {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 35px rgb(30 33 30 / 12%);
  display: grid;
  gap: 16px;
  padding: 18px;
  position: absolute;
  inset-inline-end: 0;
  top: 44px;
  width: 220px;
  z-index: 5;
}

.hero {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.86fr);
  min-height: min(760px, calc(100vh - 88px));
  padding-block: 78px 98px;
}

.eyebrow {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 760;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(3.25rem, 6.3vw, 5.7rem);
  line-height: 0.98;
  margin-bottom: 28px;
  max-width: 740px;
}
h2 {
  font-size: clamp(2.45rem, 4.5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.42rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__lede,
.section-copy > p:not(.eyebrow),
.privacy-section__lede,
.closing p:not(.eyebrow),
.legal-page__lede {
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 610px;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 750;
  gap: 15px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition:
    transform 160ms ease,
    background 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--ink {
  background: var(--ink);
  color: white;
}
.button--ink span {
  color: var(--coral);
  font-size: 19px;
  line-height: 0;
}
.availability {
  align-items: center;
  color: var(--ink-muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 620;
  gap: 8px;
}
.availability i,
.status-dot i {
  background: var(--coral);
  border-radius: 999px;
  display: inline-block;
  height: 7px;
  width: 7px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 500px;
  position: relative;
}
.hero-visual__orb {
  border-radius: 999px;
  position: absolute;
}
.hero-visual__orb--one {
  background: var(--yellow);
  height: 162px;
  right: 3%;
  top: 5%;
  width: 162px;
}
.hero-visual__orb--two {
  background: var(--mint);
  bottom: 5%;
  height: 108px;
  left: 4%;
  width: 108px;
}

.phone-frame {
  background: var(--ink);
  border: 8px solid var(--ink);
  border-radius: 46px;
  box-shadow: 0 35px 65px rgb(30 33 30 / 19%);
  max-width: 334px;
  padding: 5px;
  position: relative;
  transform: rotate(5deg);
  width: 78%;
  z-index: 1;
}
.phone-frame__screen {
  background: var(--background);
  border-radius: 35px;
  min-height: 572px;
  overflow: hidden;
  padding: 23px 22px 20px;
  position: relative;
}
.phone-frame__notch {
  background: var(--ink);
  border-radius: 0 0 15px 15px;
  height: 23px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100px;
  z-index: 2;
}
.phone-frame__top {
  color: var(--ink-muted);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  margin: 8px 3px 29px;
}
.mini-brand {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 6px;
}
.mini-brand__mark {
  display: block;
  flex: none;
  height: 15px;
  width: 15px;
}
.phone-frame__body {
  margin-top: 64px;
  text-align: center;
}
.phone-frame__body h2 {
  font-size: 29px;
  letter-spacing: -1.5px;
  margin: 22px auto 11px;
  max-width: 225px;
}
.phone-frame__body p {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 224px;
}
.day-orbit {
  align-items: center;
  display: flex;
  height: 118px;
  justify-content: center;
  margin: auto;
  position: relative;
  width: 118px;
}
.day-orbit span {
  border: 10px solid var(--coral);
  border-radius: 999px;
  height: 68px;
  width: 68px;
}
.record-control {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  bottom: 43px;
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 720;
  gap: 8px;
  left: 50%;
  padding: 13px 15px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}
.record-control i {
  background: var(--coral);
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}
.phone-frame__privacy {
  bottom: 17px;
  color: var(--ink-muted);
  font-size: 10px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

.reassurance {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.reassurance__inner {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
}
.reassurance span {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 650;
}
.reassurance span::before {
  color: var(--coral);
  content: '✦';
  margin-inline-end: 10px;
}

.section-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(240px, 0.75fr) minmax(470px, 1.25fr);
  padding-block: 150px;
}
.section-copy h2 {
  max-width: 420px;
}
.section-copy > p:not(.eyebrow) {
  font-size: 16px;
}
.steps {
  border-top: 1px solid var(--line);
}
.step-card {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 56px 1fr;
  padding: 30px 0;
}
.step-card > span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-top: 5px;
}
.step-card h3,
.step-card p {
  grid-column: 2;
}
.step-card h3 {
  margin-bottom: 0;
}
.step-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 460px;
}

.modes {
  padding-bottom: 150px;
}
.modes__heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.modes__heading .eyebrow {
  margin-bottom: 0;
}
.modes__heading h2 {
  margin-bottom: 0;
  max-width: 570px;
}
.modes__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
.mode-card {
  border-radius: var(--radius);
  min-height: 300px;
  padding: 34px;
  position: relative;
}
.mode-card--1 {
  background: var(--coral);
}
.mode-card--2 {
  background: var(--mint);
}
.mode-card > p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 110px;
  text-transform: uppercase;
}
.mode-card h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  margin-bottom: 14px;
  max-width: 330px;
}
.mode-card > span {
  font-size: 15px;
  line-height: 1.5;
  max-width: 370px;
}

.privacy-section {
  background: var(--ink);
  color: var(--surface);
  overflow: hidden;
}
.privacy-section__grid {
  align-items: center;
  display: grid;
  gap: 112px;
  grid-template-columns: minmax(350px, 0.85fr) minmax(330px, 1fr);
  min-height: 650px;
  padding-block: 100px;
}
.privacy-section .eyebrow {
  color: var(--coral);
}
.privacy-section__lede {
  color: #d6d9d4;
}
.privacy-section ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
}
.privacy-section li {
  align-items: flex-start;
  color: #d6d9d4;
  display: flex;
  font-size: 15px;
  gap: 12px;
  line-height: 1.5;
}
.privacy-section li svg {
  fill: none;
  flex: 0 0 20px;
  height: 20px;
  margin-top: 1px;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}
.privacy-visual {
  align-items: center;
  display: flex;
  height: 410px;
  justify-content: center;
  position: relative;
}
.privacy-visual__large-ring {
  border: 2px solid var(--surface);
  border-radius: 999px;
  height: 320px;
  opacity: 0.9;
  position: absolute;
  width: 320px;
}
.privacy-visual__small-ring {
  background: var(--coral);
  border: 42px solid var(--coral);
  border-radius: 999px;
  box-shadow: inset 0 0 0 20px var(--ink);
  height: 176px;
  width: 176px;
}
.privacy-visual__dot {
  background: var(--mint);
  border-radius: 999px;
  height: 54px;
  left: 12%;
  position: absolute;
  top: 19%;
  width: 54px;
}
.privacy-visual__text {
  bottom: 5%;
  color: var(--surface);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 0.96;
  position: absolute;
  right: 3%;
  text-align: right;
}

.questions {
  padding-block: 150px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 19px;
  font-weight: 720;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: -0.035em;
  list-style: none;
  padding: 25px 0;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  color: var(--coral-dark);
  font-size: 28px;
  font-weight: 400;
  transition: transform 160ms ease;
}
.faq-item[open] summary span {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: -3px 48px 27px 0;
  max-width: 590px;
}

.closing {
  padding-bottom: 150px;
}
.closing > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  min-height: 360px;
  overflow: hidden;
  padding: 56px;
  position: relative;
}
.closing > div::after {
  background: var(--coral);
  border-radius: 999px;
  content: '';
  height: 390px;
  position: absolute;
  right: -80px;
  top: -140px;
  width: 390px;
}
.closing h2,
.closing p {
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.closing p:not(.eyebrow) {
  font-size: 17px;
}
.closing__mark {
  align-items: center;
  border: 36px solid var(--coral);
  border-radius: 999px;
  display: flex;
  height: 160px;
  justify-content: center;
  position: absolute;
  right: 34px;
  top: -23px;
  width: 160px;
  z-index: 2;
}
.closing__mark i {
  border: 19px solid var(--ink);
  border-radius: 999px;
  height: 68px;
  width: 68px;
}

.site-footer {
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr 1fr auto;
  padding-block: 48px;
}
.footer-brand p {
  color: var(--ink-muted);
  font-size: 13px;
  margin: 12px 0 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
}
.footer-meta {
  align-items: flex-end;
  color: var(--ink-muted);
  display: grid;
  font-size: 12px;
  gap: 10px;
  justify-items: end;
  white-space: nowrap;
}
.status-dot {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.legal-page {
  min-height: calc(100vh - 290px);
  padding-block: 78px 140px;
}
.legal-page__intro {
  max-width: 800px;
}
.back-link {
  color: var(--ink-muted);
  display: inline-block;
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 58px;
}
.back-link:hover {
  color: var(--ink);
}
.legal-page h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  margin-bottom: 24px;
}
.legal-page__lede {
  margin-bottom: 0;
}
.legal-sections {
  margin-top: 66px;
  max-width: 820px;
}
.legal-section {
  border-top: 1px solid var(--line);
  padding-block: 34px;
}
.legal-section:last-child {
  border-bottom: 1px solid var(--line);
}
.legal-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.04em;
  margin-bottom: 17px;
}
.legal-section p,
.legal-section li {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
}
.legal-section p + p,
.legal-section p + .legal-email,
.legal-section ul + p,
.legal-section ul + .legal-email {
  margin-top: 15px;
}
.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 17px 0 0 20px;
}
.legal-section li::marker {
  color: var(--coral-dark);
}
.legal-identity {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
}
.legal-identity > div {
  display: grid;
  gap: 3px;
}
.legal-identity dt,
.legal-email span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.legal-identity dd {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.legal-identity a,
.legal-email a {
  color: var(--coral-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-email {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.legal-page__updated {
  color: var(--ink-muted);
  font-size: 13px;
  margin-top: 30px;
}

html[lang='ar'] .eyebrow,
html[lang='hi'] .eyebrow,
html[lang='ja'] .eyebrow,
html[lang='ko'] .eyebrow {
  letter-spacing: normal;
  text-transform: none;
}

html[lang='ar'] h1,
html[lang='ar'] h2,
html[lang='ar'] h3,
html[lang='hi'] h1,
html[lang='hi'] h2,
html[lang='hi'] h3,
html[lang='ja'] h1,
html[lang='ja'] h2,
html[lang='ja'] h3,
html[lang='ko'] h1,
html[lang='ko'] h2,
html[lang='ko'] h3 {
  letter-spacing: normal;
}

html[dir='rtl'] .faq-item p {
  margin: -3px 0 27px 48px;
}

html[dir='rtl'] .privacy-visual__dot {
  left: auto;
  right: 12%;
}

html[dir='rtl'] .privacy-visual__text {
  left: 3%;
  right: auto;
  text-align: left;
}

html[dir='rtl'] .closing > div::after {
  left: -80px;
  right: auto;
}

html[dir='rtl'] .closing__mark {
  left: 34px;
  right: auto;
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 640px);
  }
  .site-header {
    height: 76px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .hero {
    gap: 42px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 68px 84px;
  }
  .hero-visual {
    min-height: 440px;
  }
  .phone-frame {
    max-width: 308px;
    transform: rotate(3deg);
    width: 72%;
  }
  .phone-frame__screen {
    min-height: 532px;
  }
  .reassurance__inner {
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: flex-start;
  }
  .section-grid {
    gap: 52px;
    grid-template-columns: 1fr;
    padding-block: 100px;
  }
  .modes {
    padding-bottom: 100px;
  }
  .modes__heading {
    align-items: flex-start;
    display: block;
    margin-bottom: 30px;
  }
  .modes__heading .eyebrow {
    margin-bottom: 18px;
  }
  .privacy-section__grid {
    gap: 30px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 82px;
  }
  .privacy-visual {
    height: 300px;
    order: 2;
    transform: scale(0.8);
    transform-origin: center;
  }
  .privacy-section__copy {
    order: 1;
  }
  .questions {
    padding-block: 100px;
  }
  .closing {
    padding-bottom: 100px;
  }
  .closing > div {
    min-height: 390px;
    padding: 34px;
  }
  .closing > div::after {
    height: 230px;
    right: -70px;
    top: -90px;
    width: 230px;
  }
  .closing__mark {
    border-width: 24px;
    height: 110px;
    right: 18px;
    top: -18px;
    width: 110px;
  }
  .closing__mark i {
    border-width: 13px;
    height: 48px;
    width: 48px;
  }
  .site-footer__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .footer-meta {
    align-items: start;
    justify-items: start;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: min(100% - 32px, 640px);
  }
  .brand {
    font-size: 21px;
  }
  .language-menu summary {
    font-size: 13px;
  }
  h1 {
    font-size: clamp(3.1rem, 14vw, 4.25rem);
  }
  .hero__lede {
    font-size: 17px;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .hero-visual {
    margin-top: 8px;
    min-height: 398px;
  }
  .phone-frame {
    width: 79%;
  }
  .hero-visual__orb--one {
    height: 110px;
    right: -2%;
    width: 110px;
  }
  .hero-visual__orb--two {
    bottom: 0;
    height: 78px;
    width: 78px;
  }
  .modes__grid {
    grid-template-columns: 1fr;
  }
  .mode-card {
    min-height: 255px;
    padding: 27px;
  }
  .mode-card > p {
    margin-bottom: 72px;
  }
  .privacy-visual {
    margin-inline: -48px;
  }
  .faq-item summary {
    font-size: 17px;
  }
  .legal-page {
    padding-block: 56px 100px;
  }

  html[dir='rtl'] .closing > div::after {
    left: -70px;
    right: auto;
  }
  html[dir='rtl'] .closing__mark {
    left: 18px;
    right: auto;
  }
}

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