:root {
  --background: #edf0e8;
  --background-deep: #e4e8df;
  --surface: #fffefa;
  --surface-soft: rgba(255, 254, 250, .72);
  --text: #111217;
  --indigo: #30358a;
  --indigo-deep: #242969;
  --indigo-soft: #777bb5;
  --coral: #e63a2d;
  --coral-soft: #f7dcd7;
  --mint: #159475;
  --mint-soft: #dcece5;
  --line: rgba(48, 53, 138, .11);
  --line-strong: rgba(48, 53, 138, .19);
  --shadow-sm: 0 12px 30px rgba(35, 42, 74, .07);
  --shadow-lg: 0 34px 90px rgba(35, 42, 74, .16);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 5%, rgba(230, 58, 45, .08), transparent 26rem),
    radial-gradient(circle at 4% 24%, rgba(48, 53, 138, .07), transparent 31rem),
    var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .28) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .28) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 64%);
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(48, 53, 138, .08);
  background: rgba(237, 240, 232, .82);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
}

.nav-shell {
  width: min(1200px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(48, 53, 138, .16);
}

.brand span {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.main-nav a,
.nav-store {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--indigo);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--coral);
  background: rgba(255, 254, 250, .72);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-store {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(230, 58, 45, .18);
}

.nav-store:hover {
  color: #fff;
  background: #cf3025;
  transform: translateY(-1px);
}

.language-menu {
  position: relative;
}

.language-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--indigo);
  background: rgba(255, 254, 250, .68);
  border: 1px solid var(--line);
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "⌄";
  color: var(--indigo-soft);
  transition: transform .18s ease;
}

.language-menu[open] summary::after {
  transform: rotate(180deg);
}

