@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page: #05090a;
  --page-soft: #091011;
  --surface: #0c1314;
  --surface-raised: #11191a;
  --surface-hover: #152021;
  --ink: #f6f7f2;
  --muted: #a8b4b1;
  --muted-strong: #cad2cf;
  --mint: #83e7c3;
  --mint-bright: #9af1d2;
  --mint-deep: #143d35;
  --yellow: #ffd66b;
  --danger: #ff8b76;
  --line: rgba(178, 226, 211, 0.18);
  --line-strong: rgba(157, 235, 209, 0.42);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --container: min(1420px, calc(100% - 64px));
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(76, 177, 146, 0.09), transparent 25rem),
    var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--mint);
  color: #07100f;
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 10, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 231, 195, 0.42);
  border-radius: 12px;
  background: #060a0b;
  color: var(--yellow);
  box-shadow: 0 0 30px rgba(131, 231, 195, 0.08);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a,
.footer-links a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

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

.button-primary {
  background: var(--mint);
  color: #07100f;
  box-shadow: 0 18px 46px rgba(91, 217, 174, 0.16);
}

.button-primary:hover {
  background: var(--mint-bright);
  box-shadow: 0 20px 58px rgba(91, 217, 174, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(131, 231, 195, 0.06);
  color: var(--mint-bright);
}

.button-secondary:hover {
  background: rgba(131, 231, 195, 0.12);
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(154, 241, 210, 0.9);
  outline-offset: 4px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(620px, 1.17fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}

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

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.25rem, 6.6vw, 7.35rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--mint);
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.3vw, 1.26rem);
  line-height: 1.7;
}

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

.text-link {
  color: var(--mint-bright);
  font-weight: 750;
}

.product-window {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 32%),
    #091011;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-window::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 80%;
  border-radius: 50%;
  background: rgba(131, 231, 195, 0.08);
  filter: blur(70px);
  pointer-events: none;
}

.window-bar {
  position: relative;
  z-index: 1;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.window-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #060a0b;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.63rem;
}

.window-controls {
  display: flex;
  gap: 16px;
  margin-left: auto;
  color: #8a9693;
}

.window-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.08fr 0.82fr;
  gap: 14px;
  padding: 16px;
}

.workspace-column {
  min-width: 0;
  min-height: 284px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.workspace-column h3,
.review-panel h3 {
  margin: 0 0 18px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.file-sheet {
  position: relative;
  width: 72px;
  height: 88px;
  margin: 16px auto 18px;
  border-radius: 7px;
  background: #f6f7f2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.file-sheet::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 4px;
  background: #cfd5d3;
  box-shadow: 0 10px 0 #dfe3e1;
}

.file-sheet strong {
  position: absolute;
  right: -10px;
  bottom: 13px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #df593b;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.file-name {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 750;
  word-break: break-word;
}

.file-meta {
  margin: 4px 0 16px;
  color: var(--muted);
  text-align: center;
  font-size: 0.72rem;
}

.local-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
}

.local-status svg {
  width: 16px;
  height: 16px;
}

.language-list {
  display: grid;
  gap: 9px;
}

.language-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.73rem;
}

.language-code {
  color: var(--muted);
  font-size: 0.65rem;
}

.language-check {
  color: var(--mint);
  font-weight: 900;
}

.review-ring {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin: 12px auto 20px;
  border: 8px solid rgba(131, 231, 195, 0.14);
  border-top-color: var(--mint);
  border-right-color: var(--mint);
  border-bottom-color: var(--mint);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 650;
}

.review-copy {
  margin: 0;
  color: var(--mint);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 750;
}

.review-subcopy {
  margin: 3px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.69rem;
}

.review-panel {
  position: relative;
  z-index: 1;
  margin: 0 16px 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.review-panel h3 {
  margin: 0;
}

.review-complete {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 0.74rem;
}

.review-complete svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(131, 231, 195, 0.1);
  color: var(--mint);
}

.flow-line {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 26%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--mint), transparent);
  filter: drop-shadow(0 0 8px rgba(131, 231, 195, 0.88));
  pointer-events: none;
}

.flow-line::before,
.flow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid var(--page);
  border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 16px var(--mint);
  transform: translateY(-50%);
}

.flow-line::before {
  left: 0;
}

.flow-line::after {
  right: 0;
}

.proof {
  padding: 62px 0 72px;
  border-bottom: 1px solid var(--line);
}

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

.proof-item {
  min-height: 170px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-number {
  display: block;
  margin-bottom: 22px;
  color: var(--mint);
  font-family: var(--display);
  font-size: 0.95rem;
}

.proof-item h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.36rem;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.proof-item p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 62px;
}

.section-heading h2,
.download-copy h2,
.faq h2,
.support-hero h1,
.support-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.85rem, 5.2vw, 5.6rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.workflow {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(131, 231, 195, 0.035), transparent),
    var(--page);
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  padding-top: 10px;
}

.workflow-rail::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 11%;
  width: 78%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), rgba(131, 231, 195, 0.28), var(--mint));
  box-shadow: 0 0 22px rgba(131, 231, 195, 0.2);
}

