:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f8;
  --surface-warm: #fff8f4;
  --ink: #211f22;
  --ink-soft: #6f6b70;
  --ink-faint: #918d92;
  --line: #e4e1e5;
  --line-strong: #cbc7cd;
  --pink: #dd2a7b;
  --pink-soft: #fce7f1;
  --purple: #8134af;
  --purple-soft: #f2e8fa;
  --orange: #f58529;
  --orange-soft: #fff0e2;
  --blue: #1e90ff;
  --blue-soft: #e8f4ff;
  --green: #2f9d55;
  --green-soft: #e9f7ed;
  --danger: #d94747;
  --gradient: linear-gradient(105deg, #f58529 0%, #dd2a7b 51%, #8134af 100%);
  --shadow-small: 0 8px 30px rgba(31, 25, 32, 0.07);
  --shadow-large: 0 34px 90px rgba(42, 27, 45, 0.15);
  --page: min(1180px, calc(100% - 40px));
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(30, 144, 255, 0.48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient);
  content: "";
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.section-lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 25, 32, 0.045);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 850;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > .language-switch,
.site-nav > .button {
  display: none;
}

.site-nav > a:not(.button) {
  padding: 10px 9px;
  border-radius: 8px;
  color: #4f4b50;
  font-size: 0.88rem;
  font-weight: 720;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav > a:not(.button):hover {
  background: var(--surface-soft);
  color: var(--ink);
}

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

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 850;
}