.language-popover {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  width: 238px;
  max-height: min(70vh, 460px);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 4px;
  padding: 10px;
  background: rgba(255, 254, 250, .98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.language-menu:not([open]) .language-popover {
  display: none;
}

.language-menu[open] .language-popover {
  animation: menu-open .18s cubic-bezier(.2, .8, .2, 1) both;
}

.language-popover a {
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  overflow: hidden;
  color: var(--indigo);
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.language-popover a:hover,
.language-popover a[aria-current="page"] {
  color: var(--coral);
  background: var(--coral-soft);
}

.language-popover a span {
  flex: none;
  min-width: 26px;
  color: var(--indigo-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-popover a:hover span,
.language-popover a[aria-current="page"] span {
  color: var(--coral);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 820;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(230, 58, 45, .2);
}

.button.primary:hover {
  background: #cf3025;
  box-shadow: 0 20px 42px rgba(230, 58, 45, .26);
}

.button.secondary {
  color: var(--indigo);
  background: rgba(255, 254, 250, .72);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.button.light {
  color: var(--indigo);
  background: #fffefa;
}

.hero-section {
  width: min(1200px, calc(100% - 36px));
  min-height: 810px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding: 62px 0 82px;
}

.hero-section > *,
.gallery-layout > *,
.gallery-stage > *,
.privacy-panel > *,
.language-section > * {
  min-width: 0;
}

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

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--indigo);
  font-size: clamp(56px, 6.5vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 900;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(48, 53, 138, .73);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.42;
  font-weight: 570;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.proof-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  color: var(--indigo);
  background: rgba(255, 254, 250, .58);
  border: 1px solid rgba(48, 53, 138, .09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.proof-row span::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(21, 148, 117, .1);
}

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

.hero-visual::before {
  position: absolute;
  inset: 9% 4%;
  z-index: -3;
  content: "";
  border-radius: 52% 48% 44% 56% / 50% 42% 58% 50%;
  background: linear-gradient(145deg, rgba(48, 53, 138, .12), rgba(230, 58, 45, .15));
  filter: blur(1px);
  transform: rotate(-5deg);
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(48, 53, 138, .12);
  border-radius: 50%;
}

.hero-orbit.one {
  width: 560px;
  height: 560px;
}

.hero-orbit.two {
  width: 580px;
  height: 360px;
  transform: rotate(20deg);
}

.phone-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  background: #111217;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 48px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, .13);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
  transition: opacity .12s ease, transform .12s ease;
}

.phone-frame img.is-changing {
  opacity: .34;
  transform: scale(.992);
}

.phone-speaker {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 4;
  width: 76px;
  height: 23px;
  border-radius: 999px;
  background: #0b0c0f;
  transform: translateX(-50%);
}

.hero-phone {
  width: min(334px, 64vw);
  transform: rotate(2.2deg);
  animation: phone-arrive .85s cubic-bezier(.2, .8, .2, 1) both;
}

.floating-note {
  position: absolute;
  z-index: 6;
  width: min(245px, 44%);
  display: grid;
  gap: 4px;
  padding: 15px 17px;
  color: var(--indigo);
  background: rgba(255, 254, 250, .94);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(35, 42, 74, .14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.floating-note small,
.current-badge small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 14px;
  line-height: 1.3;
}

.input-note {
  top: 25%;
  left: 0;
  transform: rotate(-3deg);
}

.output-note {
  right: 0;
  bottom: 21%;
  transform: rotate(2deg);
}

.current-badge {
  position: absolute;
  z-index: 7;
  left: 8%;
  bottom: 7%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--indigo);
  background: var(--mint-soft);
  border: 1px solid rgba(21, 148, 117, .14);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.current-badge > span {
  color: var(--mint);
  font-size: 11px;
}

.current-badge small,
.current-badge strong {
  display: block;
}

.current-badge small {
  color: var(--mint);
}

.current-badge strong {
  margin-top: 2px;
  font-size: 13px;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.privacy-copy h2,
.language-section h2 {
  margin: 0;
  color: var(--indigo);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}

.section-heading > p:last-child,
.language-section > div > p:last-child {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(48, 53, 138, .68);
  font-size: 19px;
}

.workflow-section {
  border-top: 1px solid var(--line);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.workflow-card,
.feature-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 254, 250, .78);
  border: 1px solid rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-sm);
}

.workflow-card {
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius);
}

.workflow-card::after {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(48, 53, 138, .025), 0 0 0 44px rgba(48, 53, 138, .018);
}

.workflow-card > span {
  min-width: 42px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.workflow-card h3,
.feature-card h3 {
  margin: 58px 0 10px;
  color: var(--indigo);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.workflow-card p,
.feature-card p {
  margin: 0;
  color: rgba(48, 53, 138, .66);
  font-size: 16px;
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: var(--indigo-deep);
}

.gallery-section .section-heading h2,
.gallery-caption h3 {
  color: #fff;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(220px, .54fr) minmax(520px, 1.46fr);
  gap: 32px;
  align-items: stretch;
}

.screen-tabs {
  display: grid;
  align-content: center;
  gap: 8px;
}

.screen-tabs button {
  min-height: 62px;
  padding: 0 17px;
  color: rgba(255, 255, 255, .62);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  cursor: pointer;
  text-align: left;
  font-weight: 760;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.screen-tabs button:hover,
.screen-tabs button[aria-selected="true"] {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  transform: translateX(5px);
}

.screen-tabs button[aria-selected="true"]::before {
  margin-right: 10px;
  color: var(--coral);
  content: "●";
  font-size: 9px;
}

.gallery-stage {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(240px, .7fr);
  align-items: center;
  gap: 26px;
  padding: 38px clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 34% 40%, rgba(230, 58, 45, .23), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
}

.gallery-stage::before {
  position: absolute;
  inset: 14% 36% 14% -8%;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .018);
}

.gallery-phone {
  width: min(330px, 100%);
  z-index: 2;
  justify-self: center;
}

.gallery-caption {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.gallery-caption > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-caption h3 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}

.gallery-caption p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: 15px;
  font-size: 24px;
  font-weight: 900;
}

.feature-card:nth-child(2n) .feature-icon {
  color: var(--indigo);
  background: rgba(48, 53, 138, .09);
}

.feature-card:nth-child(3n) .feature-icon {
  color: var(--mint);
  background: var(--mint-soft);
}

.feature-card h3 {
  margin-top: 54px;
}

.privacy-section {
  padding-top: 60px;
}

.privacy-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 70px;
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(230, 58, 45, .42), transparent 18rem),
    linear-gradient(145deg, var(--indigo-deep), #393f98);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.privacy-panel::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .018);
}

.privacy-copy,
.privacy-list {
  position: relative;
  z-index: 2;
}

.privacy-copy h2 {
  color: #fff;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, .7);
  font-size: 19px;
}

.privacy-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  font-size: 15px;
  font-weight: 620;
}

.privacy-list li::before {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  content: "✓";
  color: #fff;
  background: var(--mint);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.language-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.language-cloud a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  color: var(--indigo);
  background: rgba(255, 254, 250, .76);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  font-weight: 750;
  transition: transform .18s ease, color .18s ease, border .18s ease;
}

.language-cloud a:hover,
.language-cloud a[aria-current="page"] {
  color: var(--coral);
  border-color: rgba(230, 58, 45, .24);
  transform: translateY(-2px);
}

.site-footer {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-primary,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--text);
  font-size: 17px;
}

.footer-brand small {
  margin-top: 1px;
  color: rgba(48, 53, 138, .6);
  font-size: 12px;
}

.footer-links,
.footer-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a,
.footer-languages a {
  color: var(--indigo);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover,
.footer-languages a:hover,
.footer-languages a[aria-current="page"] {
  color: var(--coral);
}

.footer-languages {
  margin: 32px 0 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-meta {
  color: rgba(48, 53, 138, .52);
  font-size: 12px;
}

/* Legal, privacy, usage and support pages */

.legal-main {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 66px 0 100px;
}

.legal-hero {
  min-width: 0;
  max-width: 900px;
  padding: 42px 0 64px;
}

.back-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
  color: var(--indigo-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.back-link:hover {
  color: var(--coral);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--indigo);
  font-size: clamp(52px, 8vw, 94px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 900;
}

.legal-lead {
  max-width: 800px;
  margin: 25px 0 0;
  color: rgba(48, 53, 138, .69);
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.38;
}

.legal-summary {
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 0 15px;
  color: var(--indigo);
  background: var(--mint-soft);
  border: 1px solid rgba(21, 148, 117, .12);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 760;
}

.legal-summary span {
  color: var(--mint);
}

.updated {
  margin: 15px 0 0;
  color: rgba(48, 53, 138, .48);
  font-size: 12px;
  font-weight: 660;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.legal-layout > *,
.legal-section > * {
  min-width: 0;
}

.toc {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 3px;
  padding: 18px;
  background: rgba(255, 254, 250, .65);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.toc > strong {
  margin: 2px 8px 10px;
  color: var(--coral);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toc a {
  min-width: 0;
  min-height: 38px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  color: rgba(48, 53, 138, .66);
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.2;
}

.legal-summary,
.toc a,
.legal-section p,
.legal-section li,
.legal-section a {
  overflow-wrap: anywhere;
}

.toc a:hover {
  color: var(--indigo);
  background: rgba(48, 53, 138, .06);
}

.toc a span {
  color: rgba(48, 53, 138, .35);
  font-size: 10px;
  letter-spacing: .06em;
}

.legal-content {
  overflow: hidden;
  background: rgba(255, 254, 250, .82);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.legal-section {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 36px clamp(24px, 5vw, 54px) 40px;
  scroll-margin-top: 105px;
}

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

.section-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
}

.legal-section h2 {
  margin: -5px 0 16px;
  color: var(--indigo);
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.legal-section p,
.legal-section li {
  color: rgba(17, 18, 23, .74);
  font-size: 16px;
  line-height: 1.68;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 25px;
}

.legal-section li::before {
  position: absolute;
  top: .68em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}

.legal-section a {
  color: var(--indigo);
  text-decoration-color: rgba(48, 53, 138, .25);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--coral);
}

@keyframes menu-open {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes phone-arrive {
  from { opacity: 0; transform: translateY(26px) rotate(4deg) scale(.96); }
  to { opacity: 1; transform: translateY(0) rotate(2.2deg) scale(1); }
}

@media (max-width: 1040px) {
  .nav-shell {
    gap: 14px;
  }

  .main-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-actions {
    grid-column: 2;
  }

  .hero-section {
    grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 7.8vw, 76px);
  }

  .hero-orbit.one {
    width: min(500px, calc(50vw - 12px));
    height: min(500px, calc(50vw - 12px));
  }

  .hero-orbit.two {
    width: min(480px, calc(50vw - 20px));
    height: min(300px, calc(31vw - 12px));
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .screen-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .screen-tabs button {
    padding: 0 10px;
    text-align: center;
    font-size: 12px;
  }

  .screen-tabs button:hover,
  .screen-tabs button[aria-selected="true"] {
    transform: translateY(-3px);
  }

  .screen-tabs button[aria-selected="true"]::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

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

  .hero-copy h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .proof-row {
    justify-content: center;
  }

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

  .hero-orbit.one {
    width: min(560px, calc(100vw - 36px));
    height: min(560px, calc(100vw - 36px));
  }

  .hero-orbit.two {
    width: min(580px, calc(100vw - 84px));
    height: min(360px, calc(62.1vw - 52px));
  }

  .workflow-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-card:last-child {
    grid-column: 1 / -1;
  }

  .gallery-stage {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-panel,
  .language-section {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    gap: 38px;
  }

  .language-cloud {
    justify-content: flex-start;
  }

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

  .legal-hero h1 {
    font-size: clamp(48px, 7.2vw, 64px);
  }

  .toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toc > strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .nav-shell {
    width: min(100% - 24px, 1200px);
    min-height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    display: none;
  }

  .nav-store {
    display: none;
  }

  .language-menu summary {
    max-width: 200px;
  }

  .language-popover {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .hero-section,
  .section-shell,
  .site-footer,
  .legal-main {
    width: min(100% - 24px, 1200px);
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14.5vw, 66px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-orbit.one {
    width: min(360px, calc(100vw - 24px));
    height: min(360px, calc(100vw - 24px));
  }

  .hero-orbit.two {
    width: min(340px, calc(100vw - 48px));
    height: min(220px, calc(64.7vw - 31px));
    transform: rotate(14deg);
  }

  .hero-phone {
    width: 270px;
    border-radius: 42px;
  }

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

  .phone-speaker {
    top: 17px;
    width: 65px;
    height: 19px;
  }

  .floating-note {
    width: 46%;
    padding: 11px;
  }

  .floating-note strong {
    font-size: 11px;
  }

  .input-note {
    top: 22%;
  }

  .output-note {
    bottom: 17%;
  }

  .current-badge {
    left: 1%;
    bottom: 3%;
  }

  .section-shell {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .language-section h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .workflow-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card:last-child {
    grid-column: auto;
  }

  .workflow-card,
  .feature-card {
    min-height: 240px;
  }

  .workflow-card h3,
  .feature-card h3 {
    margin-top: 42px;
  }

  .gallery-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .screen-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .screen-tabs::-webkit-scrollbar {
    display: none;
  }

  .screen-tabs button {
    min-width: max-content;
    min-height: 48px;
    padding: 0 14px;
  }

  .gallery-stage {
    min-height: 660px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 28px 20px;
  }

  .gallery-phone {
    width: 270px;
  }

  .gallery-caption {
    text-align: center;
  }

  .gallery-caption h3 {
    font-size: 34px;
  }

  .privacy-panel {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .language-cloud a {
    min-height: 44px;
    padding: 0 13px;
    font-size: 13px;
  }

  .footer-primary,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    margin-top: 10px;
  }

  .legal-main {
    padding-top: 32px;
  }

  .legal-hero {
    padding-top: 20px;
  }

  .back-link {
    margin-bottom: 36px;
  }

  .legal-hero h1 {
    font-size: clamp(32px, 9.8vw, 48px);
  }

  .legal-lead {
    font-size: 19px;
  }

  .legal-summary {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .toc > strong {
    grid-column: auto;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px 32px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