.workflow-step {
  position: relative;
  z-index: 1;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-number {
  color: var(--ink);
  font-family: var(--display);
  font-size: 4.8rem;
  font-weight: 620;
  letter-spacing: -0.08em;
  line-height: 1;
}

.step-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: var(--page);
  color: var(--ink);
  box-shadow:
    0 0 0 9px rgba(131, 231, 195, 0.035),
    0 0 28px rgba(131, 231, 195, 0.16);
}

.step-icon svg {
  width: 31px;
  height: 31px;
}

.workflow-step h3 {
  margin: 28px 0 8px;
  font-family: var(--display);
  font-size: 1.52rem;
  letter-spacing: -0.04em;
}

.workflow-step p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
}

.tester {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 58%, rgba(131, 231, 195, 0.06), transparent 25rem),
    var(--page-soft);
}

.tester .section-heading {
  margin-bottom: 44px;
}

.tester-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tester-input,
.tester-output {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
}

.tester-input {
  border-right: 1px solid var(--line);
}

.drop-zone {
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed rgba(154, 241, 210, 0.38);
  border-radius: 16px;
  background: rgba(131, 231, 195, 0.025);
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.drop-zone:hover,
.drop-zone.is-dragging {
  border-color: var(--mint);
  background: rgba(131, 231, 195, 0.07);
}

.drop-zone svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--mint);
}

.drop-zone strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
}

.drop-zone span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.85rem;
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-list {
  margin-top: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.file-item span:first-child {
  max-width: 70%;
  color: var(--muted-strong);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sample-button {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}

.field-group {
  margin-top: 32px;
}

.field-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.field-header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.lang-count {
  color: var(--muted);
  font-size: 0.74rem;
}

.lang-actions {
  display: flex;
  gap: 10px;
}

.lang-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-actions button:disabled {
  color: #53615e;
  cursor: default;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.language-option {
  position: relative;
}

.language-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.language-option span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.012);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 650;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.language-option span::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid #61706c;
  border-radius: 4px;
}

.language-option input:checked + span {
  border-color: var(--mint);
  background: rgba(131, 231, 195, 0.07);
  color: var(--ink);
}

.language-option input:checked + span::before {
  border-color: var(--mint);
  background:
    linear-gradient(135deg, transparent 46%, #07100f 46% 55%, transparent 55%) 3px 7px / 6px 6px no-repeat,
    linear-gradient(45deg, transparent 43%, #07100f 43% 56%, transparent 56%) 7px 5px / 8px 8px no-repeat,
    var(--mint);
}

.language-option input:focus-visible + span {
  outline: 3px solid rgba(154, 241, 210, 0.9);
  outline-offset: 3px;
}

.tester-run {
  width: 100%;
  margin-top: 26px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.privacy-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--mint);
}

.advanced-controls {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.advanced-controls summary {
  padding: 16px 0 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.advanced-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.advanced-grid label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.advanced-grid select,
.advanced-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0a1112;
  color: var(--ink);
}

.advanced-grid select {
  height: 44px;
  padding: 0 12px;
}

.advanced-grid textarea {
  min-height: 76px;
  padding: 12px;
  resize: vertical;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}

.progress-step {
  position: relative;
  padding-top: 30px;
  color: var(--muted);
  font-size: 0.7rem;
}

.progress-step::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: var(--surface);
}

.progress-step::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 19px;
  width: calc(100% - 19px);
  height: 1px;
  background: var(--line);
}

.progress-step:last-child::after {
  display: none;
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--ink);
}

.progress-step.is-complete::before {
  background: var(--mint);
  box-shadow: inset 0 0 0 5px var(--surface);
}

.progress-step.is-complete::after {
  background: var(--mint);
}

.status-card {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

.status-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.progress {
  height: 3px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
  transition: width 320ms ease;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.result-card {
  min-width: 0;
  padding: 20px 18px 20px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-card:nth-child(2n) {
  padding-right: 0;
  padding-left: 18px;
  border-right: 0;
}

.result-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.result-card h4 {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.55;
}

.qa-list {
  display: grid;
  margin-top: 18px;
}

.qa-list div {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.qa-list div:last-child {
  border-bottom: 0;
}

.text-preview {
  max-height: 158px;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #070c0d;
  color: #aebbb7;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  line-height: 1.55;
  overflow: auto;
  white-space: pre-wrap;
}

.output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

#translateResult .result-grid {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.download {
  padding: 118px 0 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 28%, rgba(131, 231, 195, 0.09), transparent 25rem),
    var(--page);
}

.download-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
  padding-bottom: 108px;
}

.download-copy h2 {
  max-width: 660px;
}

.download-copy > p {
  max-width: 580px;
  margin: 25px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.download-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.download-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.verified-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.verified-line svg {
  width: 30px;
  height: 30px;
  padding: 5px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  color: var(--mint);
}

.download-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.012);
  box-shadow: var(--shadow);
}