.language-switch button[aria-pressed="true"] {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(36, 29, 37, 0.08);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  border: 0;
  background: var(--gradient);
  background-clip: border-box;
  background-origin: border-box;
  color: #fff;
  box-shadow: 0 13px 30px rgba(190, 49, 121, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-compact {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.button[aria-disabled="true"] {
  cursor: default;
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - var(--header-height)));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fbfafc;
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: min(780px, calc(100svh - var(--header-height)));
  align-items: center;
  padding-block: 74px 86px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(670px, 58%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 .gradient-text {
  display: block;
  padding-bottom: 0.08em;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: #514d52;
  font-size: 0.96rem;
  font-weight: 720;
}

.hero-note::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.hero-fact strong,
.hero-fact span {
  display: block;
}

.hero-fact strong {
  font-size: 0.88rem;
}

.hero-fact span {
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 0.78rem;
}

.hero-product {
  position: absolute;
  top: 48px;
  right: -12px;
  z-index: 2;
  width: min(348px, 31vw);
}

.phone-stage {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.phone-frame {
  position: relative;
  padding: 9px;
  border: 1px solid #3b393d;
  border-radius: 58px;
  background: linear-gradient(145deg, #373538 0%, #0c0b0d 21%, #050506 76%, #2d2b2f 100%);
  box-shadow: 0 42px 92px rgba(42, 27, 45, 0.19), 0 8px 20px rgba(20, 16, 21, 0.16);
  isolation: isolate;
}

.phone-frame::before {
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 54px;
  pointer-events: none;
  content: "";
}

.phone-frame::after {
  position: absolute;
  top: 10%;
  right: 4px;
  width: 1px;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
  content: "";
}

.phone-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 1px solid #030303;
  border-radius: 49px;
  background: #000;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.phone-carousel {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.phone-carousel::-webkit-scrollbar {
  display: none;
}

.phone-track {
  display: flex;
  width: 100%;
  height: 100%;
}

.phone-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.phone-hardware-button {
  position: absolute;
  z-index: -1;
  width: 4px;
  border: 1px solid #242225;
  border-radius: 3px;
  background: linear-gradient(90deg, #181619, #4a474c 46%, #171518);
  box-shadow: 0 2px 5px rgba(20, 16, 21, 0.24);
}

.phone-action-button {
  top: 18%;
  left: -5px;
  height: 30px;
}

.phone-volume-up {
  top: 25%;
  left: -5px;
  height: 52px;
}

.phone-volume-down {
  top: 33%;
  left: -5px;
  height: 52px;
}

.phone-power-button {
  top: 27%;
  right: -5px;
  height: 82px;
}

.phone-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(15, 13, 16, 0.58);
  color: #fff;
  cursor: pointer;
  opacity: 0.78;
  place-items: center;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
  backdrop-filter: blur(12px);
}

.phone-nav span {
  display: block;
  font-size: 1.7rem;
  line-height: 0.7;
  transform: translateY(-1px);
}

.phone-nav:hover,
.phone-nav:focus-visible {
  background: rgba(15, 13, 16, 0.82);
  opacity: 1;
}

.phone-nav:active {
  transform: translateY(-50%) scale(0.92);
}

.phone-nav-previous {
  left: 12px;
}

.phone-nav-next {
  right: 12px;
}

.phone-pagination {
  position: absolute;
  bottom: -33px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(210, 205, 212, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(39, 30, 41, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.phone-pagination button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8c3ca;
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.phone-pagination button[aria-current="true"] {
  width: 20px;
  border-radius: 999px;
  background: var(--pink);
}

.format-float {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 98px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(208, 203, 210, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(14px);
}

.format-float strong {
  font-size: 0.78rem;
}

.format-float > div {
  display: grid;
  gap: 2px;
}

.format-float span {
  color: var(--ink-faint);
  font-size: 0.68rem;
}

.format-mark {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 900;
}

.float-pdf {
  top: 17%;
  left: -78px;
}

.float-pdf .format-mark {
  background: var(--pink-soft);
  color: var(--pink);
}

.float-image {
  right: -56px;
  bottom: 31%;
}

.float-image .format-mark {
  background: var(--blue-soft);
  color: var(--blue);
}

.float-media {
  bottom: 7%;
  left: -58px;
}

.float-media .format-mark {
  background: var(--orange-soft);
  color: var(--orange);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 0.74rem;
  font-weight: 760;
  transform: translateX(-50%);
}

.hero-scroll-cue::after {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--ink-faint);
  border-bottom: 2px solid var(--ink-faint);
  content: "";
  transform: rotate(45deg) scale(0.4);
}

.section {
  padding-block: 108px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

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

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-small);
  transform: translateY(-4px);
}

.feature-index {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-card:nth-child(4n + 1) .feature-index {
  background: var(--pink-soft);
  color: var(--pink);
}

.feature-card:nth-child(4n + 2) .feature-index {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-card:nth-child(4n + 3) .feature-index {
  background: var(--green-soft);
  color: var(--green);
}

.feature-card:nth-child(4n + 4) .feature-index {
  background: var(--orange-soft);
  color: var(--orange);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.feature-card p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.format-section {
  padding-block: 72px;
  background: #19171a;
  color: #fff;
}

.format-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.format-layout .section-lead {
  color: #bcb7bd;
}

.format-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.format-pill {
  padding: 12px 16px;
  border: 1px solid #3b373d;
  border-radius: 8px;
  background: #252226;
  color: #efedef;
  font-size: 0.78rem;
  font-weight: 850;
}

.format-pill:nth-child(4n + 1) {
  border-color: rgba(221, 42, 123, 0.58);
}

.format-pill:nth-child(4n + 2) {
  border-color: rgba(30, 144, 255, 0.55);
}

.format-pill:nth-child(4n + 3) {
  border-color: rgba(76, 175, 80, 0.55);
}

.format-note {
  margin: 18px 0 0;
  color: #a9a4aa;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: right;
}

.workflow {
  background: var(--surface-warm);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 56px 0 0;
  counter-reset: workflow;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 38px 34px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  counter-increment: workflow;
}

.step + .step {
  border-left: 1px solid var(--line-strong);
}

.step::before {
  display: block;
  margin-bottom: 62px;
  color: var(--pink);
  content: "0" counter(workflow);
  font-size: 0.78rem;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  font-size: 1.25rem;
}

.step p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.trust-section {
  background: #f5f8f6;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 72px;
}

.trust-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d8e2db;
  border-radius: 14px;
  background: #d8e2db;
}

.trust-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 21px 22px;
  background: #fff;
}

.trust-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.94rem;
}

.trust-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.text-link {
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 820;
}

.text-link::after {
  margin-left: 5px;
  content: "→";
}

.account-layout,
.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.account-visual {
  position: relative;
  min-height: 430px;
}

.account-window {
  position: absolute;
  inset: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.account-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 900;
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.account-row strong {
  color: var(--ink);
}

.account-copy p,
.about-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-section {
  background: #fcfbfc;
}

.about-mark {
  display: grid;
  min-height: 390px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.about-mark img {
  width: min(300px, 70%);
}

.faq-list {
  max-width: 900px;
  margin: 52px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 820;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 780px;
  padding: 0 50px 24px 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cta-section {
  padding-block: 96px;
  border-top: 1px solid var(--line);
  background: #19171a;
  color: #fff;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.cta-copy p {
  margin: 18px 0 0;
  color: #bab5bb;
  line-height: 1.6;
}

.site-footer {
  padding: 64px 0 30px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, 0.75fr);
  gap: 70px;
}

.footer-brand p {
  max-width: 400px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.footer-column h2 {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.8rem;
}

.legal-hero {
  padding: 92px 0 62px;
  border-bottom: 1px solid var(--line);
  background: #faf9fa;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: 70px;
  padding-block: 70px 110px;
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.toc h2 {
  margin: 0 0 13px;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.toc a:hover {
  color: var(--pink);
}

.legal-content > p:first-child {
  margin-top: 0;
  color: #4d494e;
  font-size: 1.12rem;
  line-height: 1.78;
}

.legal-content section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:first-of-type {
  padding-top: 12px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  line-height: 1.76;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-callout {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--pink);
  border-radius: 0 10px 10px 0;
  background: var(--pink-soft);
  color: #5d3347;
  line-height: 1.65;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.support-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.support-card h2 {
  margin: 0;
  font-size: 1.12rem;
}

.support-card p,
.support-card li {
  color: var(--ink-soft);
  line-height: 1.65;
}

.support-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.support-contact h2,
.support-contact p {
  margin: 0;
}

.support-contact p {
  margin-top: 7px;
  color: var(--ink-soft);
}

body.support-dialog-open {
  overflow: hidden;
}

.support-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-large);
}

.support-dialog[open] {
  animation: support-dialog-in 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.support-dialog::backdrop {
  background: rgba(24, 20, 25, 0.58);
  backdrop-filter: blur(7px);
}

.support-dialog-shell {
  max-height: calc(100dvh - 42px);
  padding: 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.support-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.support-dialog-kicker {
  margin: 0 0 7px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support-dialog-header h2,
.support-dialog-header p {
  margin: 0;
}

.support-dialog-header h2 {
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1.12;
}

.support-dialog-header p:last-child {
  max-width: 520px;
  margin-top: 9px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.support-dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.support-form {
  display: grid;
  gap: 20px;
  padding-top: 24px;
}

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

.support-field-wide {
  grid-column: 1 / -1;
}

.support-field {
  display: grid;
  gap: 8px;
}

.support-field > span {
  font-size: 0.88rem;
  font-weight: 800;
}

.support-field input,
.support-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--ink);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.support-field input {
  min-height: 50px;
  padding: 0 15px;
}

.support-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  line-height: 1.55;
  resize: vertical;
}

.support-field input:focus,
.support-field textarea:focus {
  border-color: var(--pink);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(221, 42, 123, 0.1);
}

.support-attachment {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.support-attachment input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.support-attachment-button {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.support-attachment input:focus-visible + .support-attachment-button {
  outline: 3px solid rgba(30, 144, 255, 0.48);
  outline-offset: 4px;
}

.support-attachment-button:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
}

.support-attachment-button:active {
  transform: scale(0.98);
}

.support-file-name {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-form-note,
.support-form-status {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.support-form-note {
  color: var(--ink-faint);
}

.support-form-status:empty {
  display: none;
}

.support-form-status[data-type="error"] {
  color: var(--danger);
}

.support-form-status[data-type="success"] {
  color: var(--green);
}

.support-form-status[data-type="info"] {
  color: var(--purple);
}

.support-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
}

.support-form-actions .button:disabled {
  opacity: 0.62;
  cursor: wait;
}

@keyframes support-dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav > a:not(.button) {
    padding-inline: 6px;
    font-size: 0.8rem;
  }

  .format-float {
    display: none;
  }

  .hero-copy {
    width: 60%;
  }

  .hero-product {
    right: -18px;
    width: min(340px, 35vw);
  }
}

@media (max-width: 920px) {
  :root {
    --page: min(100% - 28px, 680px);
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav-shell {
    min-height: var(--header-height);
  }

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

  .header-actions > .language-switch,
  .header-actions > .button {
    display: none;
  }

  .js .menu-toggle {
    display: block;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    order: 3;
    padding: 0 0 14px;
  }

  .site-nav > a:not(.button) {
    display: block;
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .language-switch,
  .site-nav .button {
    display: inline-flex;
    margin-top: 10px;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: flex;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    display: block;
    padding-block: 64px 72px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-product {
    position: relative;
    top: auto;
    right: auto;
    width: min(330px, 78vw);
    margin: 56px auto 34px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-facts {
    display: none;
  }

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

  .format-layout,
  .trust-layout,
  .account-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .format-note {
    text-align: left;
  }

  .section {
    padding-block: 82px;
  }

  .section-header {
    display: block;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
    border-right: 0;
    border-bottom: 0;
  }

  .step:last-child {
    border-bottom: 1px solid var(--line-strong);
  }

  .step + .step {
    border-left: 0;
  }

  .step::before {
    margin-bottom: 32px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .toc {
    position: static;
  }

  .cta-layout {
    display: block;
  }

  .cta-layout .button {
    margin-top: 30px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

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

  .hero-facts {
    display: none;
  }

  .hero-product {
    width: min(310px, 82vw);
    margin: 42px auto 34px;
  }

  .phone-frame {
    padding: 7px;
    border-radius: 52px;
  }

  .phone-frame::before {
    border-radius: 48px;
  }

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

  .phone-nav {
    width: 34px;
    height: 34px;
  }

  .format-float {
    min-width: 0;
    padding: 8px;
  }

  .format-float div:last-child {
    display: none;
  }

  .float-pdf {
    left: -8px;
  }

  .float-image {
    right: -8px;
  }

  .float-media {
    left: 4px;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-index {
    margin-bottom: 30px;
  }

  .account-visual {
    min-height: 380px;
  }

  .account-window {
    inset: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom,
  .support-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-contact .button {
    width: 100%;
  }

  .support-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    margin: auto auto 8px;
    border-radius: 16px 16px 12px 12px;
  }

  .support-dialog-shell {
    max-height: calc(100dvh - 18px);
    padding: 20px;
  }

  .support-dialog-header {
    gap: 14px;
    padding-bottom: 18px;
  }

  .support-dialog-close {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .support-form {
    gap: 17px;
    padding-top: 20px;
  }

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

  .support-attachment {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-file-name {
    max-width: 100%;
  }

  .support-form-actions {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }

  .support-form-actions .button {
    width: 100%;
    min-width: 0;
  }

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

  .legal-layout {
    padding-top: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
