:root {
  --bg: #FBFAF7;
  --bg-alt: #F5F3ED;
  --surface: #FFFFFF;
  --surface-2: #FAF8F2;

  --ink: #0E0F12;
  --ink-2: #1F2024;
  --muted: #5C5F66;
  --muted-2: #8A8D94;
  --muted-3: #B9BAC0;

  --line: #E9E7DF;
  --line-2: #ECEBE3;
  --line-strong: #D9D7CD;

  --accent: #5B5BD6;
  --accent-2: #7C7BE6;
  --accent-soft: rgba(91, 91, 214, 0.08);
  --accent-soft-2: rgba(91, 91, 214, 0.14);

  --good: #10A56C;
  --bad: #D14545;

  --shadow-sm: 0 1px 2px rgba(14, 15, 18, 0.04), 0 0 0 1px rgba(14, 15, 18, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(14, 15, 18, 0.06), 0 0 0 1px rgba(14, 15, 18, 0.05);
  --shadow-lg: 0 24px 64px -16px rgba(14, 15, 18, 0.16), 0 8px 24px -8px rgba(14, 15, 18, 0.08), 0 0 0 1px rgba(14, 15, 18, 0.04);

  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;

  --container: 1200px;
  --header-h: 64px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
em { font-style: italic; font-family: var(--font-serif); font-weight: 400; }

::selection { background: var(--ink); color: var(--bg); }

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.display {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.display em {
  font-size: 1.04em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
}
.h1 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; font-size: 1.04em; }
.h2 em {
  font-size: 1.04em;
}
.accent-text { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--muted-3);
}

.btn {
  --pad-y: 12px;
  --pad-x: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 10px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, box-shadow .25s;
  white-space: nowrap;
  letter-spacing: -0.005em;
  user-select: none;
}
.btn--sm { --pad-y: 9px; --pad-x: 14px; font-size: 13.5px; border-radius: 9px; }
.btn--lg { --pad-y: 15px; --pad-x: 22px; font-size: 15.5px; border-radius: 12px; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.08) inset, 0 1px 2px rgba(14,15,18,0.2), 0 6px 14px -6px rgba(14,15,18,0.4);
}
.btn--primary:hover { background: #1F2024; transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line-strong), 0 1px 2px rgba(14,15,18,0.04);
}
.btn--secondary:hover { background: #fff; box-shadow: 0 0 0 1px var(--ink), 0 1px 2px rgba(14,15,18,0.06); }

.btn--ghost {
  color: var(--ink-2);
}
.btn--ghost:hover { background: var(--accent-soft); color: var(--accent); }

.btn__arrow {
  display: inline-block;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn__lbl { display: inline-block; }

.announce {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
}
.announce__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.005em;
}
.announce .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(124, 123, 230, 0.25);
}
.announce__link {
  color: var(--bg);
  font-weight: 500;
  margin-left: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.announce__link:hover { border-color: rgba(255,255,255,0.7); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 247, 0.92);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.logo__mark { display: inline-flex; }
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
}
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: var(--accent-soft); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav a {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
}
.mobile-nav a:hover { background: var(--accent-soft); }
.mobile-nav .btn { margin-top: 12px; padding: 14px; }
.mobile-nav.is-open { display: flex; }

.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91, 91, 214, 0.10), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { padding-right: 12px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line), 0 1px 2px rgba(14,15,18,0.03);
  margin-bottom: 28px;
}
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.badge--light {
  background: rgba(255,255,255,0.85);
}

.hero__sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.55;
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 460px;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.hero__visual {
  position: relative;
  padding: 12px;
}
.hero__glow {
  position: absolute;
  inset: 30% -10% -10% 30%;
  background: radial-gradient(circle, rgba(91, 91, 214, 0.18), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.editor {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(2000px) rotateY(-3deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.editor:hover { transform: perspective(2000px) rotateY(-1deg) rotateX(0.5deg); }

.editor__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-2);
  background: var(--surface-2);
}
.editor__dots { display: flex; gap: 6px; }
.editor__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DCD9CE;
}
.editor__dots span:nth-child(1) { background: #E5C8C0; }
.editor__dots span:nth-child(2) { background: #E5DCC0; }
.editor__dots span:nth-child(3) { background: #C8E5C8; }

.editor__tabs {
  display: flex;
  gap: 4px;
  flex: 1;
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 12.5px;
  color: var(--muted);
  border-radius: 7px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.tab--active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line);
}

.editor__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 5px 10px;
  background: var(--surface);
  border-radius: 7px;
  box-shadow: 0 0 0 1px var(--line);
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}

.editor__body {
  position: relative;
  padding: 28px 32px 36px;
  min-height: 420px;
}

.doc__chip {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 12px;
}
.doc__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
  max-width: 560px;
}
.doc__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.dotsep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--muted-3);
}