.package-info,
.verification {
  min-width: 0;
  padding: clamp(26px, 3vw, 40px);
}

.package-info {
  border-right: 1px solid var(--line);
}

.download-panel h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.package-list {
  display: grid;
  gap: 22px;
}

.package-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}

.package-row svg {
  width: 25px;
  height: 25px;
  color: var(--mint);
}

.package-row strong,
.package-row span {
  display: block;
}

.package-row strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.package-row span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.verification p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checksum-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.checksum-box code {
  min-width: 0;
  color: var(--muted-strong);
  font-family: var(--body);
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
}

.copy-button svg {
  width: 16px;
  height: 16px;
}

.verification .text-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
}

.faq {
  padding: 76px 0 100px;
  border-top: 1px solid var(--line);
}

.faq h2 {
  margin-bottom: 34px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

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

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

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 580;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--mint);
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-item[open] summary {
  color: var(--mint-bright);
}

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

.faq-answer {
  max-width: 900px;
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 48px 0 54px;
  border-top: 1px solid rgba(255, 214, 107, 0.25);
  background: #040708;
}

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

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

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 650;
}

.footer-contact {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 700;
}

.support-page {
  background:
    radial-gradient(circle at 80% 8%, rgba(76, 177, 146, 0.08), transparent 28rem),
    var(--page);
}

.support-main {
  min-height: 70vh;
}

.support-hero {
  padding: 110px 0 92px;
  border-bottom: 1px solid var(--line);
}

.support-hero h1 {
  max-width: 1000px;
}

.support-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.support-section {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.support-section h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.support-copy {
  max-width: 820px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.support-card {
  padding: 30px;
  background: var(--page);
}

.support-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.support-card p,
.support-card li {
  color: var(--muted);
  font-size: 0.9rem;
}

.support-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy-wrap {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.policy-header {
  margin-bottom: 50px;
}

.policy-header h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.policy-header p {
  margin: 18px 0 0;
  color: var(--muted);
}

.policy-content {
  border-top: 1px solid var(--line-strong);
}

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

.policy-content h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1240px) {
  :root {
    --container: min(1120px, calc(100% - 48px));
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 10vw, 7rem);
  }

  .product-window {
    max-width: 980px;
  }

  .desktop-nav {
    gap: 22px;
  }

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

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

  .download-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 36px;
    align-items: start;
  }

  .download-copy h2,
  .download-copy > p {
    grid-column: 1;
  }

  .download-actions,
  .download-meta,
  .verified-line {
    grid-column: 2;
  }

  .download-actions {
    grid-row: 1 / span 2;
    margin-top: 0;
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
    --container: min(100% - 36px, 820px);
  }

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

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

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - var(--header-height));
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 30px 18px;
    background: var(--page);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav a {
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 580;
  }

  .mobile-nav .button {
    margin-top: 18px;
    border-bottom: 0;
    font-family: var(--body);
    font-size: 0.92rem;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 14vw, 6rem);
  }

  .window-workspace {
    grid-template-columns: 1fr 1fr;
  }

  .workspace-column:last-child {
    grid-column: 1 / -1;
    min-height: 235px;
  }

  .flow-line {
    display: none;
  }

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

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

  .proof-item:first-child {
    padding-left: 30px;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .workflow-rail {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .workflow-rail::before {
    top: 54px;
    bottom: 54px;
    left: 38px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--mint), rgba(131, 231, 195, 0.2), var(--mint));
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 92px 1fr;
    column-gap: 26px;
  }

  .step-top {
    grid-row: 1 / span 2;
  }

  .step-number {
    display: none;
  }

  .workflow-step h3 {
    align-self: end;
    margin-top: 0;
  }

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

  .tester-input {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .download-copy {
    display: block;
  }

  .download-actions {
    justify-content: flex-start;
    margin-top: 28px;
  }

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

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    align-items: start;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 20px;
  }

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

  .window-workspace {
    grid-template-columns: 1fr;
  }

  .workspace-column {
    min-height: 230px;
  }

  .workspace-column:last-child {
    grid-column: auto;
  }

  .review-panel {
    display: none;
  }

  .proof {
    padding: 18px 0 32px;
  }

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

  .proof-item,
  .proof-item:first-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .proof-number {
    margin-bottom: 12px;
  }

  .section,
  .download {
    padding-top: 84px;
  }

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

  .section-heading h2,
  .download-copy h2,
  .support-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .workflow-step {
    grid-template-columns: 72px 1fr;
    column-gap: 18px;
  }

  .step-icon {
    width: 64px;
    height: 64px;
  }

  .workflow-rail::before {
    left: 31px;
  }

  .tester-input,
  .tester-output {
    padding: 24px 18px;
  }

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

  .result-card,
  .result-card:nth-child(2n) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-card:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .download-grid {
    padding-bottom: 78px;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .package-info {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .checksum-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq {
    padding-bottom: 76px;
  }

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

  .footer-right {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 20px;
  }

  .support-hero {
    padding: 72px 0 64px;
  }

  .support-section {
    padding: 64px 0;
  }
}

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

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