@font-face {
  font-family: Jakarta;
  src: url("/assets/jakarta-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --blue: #4235ff;
  --blue-dark: #3023df;
  --ink: #20212b;
  --muted: #747481;
  --lavender: #f1efff;
  --line: #e9e8f0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Jakarta, "Segoe UI", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #8077ff;
  outline-offset: 5px;
}
button {
  border: 0;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
}
::selection {
  background: #dedaff;
}
.wrap {
  width: min(1184px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -70px;
  padding: 14px;
  background: var(--blue);
  color: white;
  z-index: 50;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 108px;
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 31px;
  letter-spacing: -1.5px;
  white-space: nowrap;
}
.brand-dot {
  color: var(--blue);
}
.site-header nav {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 550;
}
.site-header nav a {
  color: #666675;
  transition: color 0.2s;
}
.site-header nav a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 7px 9px 7px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 10px #4235ff14;
  transition:
    transform 0.3s var(--ease),
    background 0.2s,
    box-shadow 0.3s;
}
.button:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px #4235ff26;
}
.button:active {
  transform: scale(0.98);
}
.arrow-circle {
  border-radius: 50%;
  background: #ffffff22;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  font-size: 21px;
  margin-left: 11px;
}
.button-small {
  min-height: 44px;
  font-size: 12px;
  padding: 12px 19px;
  gap: 25px;
}
.button-small span {
  font-size: 19px;
  line-height: 1;
}
.menu-toggle {
  display: none;
}
.hero {
  text-align: center;
  padding-top: 42px;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.45px;
  background: #f6f5ff;
  padding: 10px 15px;
  border-radius: 30px;
  color: #5e54b0;
}
.status-dot {
  height: 6px;
  width: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #4235ff0c;
}
.hero h1 {
  font-size: clamp(48px, 5.8vw, 79px);
  font-weight: 650;
  line-height: 1.13;
  letter-spacing: -4px;
  margin-top: 23px;
  position: relative;
  display: inline-block;
}
.hero h1 > span {
  color: var(--blue);
}
.title-spark {
  width: 39px;
  position: absolute;
  right: -50px;
  top: 77px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(8deg);
}
.hero-copy {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
}
.chrome-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.text-button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.text-button:hover {
  color: var(--blue);
}
.play-circle {
  width: 30px;
  height: 30px;
  border: 1px solid #e3e1ec;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
}
.hero-note {
  font-size: 10px;
  color: #8d8b9b;
  margin-top: 14px;
  letter-spacing: 0.2px;
}
.hero-note span {
  margin: 0 9px;
}
.hero-stage {
  height: 475px;
  max-width: 1000px;
  position: relative;
  margin: 19px auto 0;
  isolation: isolate;
}
.laptop {
  position: absolute;
  width: 650px;
  aspect-ratio: 640/442;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
  mix-blend-mode: multiply;
}
.laptop img {
  position: absolute;
  max-width: none;
  width: 229.85%;
  height: auto;
  left: -65.1%;
  top: -72.8%;
}
.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid #edeaff;
  border-radius: 50%;
  width: 930px;
  height: 250px;
  left: 50%;
  top: 125px;
  transform: translateX(-50%) rotate(-12deg);
}
.orbit-two {
  width: 1020px;
  height: 350px;
  top: 70px;
  transform: translateX(-50%) rotate(10deg);
  border-color: #f4f2ff;
}
.hero-stage:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 70px 80px 20px;
  background: radial-gradient(ellipse, #b3a6ff59, transparent 68%);
}
.hello {
  position: absolute;
  z-index: 2;
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 550;
}
.hello-one {
  top: 73px;
  left: 70px;
  transform: rotate(-12deg);
  color: #7e76c0;
}
.hello-one span {
  font-size: 35px;
  position: absolute;
  left: -30px;
  top: -23px;
  color: #b4acfb;
}
.hello-two {
  right: 96px;
  top: 60px;
  transform: rotate(10deg);
  font-size: 28px;
  color: #6b59fc;
}
.language-float {
  position: absolute;
  left: 4px;
  top: 180px;
  background: #fff;
  border: 1px solid #eeebfa;
  box-shadow: 0 16px 48px #6f58a111;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: left;
  z-index: 2;
  transform: rotate(-4deg);
}
.mini-label {
  font-size: 7px;
  letter-spacing: 1.2px;
  color: #9a96aa;
  font-weight: 650;
}
.language-float > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}
.switch-arrows {
  color: var(--blue);
  margin: 0 3px;
}
.flag {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px #0000000c;
  overflow: hidden;
  position: relative;
}
.flag-es {
  background: linear-gradient(#de273a 25%, #ffd659 25% 75%, #de273a 75%);
}
.flag-de {
  background: linear-gradient(#242331 33%, #e04143 33% 66%, #f5ce53 66%);
}
.flag-ru {
  background: linear-gradient(#fff 33%, #3675d5 33% 66%, #ec5c64 66%);
}
.flag-us {
  background: repeating-linear-gradient(#e15765 0 2px, #fff 2px 4px);
}
.flag-us:after {
  content: "✦";
  position: absolute;
  top: 0;
  left: 0;
  background: #43538e;
  color: white;
  width: 12px;
  height: 12px;
  font-size: 9px;
  display: grid;
  place-items: center;
}
.flag-zh {
  background: #e04446;
  color: #ffd76e;
  text-align: center;
  font-size: 15px;
}
.flag-ko {
  background: #fff;
  text-align: center;
  color: #cc5962;
  font-size: 21px;
}
.voice-float {
  display: flex;
  gap: 13px;
  align-items: center;
  position: absolute;
  right: -2px;
  top: 273px;
  z-index: 2;
  background: white;
  border: 1px solid #eeebfa;
  box-shadow: 0 16px 48px #6f58a114;
  padding: 17px 19px;
  border-radius: 17px;
  transform: rotate(4deg);
  text-align: left;
}
.voice-float strong {
  font-size: 11px;
  font-weight: 600;
  display: block;
}
.voice-float div > span {
  font-size: 9px;
  color: #93909f;
  display: block;
  margin-top: 5px;
}
.voice-check {
  background: #edf8f0;
  color: #4d9d73;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.voice-icon {
  background: #f1efff;
  width: 34px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.voice-icon i {
  width: 2px;
  height: 10px;
  background: var(--blue);
  border-radius: 5px;
  animation: wave 1.3s var(--ease) infinite alternate;
}
.voice-icon i:nth-child(2),
.voice-icon i:nth-child(4) {
  height: 20px;
  animation-delay: 0.2s;
}
.voice-icon i:nth-child(3) {
  height: 25px;
  animation-delay: 0.4s;
}
.stage-caption {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  font-size: 10px;
  letter-spacing: 0.4px;
  color: #96929f;
}
.platforms {
  text-align: center;
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--line);
}
.platforms > p {
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #93909f;
  font-weight: 600;
}
.platform-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  margin-top: 28px;
  color: #6d6a79;
}
.platform-list > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.8px;
}
.platform-list svg {
  width: 27px;
  height: 25px;
}
.platform-list .any-tab {
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0;
}
.any-tab > span {
  font-size: 23px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 47px;
}
.section-kicker {
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 1.7px;
  font-weight: 700;
  margin-bottom: 21px;
}
h2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -2.1px;
}
.section-heading > p,
.section-intro {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.section-heading > p {
  padding-bottom: 5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature {
  border-radius: 25px;
  overflow: hidden;
  padding-top: 34px;
}
.feature-meet {
  background: #f4f2ff;
}
.feature-watch {
  background: #f3f6fb;
}
.feature-copy {
  padding: 0 34px;
  max-width: 460px;
}
.feature-tag {
  font-size: 8px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #8b82bb;
  display: flex;
  align-items: center;
  gap: 9px;
}
.feature-tag > span {
  font-size: 16px;
}
.feature h3 {
  font-size: 27px;
  letter-spacing: -1px;
  margin: 16px 0 12px;
}
.feature p {
  font-size: 12px;
  line-height: 1.8;
  color: #85808f;
  max-width: 345px;
}
.screenshot-button {
  display: block;
  padding: 0;
  position: relative;
  background: transparent;
  width: 100%;
  overflow: hidden;
  text-align: left;
}
.feature .screenshot-button {
  height: 278px;
  margin-top: 25px;
}
.feature .screenshot-button img {
  width: 115%;
  max-width: none;
  position: absolute;
  top: -137px;
  left: -7.5%;
  transition: transform 0.8s var(--ease);
}
.screenshot-button:hover img {
  transform: scale(1.025);
}
.expand-image {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: 0 3px 15px #20212b10;
}
.small-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 43px;
}
.small-feature-row > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.small-icon {
  color: var(--blue);
  font-size: 27px;
  line-height: 1;
  min-width: 28px;
}
.small-feature-row h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 9px;
}
.small-feature-row p {
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
}
.how-section {
  background: #faf9ff;
  border-block: 1px solid #f0edf8;
  padding-block: 100px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.section-intro {
  margin-top: 20px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 35px 0 32px;
}
.steps li {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}
.steps li > span {
  color: #9e96c3;
  font-size: 10px;
  border: 1px solid #e5e0f6;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.steps h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
}
.steps p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 330px;
  margin-top: 4px;
}
.inline-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  gap: 26px;
  align-items: center;
}
.inline-link span {
  font-size: 21px;
  transition: transform 0.3s;
}
.inline-link:hover span {
  transform: translate(3px, -3px);
}
.product-art {
  background: #eeebff;
  border: 1px solid #e8e2fe;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 18px 42px #6657990a;
}
.product-art-heading {
  font-size: 8px;
  color: #8d83b0;
  letter-spacing: 1.3px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-art .screenshot-button {
  aspect-ratio: 1.2;
}
.product-art img {
  max-width: none;
  height: auto;
  width: 200%;
  position: absolute;
  top: 0;
  right: 0;
}
.product-art-footer {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.8;
  color: #9288b5;
}
.product-art-footer strong {
  font-weight: 500;
  color: #615683;
}
.art-star {
  font-size: 53px;
  color: var(--blue);
  line-height: 1;
}
.language-demo {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid #e5e2f3;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 14px 35px #46368f04;
}
.language-tabs {
  padding: 21px;
  background: #faf9fe;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid #edeaf7;
}
.language-tabs button {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 550;
  transition:
    background 0.2s,
    color 0.2s;
}
.language-tabs button > span:last-child {
  margin-left: auto;
  color: #aaa4bd;
  font-size: 9px;
  letter-spacing: 1px;
}
.language-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 3px 10px #3e2d7410;
}
.language-tabs button:hover {
  background: #f0edff;
}
.translation-panel {
  padding: 35px 44px;
  background: radial-gradient(ellipse at 90% 0, #f3efff, transparent 70%);
  display: flex;
  flex-direction: column;
  min-height: 378px;
  justify-content: space-between;
}
.translation-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #9c94af;
}
.sample-badge {
  font-size: 8px;
  letter-spacing: 0;
  color: #9687bd;
  background: #efe9fe;
  padding: 6px 9px;
  border-radius: 20px;
}
.source-phrase {
  font-size: 18px;
  color: #90879d;
  letter-spacing: -0.4px;
  margin-top: 28px;
}
.translation-divider {
  font-size: 22px;
  color: #b5a9d0;
  margin-top: 13px;
}
.translated-phrase {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 550;
  color: var(--blue);
  letter-spacing: -1.2px;
  margin-block: 10px 28px;
  min-height: 47px;
}
.translation-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 10px;
  color: #9990ad;
}
.listen-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1edff;
  color: var(--blue);
  border-radius: 50px;
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 600;
}
.listen-button:hover {
  background: #e7e1ff;
}
.speech-status {
  font-size: 9px;
  color: #a9a1b8;
  margin-top: 15px;
  min-height: 14px;
}
.faq-section {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
}
.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-top: 22px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  min-height: 70px;
  padding: 18px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 20px;
  font-weight: 400;
  color: #a7a0b6;
  transition: transform 0.3s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-list details p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 25px 25px 0;
}
.closing-section {
  padding-bottom: 85px;
}
.closing-card {
  background: var(--blue);
  border-radius: 28px;
  color: #fff;
  text-align: center;
  padding: 66px 20px 53px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.closing-card .section-kicker {
  color: #b8b0ff;
  font-size: 8px;
  letter-spacing: 1.8px;
}
.closing-card h2 {
  font-size: 59px;
  letter-spacing: -2.8px;
  line-height: 1.13;
}
.closing-card > p:not(.section-kicker) {
  font-size: 12px;
  color: #c8c2ff;
  margin-top: 20px;
}
.button-white {
  background: #fff;
  color: var(--blue);
  margin-top: 28px;
  min-height: 53px;
  font-size: 12px;
}
.button-white .arrow-circle {
  background: #f0edff;
}
.button-white:hover {
  background: #f4f2ff;
}
.closing-note {
  display: block;
  font-size: 9px;
  color: #b0a6ff;
  margin-top: 18px;
}
.closing-orbit {
  position: absolute;
  border: 1px solid #ffffff15;
  border-radius: 50%;
  width: 1240px;
  height: 330px;
  left: 50%;
  top: 70px;
  transform: translateX(-50%) rotate(-14deg);
  z-index: -1;
}
.closing-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff15;
  border-radius: 50%;
  inset: -80px -60px;
}
.closing-hello,
.closing-hola {
  position: absolute;
  font-size: 60px;
  font-weight: 500;
  color: #ffffff1c;
  z-index: -1;
  letter-spacing: -3px;
}
.closing-hello {
  left: 60px;
  top: 100px;
  transform: rotate(-18deg);
}
.closing-hola {
  right: 60px;
  bottom: 140px;
  transform: rotate(14deg);
}
footer {
  padding-bottom: 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-top .brand {
  font-size: 28px;
}
.footer-top > span {
  font-size: 11px;
  color: #99939f;
}
.footer-top > a:last-child {
  margin-left: auto;
  font-size: 11px;
  color: #736b83;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #a39bab;
  padding-top: 23px;
  gap: 20px;
}
.footer-bottom > div {
  display: flex;
  gap: 22px;
}
.footer-bottom a:hover {
  color: var(--blue);
}
.footer-globe {
  color: var(--blue);
  font-size: 16px;
  margin-left: 7px;
  vertical-align: middle;
}
.preloader {
  position: fixed;
  inset: 0;
  background: #faf9ff;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  pointer-events: none;
  animation: loader-exit 0.5s var(--ease) 1.4s forwards;
}
.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 41px;
  font-weight: 650;
  letter-spacing: -2px;
}
.loader-brand img {
  animation: loader-spin 1.3s var(--ease) both;
}
.loader-track {
  height: 2px;
  width: 150px;
  background: #e8e3fc;
  overflow: hidden;
}
.loader-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform-origin: left;
  animation: loader-progress 1.4s var(--ease) both;
}
.loader-caption {
  font-size: 10px;
  color: #9d93b8;
  letter-spacing: 0.5px;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s var(--ease),
    visibility 0.5s;
}
.reveal {
  transition:
    opacity 0.9s var(--ease),
    translate 0.9s var(--ease);
}
.reveal.waiting {
  opacity: 0;
  translate: 0 25px;
}
.reveal.visible {
  opacity: 1;
  translate: 0 0;
}
.gallery-dialog {
  padding: 40px 16px 14px;
  border: 0;
  border-radius: 18px;
  width: min(1000px, 94vw);
  max-height: 92dvh;
  background: #fff;
  box-shadow: 0 30px 120px #0003;
}
.gallery-dialog::backdrop {
  background: #18122bbf;
  backdrop-filter: blur(6px);
}
.gallery-dialog > img {
  max-height: 72dvh;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.dialog-close {
  position: absolute;
  right: 10px;
  top: 5px;
  background: transparent;
  font-size: 29px;
  color: #81778e;
  min-width: 40px;
}
.gallery-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px 0;
  font-size: 12px;
  color: #8c8199;
}
.gallery-bottom button {
  background: #f1eeff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  color: var(--blue);
  font-size: 20px;
}
.legal-page {
  max-width: 780px;
  padding-block: 70px 100px;
}
.legal-page h1 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.legal-page h2 {
  font-size: 24px;
  letter-spacing: -0.7px;
  margin: 32px 0 12px;
}
.legal-page p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 12px;
}
.legal-page a {
  color: var(--blue);
  text-decoration: underline;
}
@keyframes wave {
  to {
    transform: scaleY(0.4);
  }
}
@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loader-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes loader-spin {
  from {
    transform: rotate(-35deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}
.hero h1 {
  display: block;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 55px;
  }
  .hero-stage {
    margin-top: 27px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    gap: 20px;
  }
  .site-header nav {
    gap: 20px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -3.5px;
  }
  .hero-stage {
    height: 450px;
  }
  .laptop {
    width: 610px;
  }
  .language-float {
    left: -5px;
    padding: 14px;
    top: 180px;
  }
  .voice-float {
    right: 0;
    top: 300px;
    padding: 13px;
  }
  .hello-one {
    left: 30px;
  }
  .hello-two {
    right: 30px;
  }
  .hero-orbit {
    width: 100%;
  }
  .orbit-two {
    width: 94%;
  }
  .platform-list {
    gap: 45px;
  }
  .section {
    padding-block: 85px;
  }
  h2 {
    font-size: 40px;
  }
  .how-grid {
    gap: 45px;
  }
  .feature .screenshot-button {
    height: 230px;
  }
  .feature .screenshot-button img {
    top: -110px;
  }
  .feature-copy {
    padding-inline: 25px;
  }
  .feature h3 {
    font-size: 23px;
  }
  .small-feature-row {
    gap: 22px;
  }
  .language-demo {
    grid-template-columns: 240px 1fr;
  }
  .translation-panel {
    padding: 28px;
  }
  .translated-phrase {
    font-size: 29px;
  }
  .translation-top {
    align-items: flex-start;
  }
  .faq-section {
    padding-top: 0;
    gap: 45px;
  }
  .closing-card h2 {
    font-size: 55px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 82px;
    gap: 15px;
  }
  .brand {
    font-size: 27px;
    gap: 7px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .header-cta {
    margin-left: auto;
    font-size: 10px;
    min-height: 38px;
    padding: 9px 14px;
    gap: 15px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 40px;
    background: transparent;
    padding: 4px;
  }
  .menu-toggle i {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    padding: 23px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 15px 35px #3c2b6810;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 13px;
  }
  .hero {
    padding-top: 32px;
  }
  .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
    padding: 9px 12px;
  }
  .hero h1 {
    font-size: clamp(39px, 8.7vw, 62px);
    letter-spacing: -2.3px;
    line-height: 1.17;
    margin-top: 23px;
  }
  .title-spark {
    right: -22px;
    top: 50%;
    width: 20px;
  }
  .hero-copy {
    font-size: 12px;
    line-height: 1.9;
    max-width: 340px;
    margin: 20px auto 0;
  }
  .hero-actions {
    gap: 16px;
    margin-top: 23px;
  }
  .button {
    min-height: 51px;
    font-size: 11px;
    padding-left: 16px;
    gap: 8px;
  }
  .arrow-circle {
    width: 32px;
    height: 32px;
    font-size: 18px;
    margin-left: 5px;
  }
  .text-button {
    font-size: 10px;
    gap: 6px;
  }
  .play-circle {
    height: 25px;
    width: 25px;
    font-size: 14px;
  }
  .chrome-icon {
    width: 18px;
    height: 18px;
  }
  .hero-note {
    font-size: 8px;
    margin-top: 13px;
  }
  .hero-stage {
    height: 350px;
    margin-top: 35px;
    max-width: 520px;
  }
  .laptop {
    width: 100%;
    top: 0;
    aspect-ratio: 640/442;
  }
  .hero-orbit {
    height: 140px;
    top: 90px;
    width: 100%;
  }
  .orbit-two {
    height: 190px;
    top: 57px;
    width: 100%;
  }
  .hero-stage:before {
    inset: 20px 0 50px;
  }
  .hello {
    display: none;
  }
  .language-float {
    top: auto;
    bottom: 55px;
    left: 0;
    padding: 11px 13px;
    border-radius: 12px;
    transform: rotate(-3deg);
  }
  .mini-label {
    font-size: 5px;
    letter-spacing: 0.9px;
  }
  .language-float > div {
    font-size: 9px;
    gap: 5px;
    margin-top: 8px;
  }
  .language-float .flag {
    height: 17px;
    width: 17px;
  }
  .voice-float {
    top: auto;
    bottom: 12px;
    right: 0;
    padding: 10px 12px;
    gap: 9px;
    border-radius: 12px;
    transform: rotate(3deg);
  }
  .voice-float strong {
    font-size: 8px;
  }
  .voice-float div > span {
    font-size: 7px;
  }
  .voice-icon {
    height: 30px;
    width: 28px;
  }
  .voice-check {
    height: 18px;
    width: 18px;
    font-size: 10px;
  }
  .stage-caption {
    display: none;
  }
  .platforms {
    padding: 32px 0;
  }
  .platforms > p {
    font-size: 7px;
    letter-spacing: 1.4px;
  }
  .platform-list {
    gap: 19px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .platform-list > span {
    font-size: 16px;
    gap: 5px;
    letter-spacing: -0.6px;
  }
  .platform-list svg {
    width: 21px;
    height: 19px;
  }
  .platform-list .any-tab {
    font-size: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 2px;
  }
  .any-tab > span {
    font-size: 18px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-kicker {
    font-size: 7px;
    letter-spacing: 1.4px;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.7px;
  }
  .section-heading > p {
    font-size: 12px;
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature {
    padding-top: 27px;
    border-radius: 20px;
  }
  .feature h3 {
    font-size: 25px;
  }
  .feature p {
    font-size: 12px;
  }
  .feature .screenshot-button {
    height: 255px;
  }
  .feature .screenshot-button img {
    top: -130px;
  }
  .feature-copy {
    max-width: none;
  }
  .small-feature-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 35px;
  }
  .small-feature-row > div {
    gap: 18px;
  }
  .small-feature-row h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .small-feature-row p {
    font-size: 11px;
  }
  .small-icon {
    font-size: 28px;
    width: 28px;
  }
  .how-section {
    padding-block: 65px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-intro {
    font-size: 12px;
    margin-top: 16px;
  }
  .steps {
    margin-top: 28px;
  }
  .steps li {
    gap: 15px;
    margin-top: 20px;
  }
  .steps p {
    max-width: 300px;
  }
  .product-art {
    transform: none;
    max-width: 470px;
    width: 100%;
    margin: auto;
  }
  .product-art .screenshot-button {
    aspect-ratio: 1.25;
  }
  .language-demo {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .language-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .language-tabs button {
    justify-content: center;
    padding: 11px 5px;
    font-size: 9px;
    gap: 5px;
  }
  .language-tabs .flag {
    width: 17px;
    height: 17px;
  }
  .language-tabs button > span:last-child {
    display: none;
  }
  .translation-panel {
    padding: 24px;
    min-height: 332px;
  }
  .translation-top {
    font-size: 6px;
    gap: 8px;
    letter-spacing: 0.7px;
  }
  .sample-badge {
    font-size: 7px;
    padding: 5px 8px;
    white-space: nowrap;
  }
  .source-phrase {
    font-size: 15px;
  }
  .translated-phrase {
    font-size: 29px;
    letter-spacing: -0.9px;
    margin-bottom: 23px;
  }
  .translation-bottom {
    font-size: 9px;
    gap: 8px;
  }
  .listen-button {
    font-size: 8px;
    padding: 10px 12px;
  }
  .speech-status {
    font-size: 8px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0;
  }
  .faq-list summary {
    min-height: 67px;
    font-size: 12px;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .faq-intro > p:last-child {
    font-size: 12px;
  }
  .closing-section {
    padding-bottom: 52px;
  }
  .closing-card {
    padding: 48px 17px 40px;
    border-radius: 22px;
  }
  .closing-card h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .closing-card > p:not(.section-kicker) {
    font-size: 10px;
  }
  .closing-card .section-kicker {
    font-size: 6px;
  }
  .closing-hello {
    font-size: 40px;
    left: 12px;
    top: 70px;
  }
  .closing-hola {
    font-size: 40px;
    right: 10px;
    bottom: 75px;
  }
  .closing-orbit {
    width: 690px;
    height: 200px;
    top: 100px;
  }
  .closing-note {
    font-size: 7px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 12px 20px;
    padding-bottom: 23px;
  }
  .footer-top .brand {
    font-size: 25px;
  }
  .footer-top > span {
    font-size: 9px;
    margin-left: auto;
  }
  .footer-top > a:last-child {
    margin-left: 0;
    width: 100%;
    font-size: 10px;
    margin-top: 7px;
  }
  .footer-bottom {
    font-size: 8px;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .footer-bottom > div {
    gap: 12px;
  }
  .legal-page h1 {
    font-size: 36px;
  }
  .legal-page h2 {
    font-size: 23px;
  }
  .legal-page {
    padding-top: 40px;
  }
  .gallery-bottom {
    font-size: 10px;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 420px) {
  .hero-stage {
    height: 290px;
    margin-top: 33px;
  }
  .language-float {
    bottom: 40px;
  }
  .voice-float {
    bottom: 0;
  }
  .hero-actions {
    gap: 12px;
  }
  .feature .screenshot-button {
    height: 210px;
  }
  .feature .screenshot-button img {
    top: -110px;
  }
  .hero h1 {
    font-size: 37px;
    letter-spacing: -1.9px;
  }
  .title-spark {
    right: -17px;
    width: 17px;
  }
  .header-cta {
    font-size: 9px;
    gap: 10px;
  }
  .translation-panel {
    padding: 21px;
  }
  .translated-phrase {
    font-size: 26px;
  }
  .footer-bottom {
    justify-content: flex-start;
  }
  .hero-copy {
    max-width: 305px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .preloader {
    display: none;
  }
  .reveal.waiting {
    opacity: 1;
    translate: none;
  }
}
