:root {
  color-scheme: dark;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f7f7fb;
  background: #090b12;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #090b12;
  --bg-soft: #0f121c;
  --surface: #141824;
  --surface-2: #1a1f2d;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f7fb;
  --muted: #a4a8b7;
  --muted-2: #7d8293;
  --purple: #7258ff;
  --purple-light: #a895ff;
  --lime: #bdfb73;
  --lime-dark: #17230e;
  --danger: #ff918d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(114, 88, 255, 0.09), transparent 35%),
    var(--bg);
  color: var(--text);
}

body,
button,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Manrope", "DM Sans", sans-serif;
}

::selection {
  background: var(--purple);
  color: white;
}

:focus-visible {
  outline: 3px solid rgba(189, 251, 115, 0.82);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

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

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(9, 11, 18, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--purple);
  box-shadow: 0 8px 24px rgba(114, 88, 255, 0.34);
}

.brand-mark__frame {
  position: absolute;
  inset: 8px;
  border: 2px solid white;
  border-radius: 5px;
}

.brand-mark__cut {
  position: absolute;
  top: 7px;
  left: 15px;
  width: 4px;
  height: 23px;
  border-radius: 999px;
  background: var(--lime);
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px var(--purple);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #c9ccd6;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.language-switcher {
  position: relative;
}

