:root {
  --white: #FFFFFF;
  --warm: #F6F5F3;
  --grey: #E3DFE0;
  --lav: #D7CDFF;
  --lime: #D3F33A;
  --sky: #B3D7E7;
  --ink: #0A0A0A;
  --purple: #8E59EF;
  --muted: rgba(10, 10, 10, .56);
  --violet: #8B5CF6;

  --radius: 44px;
  --overlap: 64px;
  --pill: 999px;

  --fs-display: clamp(46px, 7.4vw, 104px);
  --fs-head: clamp(30px, 3.5vw, 46px);
  --fs-body: 15px;

  --pad: clamp(24px, 4.4vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.i18n-wait body { visibility: hidden; }

html.i18n-wait.i18n-ready body,
html.i18n-ready body { visibility: visible; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Onest', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

.display {
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 600;
}

.head {
  font-size: var(--fs-head);
  line-height: 1.1;
  letter-spacing: -.024em;
  font-weight: 600;
}

.body {
  font-size: var(--fs-body);
  line-height: 1.35;
  font-weight: 400;
}

.muted { color: var(--muted); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--pill);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
}

.pill-btn {
  height: 52px;
  padding: 0 28px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}

.pill-btn:hover { transform: translateY(-2px); }

.pill-dark { background: var(--ink); color: var(--white); }
.pill-dark:hover { background: var(--purple); }

.pill-line {
  border: 1.5px solid rgba(10, 10, 10, .16);
  height: 52px;
  padding: 0 26px;
}

.pill-line:hover { border-color: var(--ink); }

.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 18px clamp(14px, 2.2vw, 26px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.hdr > * { pointer-events: auto; }

.cluster {
  background: var(--white);
  border-radius: var(--pill);
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 14px rgba(10, 10, 10, .07);
}

.cluster:not(.cluster-r) {
  gap: 6px;
  padding: 7px 14px 7px 7px;
  align-items: center;
}

.mark {
  background: transparent;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: none;
}

.hdr-mark {
  width: 28px;
  height: auto;
  display: block;
  margin-inline: auto;
  color: var(--violet);
}

.mark-name {
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
}

.hdr-right { position: relative; }

.cluster-r { position: relative; z-index: 2; }

.burger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lav);
  display: grid;
  place-items: center;
  flex: none;
  transition: background .4s var(--ease);
}

.burger:hover { background: var(--purple); }

.burger span {
  position: relative;
  width: 13px;
  height: 9px;
  display: block;
}

.burger span i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.burger span i:nth-child(1) { top: 0; }
.burger span i:nth-child(2) { top: 3.7px; }
.burger span i:nth-child(3) { top: 7.4px; }

.hdr-right.open .burger {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(10, 10, 10, .07);
}

.hdr-right.open .burger span i:nth-child(1) { transform: translateY(3.7px) rotate(45deg); }
.hdr-right.open .burger span i:nth-child(2) { opacity: 0; }
.hdr-right.open .burger span i:nth-child(3) { transform: translateY(-3.7px) rotate(-45deg); }

.menu {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  min-width: 266px;
  background: var(--warm);
  border-radius: 30px;
  padding: 66px 26px 20px;
  clip-path: inset(0 0 100% 0 round 30px);
  transition: clip-path .38s var(--ease);
  box-shadow: 0 18px 44px rgba(10, 10, 10, .08);
  z-index: 1;
}

.hdr-right.open .menu { clip-path: inset(0 0 0 0 round 30px); }

.menu h4 {
  font-size: var(--fs-body);
  font-weight: 400;
  color: rgba(10, 10, 10, .38);
  margin: 12px 0 7px;
}

.menu h4:first-child { margin-top: 0; }

.menu a.mi {
  display: block;
  font-size: var(--fs-body);
  font-weight: 600;
  padding: 4px 0;
  letter-spacing: -.01em;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.menu a.mi:hover { color: var(--purple); transform: translateX(3px); }

.menu a.mi.is-active { color: var(--purple); }

html[dir="rtl"] .menu a.mi:hover { transform: translateX(-3px); }

.menu-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 18px;
}

.lang {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(10, 10, 10, .08);
}

.lang button {
  width: 100%;
  height: 32px;
  border: none;
  border-radius: var(--pill);
  display: grid;
  place-items: center;
  font: inherit;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .01em;
  cursor: pointer;
  background: transparent;
  color: rgba(10, 10, 10, .4);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.lang button.on { background: var(--ink); color: var(--white); }
.lang button:not(.on):hover { color: var(--ink); }

.slab {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(116px, 8vw, 132px) var(--pad) clamp(64px, 6.4vw, 104px);
  margin-top: calc(var(--overlap) * -1);
}

.slab-white { background: var(--white); }
.slab-warm { background: var(--warm); }
.slab-lav { background: var(--lav); }
.slab-lime { background: var(--lime); }
.slab-sky { background: var(--sky); }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero {
  margin-top: 0;
  padding-top: calc(104px + env(safe-area-inset-top, 0px));
}

.page-hero-band {
  margin-top: 0;
  padding-top: calc(104px + env(safe-area-inset-top, 0px));
  padding-bottom: clamp(52px, 6vw, 84px);
}

.page-hero-band .page-hero__head {
  margin-top: 26px;
  margin-bottom: 0;
}

.page-hero-band .page-lead {
  margin-top: 18px;
  max-width: 42ch;
}

.page-body.slab {
  padding-top: clamp(72px, 7vw, 108px);
}

.page-body--form.slab {
  padding-top: clamp(80px, 7vw, 116px);
}

.page-legal .legal-updated {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--muted);
}

.page-legal .page-section .head {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-legal .legal-list {
  margin-top: 12px;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-legal .legal-list li {
  list-style: disc;
}

.page-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .14em;
}

.page-legal a:hover {
  color: var(--purple);
}

.page-legal .body + .body {
  margin-top: 12px;
}

.page-legal .legal-subhead {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -.015em;
}

.page-copy {
  max-width: 52rem;
}

.page-article {
  max-width: 40rem;
}

.page-article .page-hero__head {
  max-width: none;
  margin-top: 26px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.028em;
}

.page-article .body {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.58;
}

.page-article .page-lead {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  max-width: none;
}

.page-sections {
  margin-top: clamp(32px, 4vw, 48px);
}

.page-section + .page-section {
  margin-top: clamp(36px, 4.5vw, 52px);
  padding-top: clamp(36px, 4.5vw, 52px);
  border-top: 1px solid rgba(10, 10, 10, .08);
}

.page-section .head {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -.022em;
}

.page-section .faq {
  margin-top: 0;
}

.page-section .notes {
  margin-top: 0;
}

.page-section .body + .body {
  margin-top: 14px;
}

.page-cta .page-article {
  margin-inline: auto;
  text-align: center;
}

.page-cta .page-article .head {
  max-width: 32ch;
  margin-inline: auto;
}

.page-copy > * + * { margin-top: 18px; }

.page-copy .head,
.page-copy .display {
  max-width: 22ch;
  margin-top: 26px;
}

.page-copy .page-lead {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 48ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 16px;
  border-radius: var(--pill);
  font-size: var(--fs-body);
  font-weight: 600;
  letter-spacing: -.01em;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(10, 10, 10, .08);
}

.slab-lav .eyebrow,
.slab-sky .eyebrow,
.slab-lime .eyebrow { background: rgba(255, 255, 255, .72); }

.prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 48rem;
}

.prose .head { max-width: 24ch; }

.notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}