.doc__section { margin-bottom: 22px; }
.doc__section.ghost { opacity: 0.4; }
.doc__h {
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.doc__line {
  height: 8px;
  background: linear-gradient(90deg, #ECEAE2, #F4F2EA);
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}
.doc__line.w-full { width: 100%; }
.doc__line.w-95 { width: 95%; }
.doc__line.w-90 { width: 90%; }
.doc__line.w-85 { width: 85%; }
.doc__line.w-80 { width: 80%; }
.doc__line.w-70 { width: 70%; }
.doc__line.typing {
  background: transparent;
  font-size: 13px;
  color: var(--muted);
  height: 1.6em;
  line-height: 1.6;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-sans);
}

.caret {
  display: inline-block;
  color: var(--accent);
  font-weight: 400;
  animation: blink 1s step-end infinite;
}
.caret--blink { animation: blink 1s step-end infinite; }
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.progress-chip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 280px;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: 0 16px 40px -8px rgba(14,15,18,0.16), 0 0 0 1px var(--line);
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: -2s;
}
.progress-chip__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.progress-chip__pct { color: var(--accent); font-variant-numeric: tabular-nums; }
.progress-chip__bar {
  height: 5px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-chip__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.progress-chip__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step {
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--surface-2);
  color: var(--muted-2);
  font-weight: 500;
}
.step--done {
  background: rgba(16, 165, 108, 0.08);
  color: var(--good);
}
.step--active {
  background: var(--accent-soft);
  color: var(--accent);
}

.proof-strip {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip__label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.proof-strip__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.proof-strip__items span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: -0.005em;
  transition: color .2s;
}
.proof-strip__items span:hover { color: var(--ink); }
.proof-strip__items span:last-child { color: var(--muted); font-style: italic; }

.section {
  position: relative;
  padding: 120px 0;
}
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__head .eyebrow { margin-left: auto; margin-right: auto; }
.section__sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  box-shadow: 0 0 0 1px var(--line), 0 1px 2px rgba(14,15,18,0.02);
  transition: box-shadow .25s, transform .3s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(14,15,18,0.10), 0 0 0 1px var(--line-strong);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--ink);
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px var(--line);
}
.feature__icon--accent {
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
}
.feature h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  flex: 1;
}
.feature__list li {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-3);
}
.feature--accent {
  background: linear-gradient(180deg, #fff 0%, #faf9f4 100%);
  box-shadow: 0 0 0 1px var(--line-strong), 0 4px 14px -4px rgba(14,15,18,0.06);
}
.feature--accent .feature__list, .feature--soon .feature__list {
  flex: none;
}
.feature__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.feature__price-wrap { display: inline-flex; align-items: baseline; gap: 6px; }
.feature__price-old { font-size: 13px; color: var(--muted-2); text-decoration: line-through; font-weight: 500; }
.feature__price {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.feature__price--free {
  color: #1a7a4a;
  background: #e6f5ee;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin-top: 8px;
}
.feature__price--soon {
  color: #5350d5;
  background: #eeedf9;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
	margin-top: 8px;
}

.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.vs::after {
  content: 'vs';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 8px 24px -4px rgba(14,15,18,0.4), 0 0 0 6px var(--bg-alt);
}
.vs__col {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 0 0 1px var(--line), 0 1px 2px rgba(14,15,18,0.02);
}
.vs__col--good {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 16px 40px -16px rgba(14,15,18,0.4);
}
.vs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
	gap: 10px;
}
.vs__col--good .vs__head { border-bottom-color: rgba(255,255,255,0.1); }
.vs__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.vs__tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 5px;
}
.vs__tag--bad { color: var(--bad); background: rgba(209, 69, 69, 0.1); }
.vs__tag--good { color: var(--accent-2); background: rgba(124, 123, 230, 0.18); }

.vs__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vs__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.vs__col--good .vs__list li { color: rgba(255,255,255,0.85); }
.vs__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.vs__icon--bad { background: rgba(209, 69, 69, 0.1); color: var(--bad); }
.vs__icon--good { background: rgba(124, 123, 230, 0.2); color: var(--accent-2); }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps__line {
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 10%, var(--line-strong) 90%, transparent);
  z-index: 0;
  pointer-events: none;
}
.step-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: 0 0 0 1px var(--line), 0 1px 2px rgba(14,15,18,0.02);
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.step-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
}
.step-card__demo {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

.input-mock {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 12.5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 0 0 1px var(--line);
}
.input-mock__label {
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}
.input-mock__value { color: var(--ink); font-weight: 500; }

.chips { display: flex; gap: 5px; flex-wrap: wrap; }
.chip {
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 500;
  box-shadow: 0 0 0 1px var(--line);
}
.chip--active {
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
}

.stages { display: flex; flex-direction: column; gap: 8px; }
.stage {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--surface-2);
}
.stage__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--good);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.stage__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--line-strong);
}
.stage__spin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent-soft-2);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stage--done { color: var(--ink); }
.stage--active {
  color: var(--ink);
  background: var(--accent-soft);
  font-weight: 500;
}