.language-switcher__button {
  display: inline-flex;
  min-height: 36px;
  max-width: 190px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px 0 13px;
  background: transparent;
  color: #b9bdca;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.language-switcher__button:hover,
.language-switcher__button[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.language-switcher__button > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-switcher__button small,
.language-switcher__list small {
  color: var(--muted-2);
  font-size: 0.59rem;
  letter-spacing: 0.08em;
}

.language-switcher__panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  right: 0;
  width: min(340px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 10px;
  background: rgba(15, 18, 28, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.language-switcher__search {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding-inline: 12px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.035);
}

.language-switcher__search:focus-within {
  border-color: rgba(168, 149, 255, 0.52);
}

.language-switcher__search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.language-switcher__search input::-webkit-search-cancel-button {
  filter: invert(1);
}

.language-switcher__list {
  display: grid;
  max-height: min(440px, 68vh);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  overflow-y: auto;
  margin-top: 8px;
  overscroll-behavior: contain;
}

.language-switcher__list a {
  display: grid;
  min-width: 0;
  min-height: 42px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 6px;
  align-items: center;
  border-radius: 10px;
  padding: 8px 9px;
  color: #c9ccd6;
  font-size: 0.72rem;
}

.language-switcher__list a > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-switcher__list a:hover,
.language-switcher__list a[aria-current="page"] {
  background: rgba(189, 251, 115, 0.08);
  color: var(--lime);
}

[dir="rtl"] .language-switcher__panel {
  right: auto;
  left: 0;
}

.nav-link:hover {
  color: white;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 23px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button--primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 10px 30px rgba(114, 88, 255, 0.25);
}

.button--primary:hover {
  background: #826aff;
  box-shadow: 0 13px 38px rgba(114, 88, 255, 0.34);
}

.button--lime {
  background: var(--lime);
  color: #14200d;
  box-shadow: 0 12px 35px rgba(189, 251, 115, 0.2);
}

.button--lime:hover {
  background: #cbff8f;
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #e8e9ee;
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button--wide {
  min-width: 220px;
}

.hero {
  position: relative;
  padding: 30px 0 30px;
  background:
    linear-gradient(180deg, rgba(13, 16, 26, 0.35) 0%, rgba(9, 11, 18, 0) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--one {
  top: 80px;
  left: -130px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(114, 88, 255, 0.15), transparent 68%);
}

.hero-glow--two {
  top: 220px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(189, 251, 115, 0.08), transparent 68%);
}

.hero-intro,
.hero-workbench,
.privacy-callout {
  position: relative;
  z-index: 1;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: end;
  text-align: left;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--compact {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.hero-copy h1 span {
  display: block;
  color: #afb3c0;
}

.hero-summary {
  min-width: 0;
  padding-bottom: 4px;
}

.hero-summary > p {
  max-width: 490px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-primary-cta {
  margin-bottom: 16px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 9px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #cdd0da;
  font-size: 0.79rem;
  font-weight: 600;
}

.hero-highlights span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(189, 251, 115, 0.7);
  content: "";
}

.hero-workbench {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.09fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.demo-card,
.uploader-card {
  position: relative;
  min-width: 0;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.demo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(155deg, rgba(114, 88, 255, 0.16), transparent 48%),
    #10131d;
}

.demo-card__glow {
  position: absolute;
  top: -50px;
  left: 35%;
  width: 260px;
  height: 180px;
  border-radius: 50%;
  background: rgba(119, 94, 255, 0.18);
  filter: blur(65px);
  pointer-events: none;
}

.demo-grid {
  position: relative;
  display: grid;
  height: 350px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.demo-pane {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.demo-pane--before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 45%),
    #ead9c7;
}

.demo-pane--after {
  background-color: #e6e7ea;
  background-image: linear-gradient(45deg, #cbd0d6 25%, transparent 25%),
    linear-gradient(-45deg, #cbd0d6 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #cbd0d6 75%),
    linear-gradient(-45deg, transparent 75%, #cbd0d6 75%);
  background-position:
    0 0,
    0 12px,
    12px -12px,
    -12px 0;
  background-size: 24px 24px;
}

.demo-label {
  position: absolute;
  z-index: 4;
  top: 14px;
  inset-inline-start: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(13, 16, 24, 0.72);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.demo-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.demo-art img {
  position: relative;
  z-index: 3;
  width: 126%;
  max-width: none;
  height: auto;
  margin-bottom: -2%;
  transform: translateX(-2%);
  filter: drop-shadow(0 24px 20px rgba(26, 21, 19, 0.2));
}

.demo-pane--after .demo-art img {
  filter: drop-shadow(0 18px 15px rgba(31, 32, 38, 0.18));
}

.demo-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(1px);
}

.demo-orb--one {
  top: 19%;
  left: -22%;
  width: 190px;
  height: 190px;
  background: #896bf4;
}

.demo-orb--two {
  right: -35%;
  bottom: 10%;
  width: 230px;
  height: 230px;
  background: #f6b36b;
}

.demo-floor {
  position: absolute;
  z-index: 2;
  right: -25%;
  bottom: -15%;
  left: -25%;
  height: 46%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #f8eadb, #e7cbb0);
}

.demo-divider {
  position: absolute;
  z-index: 8;
  top: 48%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 5px solid #10131d;
  border-radius: 50%;
  background: white;
  color: #151823;
  font-size: 1.15rem;
  transform: translate(-50%, -50%);
}

.demo-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 10px 7px 0;
  color: #b7bbc8;
  font-size: 0.77rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(189, 251, 115, 0.64);
}

.uploader-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--surface);
}

.uploader-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.uploader-card__header h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.privacy-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(189, 251, 115, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(189, 251, 115, 0.07);
  color: #cffa9c;
  font-size: 0.67rem;
  font-weight: 700;
}

.privacy-pill > span {
  font-size: 0.55rem;
}

.dropzone {
  display: flex;
  min-height: 280px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(168, 149, 255, 0.46);
  border-radius: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 25%, rgba(114, 88, 255, 0.12), transparent 38%),
    rgba(8, 10, 17, 0.48);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.dropzone:hover,
.dropzone--active {
  border-color: var(--purple-light);
  background:
    radial-gradient(circle at 50% 25%, rgba(114, 88, 255, 0.2), transparent 43%),
    rgba(10, 12, 20, 0.62);
}

.dropzone--active {
  transform: scale(1.01);
}

.upload-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(168, 149, 255, 0.24);
  border-radius: 19px;
  background: rgba(114, 88, 255, 0.16);
  color: #c8bdff;
}

.dropzone h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.dropzone p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.88rem;
}

.dropzone__button {
  min-height: 44px;
  margin-bottom: 13px;
  pointer-events: none;
}

.dropzone small {
  color: var(--muted-2);
  font-size: 0.71rem;
}

.uploader-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 13px;
  color: #858a9a;
  font-size: 0.71rem;
}

.uploader-trust span span {
  margin-right: 4px;
  color: var(--lime);
}

.processing-workspace {
  display: flex;
  flex: 1;
  flex-direction: column;
}

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

.preview-card {
  min-width: 0;
  margin: 0;
}

.preview-card figcaption {
  margin-bottom: 8px;
  color: #adb1bf;
  font-size: 0.72rem;
  font-weight: 700;
}

.preview-media {
  position: relative;
  display: flex;
  height: 205px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0e15;
}

.preview-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkerboard {
  background-color: #e8e9eb;
  background-image: linear-gradient(45deg, #ced1d5 25%, transparent 25%),
    linear-gradient(-45deg, #ced1d5 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ced1d5 75%),
    linear-gradient(-45deg, transparent 75%, #ced1d5 75%);
  background-position:
    0 0,
    0 10px,
    10px -10px,
    -10px 0;
  background-size: 20px 20px;
}

.preview-placeholder,
.processing-state {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  background: rgba(16, 18, 28, 0.88);
  color: white;
  text-align: center;
}

.preview-placeholder span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(114, 88, 255, 0.2);
  color: var(--purple-light);
}

.preview-placeholder p {
  margin: 0;
  color: #b8bcc9;
  font-size: 0.78rem;
}

.processing-state strong {
  margin: 15px 0 12px;
  font-size: 0.77rem;
}

.processing-state small {
  margin-top: 8px;
  color: #aeb2bf;
  font-size: 0.67rem;
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-track {
  width: min(150px, 90%);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--lime));
  transition: width 250ms ease;
}

.workspace-actions {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}

.workspace-actions [data-ready-actions],
.workspace-actions [data-done-actions] {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.processing-note {
  max-width: 390px;
  margin: 0;
  color: #8f94a4;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
}

.form-message {
  margin: 12px 0 0;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 0.77rem;
  line-height: 1.5;
}

.form-message--error {
  border: 1px solid rgba(255, 145, 141, 0.23);
  background: rgba(255, 99, 94, 0.08);
  color: #ffc1be;
}

.privacy-callout {
  display: flex;
  max-width: 820px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  color: #9da2b1;
  text-align: left;
}

.privacy-callout__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(189, 251, 115, 0.17);
  border-radius: 14px;
  background: rgba(189, 251, 115, 0.06);
  color: var(--lime);
}

.privacy-callout p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
}

.privacy-callout strong {
  color: #d9dce4;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.benefits-copy h2,
.faq-copy h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4.3vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.07;
}

.section-heading p,
.benefits-copy > p,
.faq-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.how-section {
  border-top: 1px solid var(--line);
  background: #0c0f17;
}

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

.step-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 31px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    #11151f;
}

.step-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(114, 88, 255, 0.08);
  content: "";
  filter: blur(5px);
}

.step-number {
  color: #666c7c;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.step-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin: 43px 0 25px;
  border: 1px solid rgba(168, 149, 255, 0.24);
  border-radius: 18px;
  background: rgba(114, 88, 255, 0.12);
  color: #b5a7ff;
  font-size: 1.25rem;
}

.step-card:nth-child(3) .step-icon {
  border-color: rgba(189, 251, 115, 0.18);
  background: rgba(189, 251, 115, 0.07);
  color: var(--lime);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.step-card p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.benefits-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 50%, rgba(114, 88, 255, 0.09), transparent 30%),
    var(--bg);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}

.benefits-copy {
  position: sticky;
  top: 60px;
  padding-top: 20px;
}

.benefits-copy h2 {
  max-width: 460px;
}

.benefits-copy > p {
  max-width: 460px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--lime);
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.benefit-card {
  display: flex;
  min-height: 190px;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(20, 24, 36, 0.68);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.benefit-card:hover {
  border-color: rgba(168, 149, 255, 0.26);
  transform: translateY(-3px);
}

.benefit-card:last-child {
  grid-column: 1 / -1;
  min-height: 140px;
}

.benefit-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: rgba(114, 88, 255, 0.12);
  color: var(--purple-light);
  font-size: 1.15rem;
}

.benefit-card h3 {
  margin: 4px 0 8px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #0c0f17;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.faq-copy {
  padding-top: 12px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  background: transparent;
  color: #e8e9ef;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.faq-item button:hover {
  color: white;
}

[dir="rtl"] .hero-intro,
[dir="rtl"] .privacy-callout,
[dir="rtl"] .faq-item button {
  text-align: right;
}

[dir="rtl"] .demo-divider span,
[dir="rtl"] .text-link > span,
[dir="rtl"] .header-nav .button span {
  transform: scaleX(-1);
}

[dir="rtl"] .uploader-trust span span {
  margin-right: 0;
  margin-left: 4px;
}

html[lang^="zh"] body {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
}

html[lang^="ja"] body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

html[lang^="hi"] body,
html[lang^="bn"] body {
  font-family: "Nirmala UI", "Noto Sans Devanagari", "Noto Sans Bengali", sans-serif;
}

html[lang^="mr"] body,
html[lang^="pa"] body,
html[lang^="te"] body,
html[lang^="ta"] body,
html[lang^="gu"] body,
html[lang^="kn"] body {
  font-family: "Nirmala UI", "Noto Sans", sans-serif;
}

html[lang^="gu"] h1,
html[lang^="gu"] h2,
html[lang^="gu"] h3,
html[lang^="gu"] .brand,
html[lang^="kn"] h1,
html[lang^="kn"] h2,
html[lang^="kn"] h3,
html[lang^="kn"] .brand {
  font-family: inherit;
}

html[lang^="ko"] body {
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

html[lang^="th"] body {
  font-family: Tahoma, "Leelawadee UI", "Noto Sans Thai", sans-serif;
}

html[lang^="ar"] body,
html[lang^="ur"] body,
html[lang^="fa"] body,
html[lang^="he"] body {
  font-family: Tahoma, "Segoe UI", "Noto Sans Arabic", sans-serif;
}

html[lang^="el"] body {
  font-family: "Segoe UI", "Noto Sans Greek", Arial, sans-serif;
}

html[lang^="bg"] body {
  font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
}

.faq-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-light);
  font-size: 1.25rem;
}