.notes li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  list-style: none;
}

.notes i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
  margin-top: 7px;
}

.page-cta {
  text-align: center;
}

.page-cta .head {
  max-width: 32ch;
  margin: 0 auto;
}

.page-cta .body {
  max-width: 42ch;
  margin: 20px auto 0;
}

.page-cta .hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.foot {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(var(--overlap) * -1);
  position: relative;
  padding: clamp(64px, 7vw, 110px) var(--pad) 0;
  overflow: hidden;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 56px auto 0;
}

.foot-grid h5 {
  font-size: var(--fs-body);
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 12px;
}

.foot-grid a {
  display: block;
  font-weight: 600;
  padding: 4px 0;
  transition: color .3s var(--ease);
}

.foot-grid a:hover { color: var(--purple); }

.foot-grid a.pill {
  padding: 0 28px;
  display: inline-flex;
}

.foot-grid a.pill:hover { color: var(--white); }

.foot-legal {
  max-width: 1200px;
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  padding-bottom: 18px;
}

.wordmark {
  font-size: clamp(90px, 20.5vw, 300px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .78;
  text-align: center;
  margin: 0 auto;
  max-height: .52em;
  overflow: hidden;
  color: var(--ink);
}

.wordmark-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .16em;
  margin: 0 auto;
  max-height: .52em;
  overflow: hidden;
}