.step-card__demo--pages {
  display: flex;
  gap: 8px;
}
.page-mini {
  flex: 1;
  aspect-ratio: 1 / 1.4;
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 0 0 1px var(--line), 0 4px 8px -2px rgba(14,15,18,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-mini__t1 { height: 6px; background: var(--line-strong); border-radius: 2px; width: 60%; margin: 0 auto 6px; }
.page-mini__t2 { height: 4px; background: var(--line-2); border-radius: 2px; width: 80%; margin: 0 auto; }
.page-mini__t3 { height: 22px; background: var(--accent-soft); border-radius: 3px; margin: 12px 0; }
.page-mini__t4 { height: 4px; background: var(--line-2); border-radius: 2px; width: 50%; margin: 0 auto auto; }
.page-mini--2 { gap: 3px; padding: 8px; }
.page-mini__l { height: 2.5px; background: var(--line-2); border-radius: 1px; }
.page-mini__l.short { width: 70%; }

.dl-row { display: flex; flex-direction: column; gap: 6px; }
.dl-row__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--surface-2);
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--line);
}
.dl-row__ic {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dl-row__ic--pdf { background: var(--bad); }
.dl-row__name { font-size: 12.5px; font-weight: 500; color: var(--ink); }
.dl-row__size { font-size: 11px; color: var(--muted-2); }
.dl-row__btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.dl-row__btn:hover { background: var(--ink-2); }

.demo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo__pages {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.paper {
  aspect-ratio: 1 / 1.414;
  background: #fff;
  border-radius: 4px;
  padding: 28px 24px;
  box-shadow: 0 0 0 1px var(--line), 0 24px 64px -16px rgba(14,15,18,0.12), 0 8px 24px -8px rgba(14,15,18,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  font-size: 11px;
  font-family: 'Times New Roman', serif;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
}
.paper:hover { transform: translateY(-4px) translateZ(0); }
.paper--1 { transform: rotate(-2deg) translateZ(0); }
.paper--1:hover { transform: rotate(-1deg) translateY(-4px) translateZ(0); }
.paper--2 { transform: rotate(2deg) translateY(20px) translateZ(0); box-shadow: 0 0 0 1px var(--line), 35px 24px 64px -16px rgba(14,15,18,0.10), 4px 35px 24px -8px rgba(14,15,18,0.05); }
.paper--2:hover { transform: rotate(1deg) translateY(16px) translateZ(0); }

.paper__top, .paper__center, .paper__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.paper__top { gap: 3px; align-items: stretch; }
.paper__center {
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 0;
}
.paper__bottom {
  margin-top: auto;
  gap: 6px;
}
.paper__line {
  height: 4px;
  background: linear-gradient(90deg, #ECEAE2, #F4F2EA);
  border-radius: 2px;
  width: 100%;
}
.paper__line--center { margin: 0 auto; }
.paper__line.w-30 { width: 30%; }
.paper__line.w-40 { width: 40%; }
.paper__line.w-50 { width: 50%; }
.paper__line.w-60 { width: 60%; }
.paper__line.w-70 { width: 70%; }
.paper__line.w-72 { width: 72%; }
.paper__line.w-80 { width: 80%; }
.paper__line.w-85 { width: 85%; }
.paper__line.w-88 { width: 88%; }
.paper__line.w-90 { width: 90%; }
.paper__line.w-92 { width: 92%; }
.paper__line.w-95 { width: 95%; }
.paper__chip {
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 4px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
}
.paper__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin: 4px 0;
  max-width: 90%;
}
.paper__sub {
  font-size: 10px;
  color: var(--muted);
  font-style: italic;
}
.paper__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 9.5px;
  color: var(--muted-2);
  font-family: var(--font-sans);
}
.paper__row .paper__line { flex: none; }
.mt-auto { margin-top: auto; }

.paper--2 { padding: 22px 24px; }
.paper__h {
  font-size: 11.5px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.paper__sp { height: 8px; }
.paper__quote {
  margin-top: 8px;
  padding: 8px 10px;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  font-size: 10px;
  font-style: italic;
  color: var(--ink-2);
  border-radius: 0 4px 4px 0;
}

.demo__h {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.demo__p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 460px;
}
.demo__list {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.demo__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}
.demo__list li:last-child { border-bottom: 1px solid var(--line); }
.demo__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: 0 0 0 1px var(--line);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.audience__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--line-strong), 0 12px 32px -12px rgba(14,15,18,0.1);
}
.audience__ic {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}
.audience__card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.audience__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transition: transform .3s;
}
.faq__plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item[open] summary { color: var(--accent); }
.faq__body {
  padding: 0 4px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 700px;
}