.faq-answer {
  padding: 0 0 24px;
  padding-inline-end: 56px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.final-cta {
  padding: 36px 0 100px;
  background: #0c0f17;
}

.final-cta__inner {
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border: 1px solid rgba(168, 149, 255, 0.18);
  border-radius: 30px;
  padding: 52px 58px;
  background:
    radial-gradient(circle at 85% 20%, rgba(189, 251, 115, 0.12), transparent 32%),
    radial-gradient(circle at 20% 100%, rgba(114, 88, 255, 0.2), transparent 40%),
    #151927;
}

.final-cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080a10;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-top: 60px;
  padding-bottom: 52px;
}

.brand--footer {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 8px;
}

.footer-links a {
  color: #a9adba;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: white;
}

.footer-languages {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  padding-bottom: 26px;
}

.footer-languages > p {
  margin: 0 0 14px;
  color: #858a98;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-language-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: #9da2b1;
  font-size: 0.7rem;
  line-height: 1;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.footer-language-links a:hover,
.footer-language-links a[aria-current="page"] {
  border-color: rgba(189, 251, 115, 0.3);
  background: rgba(189, 251, 115, 0.06);
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 28px;
}

.footer-bottom p {
  margin: 0;
  color: #656a79;
  font-size: 0.7rem;
}

.legal-page,
.contact-page,
.not-found {
  min-height: 70vh;
  padding: 100px 0 120px;
  background:
    radial-gradient(circle at 20% 15%, rgba(114, 88, 255, 0.1), transparent 28%),
    var(--bg);
}

.legal-page__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.legal-page__intro {
  position: sticky;
  top: 40px;
}

.breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--muted-2);
  font-size: 0.7rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-inline-end: 8px;
  color: #555b6c;
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.legal-page__intro h1,
.contact-copy h1,
.not-found h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.legal-page__intro p,
.contact-copy p,
.not-found p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-page__intro small {
  color: #696e7d;
  font-size: 0.7rem;
}