.inl {
  width: 1.24em;
  color: var(--violet);
  flex: none;
  display: inline-block;
  vertical-align: -.12em;
}

.hdr-login { flex: none; white-space: nowrap; }

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wl-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.wl-dialog[open] { display: grid; place-items: center; }

.wl-dialog::backdrop { background: rgba(10, 10, 10, .42); }

.wl-dialog[open]::backdrop { animation: wl-dim .42s var(--ease); }

.wl-dialog[open] .wl-panel { animation: wl-in .42s var(--ease); }

@keyframes wl-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes wl-dim {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wl-panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 28px 24px 24px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(10, 10, 10, .18), 0 2px 14px rgba(10, 10, 10, .07);
}

.wl-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.wl-close svg { width: 16px; height: 16px; }
.wl-close:hover { background: var(--warm); color: var(--ink); }

.wl-title {
  font-size: clamp(26px, 4.5vw, 34px);
  font-weight: 600;
  letter-spacing: -.024em;
  line-height: 1.1;
  margin: 0 36px 10px 0;
}

.wl-lead {
  font-size: var(--fs-body);
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 24px;
}

.wl-field {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 18px;
  margin-bottom: 12px;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(10, 10, 10, .1);
  border-radius: 16px;
  outline: none;
  caret-color: var(--purple);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.wl-field::placeholder { color: rgba(10, 10, 10, .36); font-weight: 400; }

.wl-field:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(142, 89, 239, .14);
}

.wl-field.is-invalid {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, .12);
}

.wl-error {
  margin: -4px 0 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #c62828;
}

.wl-error[hidden] { display: none; }

.wl-dialog .pill-btn {
  width: 100%;
  justify-content: center;
  border: 0;
}

.wl-dialog .pill-btn.is-loading,
.wl-dialog .pill-btn:disabled {
  opacity: .55;
  pointer-events: none;
  transform: none;
}

.wl-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.wl-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wl-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(142, 89, 239, .12);
  color: var(--purple);
}

.wl-mark svg { width: 22px; height: 22px; }

body.wl-open { overflow: hidden; }

.faq {
  display: flex;
  flex-direction: column;
  margin-top: clamp(28px, 4vw, 40px);
}

.faq-item {
  padding: clamp(22px, 2.6vw, 34px) 0;
  border-top: 1px solid rgba(10, 10, 10, .1);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(10, 10, 10, .1);
}

.faq-q {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 600;
  margin-bottom: 10px;
  max-width: 40ch;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 28rem;
  margin-top: clamp(28px, 4vw, 36px);
}

.support-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: -4px;
}

.support-field {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(10, 10, 10, .1);
  border-radius: 16px;
  outline: none;
  caret-color: var(--purple);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.support-field::placeholder {
  color: rgba(10, 10, 10, .36);
  font-weight: 400;
}

.support-field:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(142, 89, 239, .14);
}

.support-field.is-invalid {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, .12);
}

textarea.support-field {
  min-height: 140px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.45;
}

.support-form .pill-btn {
  margin-top: 8px;
  justify-content: center;
  border: 0;
}

.support-form .pill-btn.is-loading,
.support-form .pill-btn:disabled {
  opacity: .55;
  pointer-events: none;
  transform: none;
}

.support-error {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #c62828;
}

.support-error[hidden] { display: none; }

.support-success {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(142, 89, 239, .1);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
  max-width: 28rem;
}

.support-success[hidden] { display: none; }

.slab-lav .support-field,
.slab-sky .support-field { background: rgba(255, 255, 255, .82); }

@media (max-width: 880px) {
  :root { --radius: 34px; --overlap: 44px; }

  .mark-name { display: none; }

  .cluster:not(.cluster-r) {
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 54px;
    padding: 7px;
  }

  .cluster-r .pill-dark { font-size: var(--fs-body); padding: 0 16px; }
  .menu { min-width: min(258px, calc(100vw - 40px)); }
}

@media (max-width: 560px) {
  .cluster-r .pill-dark { padding: 0 14px; }
  .hdr-login { padding: 0 12px !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