.cta-section { padding: 120px 0; }
.cta {
  position: relative;
  background: var(--ink);
  border-radius: var(--r-2xl);
  padding: 72px 48px;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 123, 230, 0.4), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(91, 91, 214, 0.3), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(91, 91, 214, 0.08), transparent 60%);
  pointer-events: none;
}
.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  color: var(--bg);
}
.cta__content .badge {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.cta__title {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta__title em { color: var(--accent-2); }
.cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta__form {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 14px;
  max-width: 600px;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 12px 40px -12px rgba(0,0,0,0.4);
}
.cta__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 6px 14px;
}
.cta__label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 2px;
}
.cta__field input {
  background: none;
  border: none;
  outline: none;
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  width: 100%;
  padding: 0;
}
.cta__field input::placeholder { color: rgba(255,255,255,0.4); }
.cta__submit {
  background: #fff;
  color: var(--ink);
  flex-shrink: 0;
}
.cta__submit:hover { background: rgba(255,255,255,0.92); }
.cta__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.cta__meta span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); }
.cta__meta svg { color: var(--accent-2); }

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer__tag {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col div {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
	letter-spacing: -0.005em;
	line-height: 1.1;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  transition: color .2s;
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted-2);
}
.footer__note { max-width: 600px; text-align: right; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.01em;
}
.footer__legal-sep {
  color: var(--muted-3);
  user-select: none;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 80px; }
  .hero__visual { padding: 0; }
  .editor { transform: none; }
  .editor:hover { transform: none; }
  .progress-chip { width: 250px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .demo { grid-template-columns: 1fr; gap: 40px; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps__line { display: none; }
}

@media (max-width: 760px) {
  .nav, .header__actions { display: none; }
  .burger { display: flex; }
  .header__inner { gap: 12px; }
  .announce__inner { font-size: 12px; padding: 8px 16px; flex-wrap: wrap; }
  .hero { padding: 40px 0 64px; }
  .display { font-size: 44px; }
  .h2 { font-size: 32px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 40px; }
  .features, .audience { grid-template-columns: 1fr; }

  .vs {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
  }
  .vs > :first-child { grid-row: 1; margin-bottom: -22px; }
  .vs > :last-child  { grid-row: 3; margin-top: -22px;    }
  .vs::after {
    grid-row: 2;
    grid-column: 1;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    margin: 0 auto;
  }	
	

  .steps { grid-template-columns: 1fr; }
  .progress-chip { right: 8px; bottom: 8px; width: 240px; }
  .editor__body { padding: 22px 20px 32px; }
  .doc__title { font-size: 17px; }
  .demo__pages { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 460px; margin-left: auto; margin-right: auto; overflow: hidden; }
  .paper--1 { transform: rotate(-1deg) translateZ(0); }
  .paper--1:hover { transform: rotate(-0.5deg) translateY(-4px) translateZ(0); }
  .paper--2 { transform: rotate(1deg) translateY(10px) translateZ(0); }
  .paper--2:hover { transform: rotate(0.5deg) translateY(6px) translateZ(0); }
  .paper { padding: 16px 14px; }
  .paper__title { font-size: 11px; }
  .cta { padding: 48px 24px; }
  .cta__form { flex-direction: column; padding: 12px; gap: 10px; }
  .cta__field { padding: 4px 10px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; }
  .footer__note { text-align: left; }
  .footer__legal { flex-direction: column; gap: 4px; }
  .footer__legal-sep { display: none; }
  .proof-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .proof-strip__items { gap: 16px; }
  .proof-strip__items span { font-size: 13px; }
  .demo__list li { grid-template-columns: 50px 1fr; gap: 12px; }
  .demo__num { font-size: 22px; }
}

@media (max-width: 525px) {
	
.hero__content {
    padding-right: 0;
}	
	
.announce__link { display: none; }
.editor__status {
    display: none;
}	
	
  .demo__pages { grid-template-columns: 1fr; max-width: 240px; }
  .paper--2 { display: none; }
  .paper--1 { transform: translateZ(0); }
  .paper--1:hover { transform: translateY(-4px) translateZ(0); }
}

@media (max-width: 460px) {
.announce .dot {
	display: none;
}
.badge__dot {
	display: none;
}
}




@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .display { font-size: 38px; letter-spacing: -0.03em; }
  .progress-chip { width: calc(100% - 24px); left: 12px; }
  .btn--lg { width: 100%; }
.editor__dots {
    display: none;
}
}

@media (max-width: 340px) {
.tab--active svg {
	display:none;
}
.doc__line.typing {
	white-space: unset;
	overflow: visible;
}

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}