@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #172035;
  --muted: #65718a;
  --line: #e2eaf4;
  --surface: #ffffff;
  --soft-blue: #eef6ff;
  --blue: #486ce8;
  --blue-dark: #334fc0;
  --lilac: #f2efff;
  --mint: #e9faf5;
  --peach: #fff3e9;
  --shadow: 0 24px 70px rgba(53, 75, 115, 0.14);
  --shadow-soft: 0 16px 44px rgba(64, 84, 120, 0.1);
  --radius-lg: 36px;
  --radius-md: 24px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #fff;
  background: var(--blue);
}

a {
  color: inherit;
}

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

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 253, 255, 0.83);
  border-bottom: 1px solid rgba(218, 229, 241, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(79, 113, 193, 0.16);
}

.brand-soft {
  color: #7f8ca5;
  font-weight: 600;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.site-footer nav a {
  color: #65718a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--blue);
}

.nav-shell > .button {
  justify-self: end;
}

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

.language-button {
  min-width: 73px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  color: #4e5e79;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(66, 88, 130, 0.08);
  cursor: pointer;
  font: 700 11px "Manrope", sans-serif;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.language-button:hover {
  border-color: #cbd8e8;
  box-shadow: 0 12px 30px rgba(66, 88, 130, 0.14);
  transform: translateY(-2px);
}

.language-button-globe {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf2ff;
  border-radius: 50%;
  font-size: 11px;
}

.language-dialog {
  width: min(640px, calc(100vw - 30px));
  max-height: min(720px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dce6f2;
  border-radius: 26px;
  box-shadow: 0 32px 100px rgba(34, 51, 84, 0.25);
}

.language-dialog::backdrop {
  background: rgba(25, 34, 55, 0.28);
  backdrop-filter: blur(7px);
}

.language-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 27px 21px;
  border-bottom: 1px solid #e8edf4;
}

.language-dialog-kicker,
.language-dialog-header strong {
  display: block;
}

.language-dialog-kicker {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-dialog-header strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.language-dialog-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #71809a;
  background: #f4f7fb;
  border: 1px solid #e3e9f1;
  border-radius: 12px;
  cursor: pointer;
  font-size: 21px;
}

.language-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-height: 430px;
  padding: 21px 23px;
  overflow-y: auto;
}

.language-option {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 13px;
  color: #45536c;
  background: #f8faff;
  border: 1px solid #e7edf5;
  border-radius: 11px;
  cursor: pointer;
  font: 600 11px "DM Sans", sans-serif;
  text-align: start;
}

.language-option:hover,
.language-option.selected {
  color: #314ea9;
  background: #edf2ff;
  border-color: #bfcdf4;
}

.language-option small {
  color: #9aa6b8;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.language-option.selected::after {
  color: var(--blue);
  content: "✓";
  font-size: 10px;
}

.language-option.selected small {
  display: none;
}

.language-dialog-hint {
  margin: 0;
  padding: 15px 27px 19px;
  color: #8995a8;
  background: #f8fafd;
  border-top: 1px solid #e8edf4;
  font-size: 10px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.button-light {
  color: #33415c;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 26px rgba(66, 88, 130, 0.08);
}

.button-light:hover {
  box-shadow: 0 12px 30px rgba(66, 88, 130, 0.14);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(72, 108, 232, 0.26);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 36px rgba(72, 108, 232, 0.32);
}

.app-store-link {
  white-space: nowrap;
}

.ios-label,
.android-label {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 22px;
  padding: 0 7px;
  color: var(--blue-dark);
  background: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.android-label {
  min-width: 22px;
  color: #fff;
  background: var(--blue);
  font-size: 8px;
}

.button-dark {
  color: #fff;
  background: #182138;
  box-shadow: 0 16px 32px rgba(17, 28, 55, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #445576;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.text-link:hover span,
.button:hover span {
  transform: translateX(3px);
}

html[dir="rtl"] .text-link:hover span,
html[dir="rtl"] .button:hover span {
  transform: translateX(-3px);
}

html[dir="rtl"] .step-connector,
html[dir="rtl"] .locale-arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] .editor-window,
html[dir="rtl"] .localization-visual,
html[dir="rtl"] .drop-visual,
html[dir="rtl"] .export-visual {
  direction: ltr;
}

html[dir="rtl"] .store-shot,
html[dir="rtl"] .locale-card {
  direction: rtl;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 104px;
  background:
    radial-gradient(circle at 10% 15%, rgba(184, 222, 255, 0.45), transparent 24%),
    radial-gradient(circle at 93% 24%, rgba(207, 244, 233, 0.6), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

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

.hero-glow-one {
  top: 10%;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(227, 215, 255, 0.35);
}

.hero-glow-two {
  right: 5%;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: rgba(193, 237, 255, 0.35);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 62px;
}

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

.eyebrow,
.ollama-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: #50627f;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce8f5;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(61, 93, 139, 0.07);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #63d2b3;
  border: 2px solid #dff8f0;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(99, 210, 179, 0.15);
}

.hero h1 {
  max-width: 600px;
  margin: 25px 0 23px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lede {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.support-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 37px;
  color: #71809a;
  font-size: 12px;
  font-weight: 600;
}

.support-line .support-label {
  color: #99a5b7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-line i {
  width: 3px;
  height: 3px;
  background: #c3ccda;
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 565px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(108, 128, 171, 0.1);
  border-radius: 50%;
}

.visual-orbit-one {
  inset: -10px -24px 28px 30px;
}

.visual-orbit-two {
  inset: 35px 23px -20px -28px;
}

.editor-window {
  position: absolute;
  inset: 30px 0 38px 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(211, 223, 238, 0.96);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.editor-bar {
  height: 57px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  background: rgba(251, 253, 255, 0.95);
  border-bottom: 1px solid #edf1f6;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  background: #dfe6f1;
  border-radius: 50%;
}

.window-dots span:first-child {
  background: #ff9c9c;
}

.window-dots span:nth-child(2) {
  background: #ffd176;
}

.window-dots span:last-child {
  background: #7fddb9;
}

.editor-title {
  font-size: 12px;
  font-weight: 700;
}

.status-badge {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6e7d97;
  font-size: 9px;
  font-weight: 700;
}

.status-badge span {
  width: 6px;
  height: 6px;
  background: #62cfaa;
  border-radius: 50%;
}

.editor-body {
  height: calc(100% - 57px);
  display: grid;
  grid-template-columns: 82px 1fr;
}

.editor-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 22px 15px;
  background: #fbfcfe;
  border-right: 1px solid #edf1f6;
}

.editor-sidebar img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.sidebar-line {
  width: 38px;
  height: 6px;
  background: #e5eaf1;
  border-radius: 8px;
}

.sidebar-line.short {
  width: 26px;
}

.sidebar-line.active {
  background: #7893ee;
}

.sidebar-divider {
  width: 34px;
  height: 1px;
  margin: 3px 0;
  background: #e7ebf1;
}

.canvas {
  min-width: 0;
  padding: 18px 20px 22px;
  background:
    linear-gradient(90deg, rgba(217, 226, 239, 0.32) 1px, transparent 1px),
    linear-gradient(rgba(217, 226, 239, 0.32) 1px, transparent 1px),
    #f6f9fc;
  background-size: 18px 18px;
}

.canvas-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 16px;
  color: #77849b;
  font-size: 9px;
  font-weight: 700;
}

.canvas-chip {
  padding: 5px 8px;
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
}

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

.store-shot {
  position: relative;
  min-width: 0;
  height: 347px;
  padding: 20px 13px 0;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 12px 24px rgba(75, 91, 125, 0.12);
  text-align: center;
}

.store-shot p,
.store-shot strong {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.store-shot p {
  color: rgba(25, 33, 55, 0.68);
  font-weight: 600;
}

.store-shot strong {
  color: #1f2b47;
  font-size: 17px;
}

.shot-one {
  background: linear-gradient(160deg, #dff6ee, #cbe9fb);
}

.shot-two {
  background: linear-gradient(160deg, #f2e7ff, #ffdced);
}

.shot-three {
  background: linear-gradient(160deg, #fff0dc, #ffe0c5);
}

.phone {
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 74%;
  height: 264px;
  padding: 6px;
  background: #1c2538;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  box-shadow: 0 15px 30px rgba(39, 52, 78, 0.24);
  transform: translateX(-50%);
}

.phone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 9px;
  background: #1c2538;
  border-radius: 10px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 10px 10px;
  background: #f8f9fc;
  border-radius: 19px;
}

.mini-kicker {
  color: #9da7ba;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mini-title {
  width: 68%;
  height: 8px;
  margin-top: 5px;
  background: #323e5b;
  border-radius: 4px;
}

.mini-title.shorter {
  width: 48%;
}

.mini-card {
  width: 100%;
  height: 70px;
  margin-top: 12px;
  border-radius: 10px;
}

.mini-card + .mini-card {
  height: 54px;
  margin-top: 8px;
}

.mini-card.lavender {
  background: linear-gradient(135deg, #b9b4f7, #e3dcff);
}

.mini-card.mint {
  background: linear-gradient(135deg, #b8ead9, #e2f7ee);
}

.mini-card.peach {
  background: linear-gradient(135deg, #ffc8a7, #ffe6d0);
}

.mini-card.sky {
  height: 52px;
  background: linear-gradient(135deg, #b5d9fb, #e1f1ff);
}

.mini-chart {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 12px;
  padding: 12px 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(55, 73, 112, 0.07);
}

.mini-chart i {
  flex: 1;
  height: 45%;
  background: #a98ee9;
  border-radius: 4px 4px 2px 2px;
}

.mini-chart i:nth-child(2) {
  height: 75%;
}

.mini-chart i:nth-child(3) {
  height: 56%;
}

.mini-chart i:nth-child(4) {
  height: 90%;
}

.mini-chart i:nth-child(5) {
  height: 67%;
}

.mini-ring {
  width: 76px;
  height: 76px;
  margin: 18px auto 5px;
  border: 13px solid #a8d4f6;
  border-right-color: #5c92e6;
  border-radius: 50%;
  transform: rotate(25deg);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(48, 70, 106, 0.17);
  backdrop-filter: blur(12px);
  color: #33405c;
  font-size: 11px;
  font-weight: 700;
}

.floating-card small {
  display: block;
  margin-bottom: 2px;
  color: #9aa5b6;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
}

.translation-card {
  top: 6px;
  right: -27px;
  animation: float 5s ease-in-out infinite;
}

.translation-card b {
  margin-left: 11px;
  color: var(--blue);
  font-size: 10px;
}

.ollama-mark {
  background: #23304d;
}

.export-card {
  right: 22px;
  bottom: 4px;
  animation: float 5s 1s ease-in-out infinite;
}

.check-mark {
  background: #61cbaa;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.proof-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  position: relative;
  padding: 30px 34px;
  text-align: center;
}

.proof-grid > div + div::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.proof-grid span {
  color: #7a879d;
  font-size: 12px;
}

.section {
  padding: 125px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.overline {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.center-heading h2,
.localization-copy h2,
.privacy-inner h2,
.final-cta h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 385px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(215, 225, 236, 0.82);
  border-radius: var(--radius-md);
}

.feature-large {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: center;
  gap: 20px;
}

.feature-blue {
  background: var(--soft-blue);
}

.feature-lilac {
  background: var(--lilac);
}

.feature-mint {
  background: var(--mint);
}

.feature-peach {
  background: var(--peach);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 25px;
  margin-bottom: 24px;
  color: #7c8aa1;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(205, 218, 231, 0.7);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  letter-spacing: -0.045em;
}

.feature-card p {
  max-width: 460px;
  margin: 0;
  color: #67748a;
  font-size: 14px;
  line-height: 1.7;
}

.drop-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.drop-zone {
  width: 78%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #637697;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px dashed #9fb7dc;
  border-radius: 20px;
  box-shadow: 0 16px 35px rgba(68, 101, 150, 0.08);
}

.drop-plus {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 15px;
  box-shadow: 0 10px 22px rgba(72, 108, 232, 0.26);
  font-size: 27px;
  font-weight: 400;
}

.drop-zone strong {
  font-size: 12px;
}

.drop-zone small {
  margin-top: 5px;
  color: #a2aec1;
  font-size: 8px;
  letter-spacing: 0.05em;
}

.file-chip {
  position: absolute;
  padding: 9px 12px;
  color: #657591;
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(65, 89, 130, 0.1);
  font-size: 8px;
  font-weight: 700;
}

.file-chip::before {
  display: inline-block;
  width: 13px;
  height: 10px;
  margin-right: 7px;
  background: #bdd9f8;
  border-radius: 3px;
  vertical-align: -1px;
  content: "";
}

.file-one {
  top: 28px;
  left: 3px;
  transform: rotate(-7deg);
}

.file-two {
  right: -2px;
  bottom: 35px;
  transform: rotate(6deg);
}

.palette-visual {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

.palette-visual span {
  width: 78px;
  height: 94px;
  margin-left: -13px;
  background: var(--swatch);
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  box-shadow: 0 13px 28px rgba(68, 60, 119, 0.14);
  transform: rotate(-9deg);
}

.palette-visual span:nth-child(2) {
  transform: translateY(5px) rotate(-3deg);
}

.palette-visual span:nth-child(3) {
  transform: translateY(2px) rotate(4deg);
}

.palette-visual span:nth-child(4) {
  transform: rotate(10deg);
}

.devices-visual {
  height: 115px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  margin-bottom: 34px;
}

.device-shape {
  display: block;
  background: linear-gradient(155deg, #c7f0e5, #f4fffc);
  border: 4px solid #477266;
  box-shadow: 0 13px 24px rgba(50, 103, 87, 0.16);
}

.device-shape.tablet {
  width: 90px;
  height: 110px;
  border-radius: 15px;
}

.device-shape.mobile {
  width: 57px;
  height: 97px;
  border-radius: 17px;
}

.device-shape.watch {
  position: relative;
  width: 53px;
  height: 61px;
  margin-bottom: 8px;
  border-radius: 16px;
}

.device-shape.watch::before,
.device-shape.watch::after {
  position: absolute;
  left: 15px;
  width: 15px;
  height: 16px;
  background: #477266;
  content: "";
}

.device-shape.watch::before {
  top: -19px;
  border-radius: 4px 4px 0 0;
}

.device-shape.watch::after {
  bottom: -19px;
  border-radius: 0 0 4px 4px;
}

.export-visual {
  position: relative;
  min-height: 250px;
}

.folder {
  position: absolute;
  top: 46px;
  left: 50%;
  width: 225px;
  height: 165px;
  padding: 42px 23px 20px;
  background: linear-gradient(145deg, #ffc98f, #ffb76c);
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px 23px 23px 23px;
  box-shadow: 0 20px 36px rgba(158, 91, 37, 0.16);
  transform: translateX(-50%) rotate(2deg);
}

.folder::before {
  position: absolute;
  top: -14px;
  left: 13px;
  width: 84px;
  height: 24px;
  background: #ffc489;
  border-radius: 9px 9px 0 0;
  content: "";
}

.folder-back {
  top: 27px;
  background: #ffe0bb;
  transform: translateX(-50%) rotate(-5deg);
}

.folder span {
  display: block;
  margin-bottom: 17px;
  color: #7c4927;
  font-size: 11px;
  font-weight: 800;
}

.folder i {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 35px;
  margin-right: 4px;
  color: #b96d38;
  background: rgba(255, 255, 255, 0.67);
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.zip-badge {
  position: absolute;
  right: 21px;
  bottom: 13px;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 17px;
  box-shadow: 0 12px 26px rgba(72, 108, 232, 0.22);
  font-size: 9px;
  font-weight: 800;
}

.localization-section {
  padding: 25px 0 125px;
}

.localization-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  padding: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(180, 220, 255, 0.56), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(208, 194, 255, 0.35), transparent 29%),
    #eef4ff;
  border: 1px solid #dce6f6;
  border-radius: var(--radius-lg);
}

.ollama-pill {
  color: #4c5c78;
  background: rgba(255, 255, 255, 0.66);
}

.ollama-pill > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1d2942;
  border-radius: 7px;
  font-size: 9px;
}

.localization-copy h2 {
  margin-top: 26px;
  font-size: clamp(38px, 4vw, 55px);
}

.localization-copy > p {
  margin: 22px 0 25px;
  color: #64718a;
  font-size: 15px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4a5871;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.check-list li > span:first-child {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #347f6b;
  background: #d5f3e9;
  border-radius: 50%;
  font-size: 10px;
}

.localization-visual {
  align-self: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(211, 223, 240, 0.92);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(65, 92, 136, 0.14);
  backdrop-filter: blur(12px);
  transform: rotate(1deg);
}

.locale-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #62718b;
  font-size: 9px;
  font-weight: 700;
}

.locale-source,
.locale-target {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  background: #f6f8fc;
  border: 1px solid #e7ecf3;
  border-radius: 9px;
}

.locale-source i,
.locale-target i {
  width: 7px;
  height: 7px;
  background: #7e94e8;
  border-radius: 50%;
}

.locale-target i {
  background: #61cbaa;
}

.locale-arrow {
  color: #a2adbd;
}

.locale-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.locale-card {
  position: relative;
  min-height: 145px;
  padding: 19px;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(68, 88, 122, 0.06);
}

.locale-code {
  display: inline-flex;
  padding: 4px 7px;
  color: #71809a;
  background: #f1f4f8;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.locale-card p {
  margin: 12px 0 14px;
  color: #5c6b83;
  font-size: 12px;
  line-height: 1.4;
}

.locale-card p strong {
  color: #273652;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.locale-card small {
  color: #a0aabb;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.locale-card small span {
  color: #4caf91;
}

.locale-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  padding: 13px;
  background: #25314d;
  border-radius: 13px;
  box-shadow: 0 12px 25px rgba(34, 47, 76, 0.2);
}

.locale-progress > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #34415e;
  border-radius: 9px;
}

.locale-progress > span i {
  width: 9px;
  height: 9px;
  background: #65d2af;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(101, 210, 175, 0.12);
}

.locale-progress p {
  margin: 0;
}

.locale-progress strong,
.locale-progress small {
  display: block;
}

.locale-progress strong {
  color: #fff;
  font-size: 9px;
}

.locale-progress small {
  margin-top: 2px;
  color: #98a5ba;
  font-size: 7px;
}

.locale-progress b {
  color: #67d4b2;
  font-size: 10px;
}

.workflow-section {
  padding-top: 10px;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.center-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.steps article {
  min-height: 270px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--blue);
  background: #edf2ff;
  border-radius: 16px;
  font-size: 22px;
}

.steps article:nth-of-type(2) .step-icon {
  color: #9b67c4;
  background: #f5edff;
}

.steps article:nth-of-type(3) .step-icon {
  color: #388c74;
  background: #e5f8f1;
}

.step-number {
  color: #9aa6b8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.steps h3 {
  margin: 8px 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.step-connector {
  color: #b0bbcb;
  font-size: 24px;
}

.privacy-banner {
  padding: 0 0 125px;
}

.privacy-inner {
  display: grid;
  grid-template-columns: auto 1.1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px 42px;
  background: #f0faf7;
  border: 1px solid #d8eee7;
  border-radius: 24px;
}

.privacy-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #378d74;
  background: #d9f3ea;
  border-radius: 15px;
  font-size: 24px;
}

.privacy-inner .overline {
  color: #398971;
}

.privacy-inner h2 {
  font-size: 24px;
}

.privacy-inner > p {
  margin: 0;
  color: #607a72;
  font-size: 13px;
  line-height: 1.65;
}

.privacy-inner .text-link {
  color: #327a65;
  white-space: nowrap;
}

.final-cta {
  padding: 95px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 141, 241, 0.24), transparent 28%),
    radial-gradient(circle at 80% 85%, rgba(87, 210, 178, 0.18), transparent 30%),
    #172139;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.final-cta img {
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta .overline {
  color: #8ea7ff;
}

.final-cta h2 {
  font-size: 42px;
}

.final-cta p:last-child {
  margin: 13px 0 0;
  color: #aab6cb;
}

.site-footer {
  padding: 35px 0;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  font-size: 14px;
}

.footer-grid > p {
  color: #8a96aa;
  font-size: 12px;
}

.copyright {
  justify-self: end;
}

.document-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(207, 230, 255, 0.65), transparent 25%),
    radial-gradient(circle at 90% 30%, rgba(220, 245, 237, 0.6), transparent 24%),
    #f8fbff;
}

.document-main {
  position: relative;
  min-height: 80vh;
  padding: 82px 24px 110px;
  overflow: hidden;
}

.document-glow {
  position: absolute;
  top: 90px;
  left: 50%;
  width: 900px;
  height: 260px;
  background: rgba(213, 224, 255, 0.35);
  border-radius: 50%;
  filter: blur(80px);
  transform: translateX(-50%);
}

.document-card {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dde7f2;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.document-hero {
  padding: 66px 72px 56px;
  background:
    radial-gradient(circle at 90% 10%, rgba(190, 226, 255, 0.48), transparent 32%),
    linear-gradient(145deg, #f8fbff, #f1f6ff);
  border-bottom: 1px solid #e5edf5;
}

.document-hero h1 {
  max-width: 690px;
  margin: 27px 0 19px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.document-hero > p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: #337a67;
  background: #e4f7f0;
  border: 1px solid #cdeade;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-pill span {
  font-size: 15px;
}

.document-content {
  padding: 24px 72px 56px;
}

.document-content section {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 25px;
  padding: 42px 0;
  border-bottom: 1px solid #edf1f6;
}

.document-content section:last-child {
  border-bottom: 0;
}

.document-index {
  width: 42px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #7b8ca8;
  background: #f1f5fb;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.document-content h2 {
  margin: 0 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.document-content p,
.document-content ul,
.setup-steps {
  margin: 0;
  color: #68768d;
  font-size: 14px;
  line-height: 1.8;
}

.document-content ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.document-content li::marker {
  color: #6684e6;
}

.document-content code {
  padding: 3px 7px;
  color: #3e5481;
  background: #edf3ff;
  border: 1px solid #dce7fb;
  border-radius: 7px;
  font-size: 0.88em;
}

.setup-steps {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  counter-reset: setup;
}

.setup-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  padding: 16px 18px 16px 48px;
  background: #f8faff;
  border: 1px solid #e7edf6;
  border-radius: 13px;
  counter-increment: setup;
}

.setup-steps li::before {
  position: absolute;
  top: 16px;
  left: 17px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  content: counter(setup);
  font-size: 9px;
  font-weight: 800;
}

.setup-steps strong {
  color: #33415a;
  font-size: 12px;
}

.setup-steps span {
  font-size: 12px;
  line-height: 1.65;
}

.document-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 36px 36px;
  padding: 28px 34px;
  background: #eef4ff;
  border: 1px solid #dce7fb;
  border-radius: 20px;
}

.document-cta strong,
.document-cta > div span {
  display: block;
}

.document-cta strong {
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.document-cta > div span {
  color: #72809a;
  font-size: 12px;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 32px 36px 8px;
}

.privacy-summary > div {
  padding: 21px;
  background: #f2faf7;
  border: 1px solid #dcefe8;
  border-radius: 15px;
}

.privacy-summary strong,
.privacy-summary span {
  display: block;
}

.privacy-summary strong {
  margin-bottom: 6px;
  color: #377b68;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.privacy-summary span {
  color: #70867f;
  font-size: 10px;
  line-height: 1.5;
}

.privacy-cta {
  background: #eff9f6;
  border-color: #dcefe8;
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 740px;
    text-align: center;
    margin: 0 auto;
  }

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

  .hero-actions,
  .support-line {
    justify-content: center;
  }

  .hero-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

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

  .feature-card {
    min-height: 520px;
  }

  .feature-lilac,
  .feature-mint {
    min-height: 385px;
  }

  .localization-card {
    grid-template-columns: 1fr;
  }

  .localization-copy {
    max-width: 720px;
  }

  .privacy-inner {
    grid-template-columns: auto 1fr 1fr;
  }

  .privacy-inner .text-link {
    grid-column: 2;
  }

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

  .footer-grid > p:first-of-type {
    display: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .nav-shell {
    min-height: 69px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 14px;
  }

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

  .nav-links {
    display: none;
  }

  .header-actions > .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
  }

  .header-actions > .button-light {
    display: none;
  }

  .language-button {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .language-button [data-language-code] {
    display: none;
  }

  .language-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 55vh;
  }

  .hero {
    padding: 68px 0 75px;
  }

  .hero h1 {
    font-size: clamp(41px, 13vw, 58px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .support-line {
    gap: 8px;
  }

  .support-line i {
    display: none;
  }

  .support-line .support-label {
    width: 100%;
  }

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

  .editor-window {
    inset: 20px -70px 25px -45px;
    transform: scale(0.83) rotate(1.5deg);
  }

  .translation-card {
    top: -2px;
    right: 0;
  }

  .export-card {
    right: 5px;
    bottom: -5px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .proof-grid > div {
    padding: 19px;
  }

  .proof-grid > div + div::before {
    top: 0;
    right: 20%;
    bottom: auto;
    left: 20%;
    width: auto;
    height: 1px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

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

  .feature-card {
    min-height: auto;
    padding: 28px;
  }

  .feature-large {
    min-height: 570px;
  }

  .feature-lilac,
  .feature-mint {
    min-height: 385px;
  }

  .localization-section {
    padding-bottom: 90px;
  }

  .localization-card {
    width: calc(100% - 20px);
    gap: 50px;
    padding: 42px 22px;
    border-radius: 28px;
  }

  .localization-copy h2 {
    font-size: 39px;
  }

  .localization-visual {
    padding: 15px;
  }

  .locale-toolbar {
    grid-template-columns: 1fr;
  }

  .locale-arrow {
    display: none;
  }

  .locale-cards {
    gap: 7px;
  }

  .locale-card {
    min-height: 136px;
    padding: 14px;
  }

  .locale-progress {
    gap: 8px;
  }

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

  .step-connector {
    display: none;
  }

  .steps article {
    min-height: 245px;
  }

  .step-icon {
    margin-bottom: 30px;
  }

  .privacy-banner {
    padding-bottom: 90px;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .privacy-inner .text-link {
    grid-column: auto;
  }

  .final-cta {
    padding: 75px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta img {
    width: 96px;
    margin: 0 auto;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .final-cta-actions {
    justify-self: center;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-grid > p:first-of-type {
    display: block;
  }

  .site-footer nav {
    gap: 22px;
  }

  .copyright {
    justify-self: auto;
  }

  .document-main {
    padding: 45px 15px 75px;
  }

  .document-card {
    border-radius: 24px;
  }

  .document-hero {
    padding: 44px 28px 38px;
  }

  .document-hero h1 {
    font-size: 39px;
  }

  .document-content {
    padding: 12px 28px 36px;
  }

  .document-content section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 32px 0;
  }

  .setup-steps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .document-cta {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 18px 18px;
    padding: 25px;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
    padding: 24px 20px 0;
  }
}

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

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

@media (max-width: 520px) {
  .header-actions > .button {
    display: none;
  }

  .nav-shell {
    gap: 12px;
  }

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