.legal-content {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 42px;
  background: rgba(20, 24, 36, 0.72);
}

.legal-content section + section {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 80px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 70px;
  background:
    linear-gradient(145deg, rgba(114, 88, 255, 0.1), transparent 50%),
    var(--surface);
}

.contact-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.contact-copy p {
  margin: 0;
}

.contact-action {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: rgba(8, 10, 16, 0.55);
}

.contact-action__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: rgba(114, 88, 255, 0.14);
  color: var(--purple-light);
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-action small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 0.68rem;
}

.contact-action a:not(.button) {
  color: #e7e8ee;
  font-weight: 700;
}

.contact-action .button {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.contact-note {
  grid-column: 1 / -1;
  margin: -28px 0 0;
  color: #727787;
  font-size: 0.72rem;
  text-align: center;
}

.not-found__inner {
  text-align: center;
}

.not-found__code {
  display: block;
  margin-bottom: 15px;
  color: var(--purple-light);
  font-family: "Manrope", sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.not-found h1 {
  margin-inline: auto;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.not-found p {
  margin-bottom: 30px;
}

@media (max-width: 1000px) {
  .hero {
    padding-top: 58px;
  }

  .hero-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .hero-summary > p {
    margin-inline: auto;
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-workbench {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .demo-card,
  .uploader-card {
    min-height: auto;
  }

  .demo-grid {
    height: 460px;
  }

  .demo-art img {
    width: 112%;
  }

  .dropzone {
    min-height: 350px;
  }

  .benefits-layout,
  .faq-layout,
  .legal-page__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefits-copy,
  .legal-page__intro {
    position: static;
  }

  .benefits-copy h2,
  .benefits-copy > p,
  .faq-copy {
    max-width: 650px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-note {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .header-nav {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .language-switcher__button {
    max-width: 112px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .language-switcher__panel {
    position: fixed;
    top: 74px;
    right: 14px;
    left: auto;
  }

  [dir="rtl"] .language-switcher__panel {
    right: auto;
    left: 14px;
  }

  .button--small {
    min-height: 39px;
    padding-inline: 14px;
    font-size: 0.77rem;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .hero-highlights {
    gap: 7px;
  }

  .hero-highlights span {
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .hero-workbench {
    margin-top: 32px;
  }

  .demo-card,
  .uploader-card {
    border-radius: 24px;
  }

  .demo-card {
    padding: 12px;
  }

  .demo-grid {
    height: 410px;
    gap: 6px;
  }

  .demo-pane {
    border-radius: 17px;
  }

  .demo-art img {
    width: 145%;
  }

  .demo-label {
    top: 10px;
    inset-inline-start: 10px;
    padding: 6px 9px;
    font-size: 0.6rem;
  }

  .demo-divider {
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .uploader-card {
    padding: 20px;
  }

  .uploader-card__header {
    align-items: center;
  }

  .privacy-pill {
    padding: 6px 8px;
    font-size: 0.61rem;
  }

  .dropzone {
    min-height: 360px;
    padding: 25px 16px;
  }

  .uploader-trust {
    flex-direction: column;
    gap: 7px;
  }

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

  .preview-media {
    height: 220px;
  }

  .workspace-actions {
    flex-direction: column;
  }

  .workspace-actions [data-ready-actions],
  .workspace-actions [data-done-actions] {
    width: 100%;
    flex-direction: column;
  }

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

  .privacy-callout {
    align-items: flex-start;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 250px;
  }

  .step-icon {
    margin-top: 34px;
  }

  .benefits-layout,
  .faq-layout {
    gap: 42px;
  }

  .benefit-card,
  .benefit-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .faq-item button {
    font-size: 0.92rem;
  }

  .final-cta {
    padding-bottom: 72px;
  }

  .final-cta__inner {
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 35px 28px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-main {
    padding-top: 48px;
    padding-bottom: 38px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
  }

  .legal-page,
  .contact-page,
  .not-found {
    padding: 72px 0 90px;
  }

  .legal-content {
    border-radius: 21px;
    padding: 27px 23px;
  }

  .contact-card {
    gap: 36px;
    border-radius: 24px;
    padding: 34px 24px;
  }
}

@media (max-width: 430px) {
  .brand > span:last-child {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button--small span {
    display: none;
  }

  .header-nav .button--small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
    line-height: 1;
  }

  .demo-grid {
    height: 340px;
  }

  .demo-art img {
    width: 165%;
  }

  .privacy-pill {
    display: none;
  }

  .uploader-card__header h2 {
    font-size: 1.3rem;
  }

  .contact-action {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-action a:not(.button) {
    overflow-wrap: anywhere;
  }
}

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

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