#public-home {
  --v-paper: #f7f7f2;
  --v-paper-deep: #efefe8;
  --v-card: #ffffff;
  --v-ink: #171a18;
  --v-ink-soft: #303531;
  --v-muted: #686e69;
  --v-line: rgba(23, 26, 24, 0.14);
  --v-line-strong: rgba(23, 26, 24, 0.24);
  --v-mint: #45d39a;
  --v-mint-soft: #daf6e9;
  --v-mint-pale: #edf9f3;
  --v-red: #f1484c;
  --v-max: 1240px;
  background: var(--v-paper);
  color: var(--v-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

#public-home,
#public-home * {
  box-sizing: border-box;
}

#public-home a {
  color: inherit;
}

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

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

#public-home h1,
#public-home h2,
#public-home h3,
#public-home h4,
#public-home p {
  margin: 0;
}

#public-home button:focus-visible,
#public-home a:focus-visible,
#public-home summary:focus-visible {
  outline: 3px solid rgba(69, 211, 154, 0.44);
  outline-offset: 4px;
}

.v-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border: 1px solid var(--v-ink);
  background: var(--v-card);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.v-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--v-line);
}

.v-nav-wrap {
  width: min(var(--v-max), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.v-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: fit-content;
  color: var(--v-ink);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.v-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.v-brand small {
  margin-left: 1px;
  padding: 3px 6px;
  border: 1px solid var(--v-line-strong);
  border-radius: 99px;
  color: var(--v-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.v-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.v-nav-links a,
.v-sign-in {
  position: relative;
  color: var(--v-ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.v-nav-links a::after,
.v-sign-in::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.v-nav-links a:hover::after,
.v-sign-in:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.v-nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.v-nav-toggle {
  display: none;
}

.v-button {
  min-height: 52px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 730;
  letter-spacing: -0.015em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.v-button-dark {
  background: var(--v-ink);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(23, 26, 24, 0.14);
}

.v-button-dark:hover {
  background: #2b302c;
}

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

.v-button-quiet:hover {
  border-color: var(--v-ink);
  background: rgba(255, 255, 255, 0.62);
}

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

.v-hero {
  width: min(var(--v-max), calc(100% - 48px));
  min-height: calc(100svh - 77px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 5vw, 76px);
  padding: 42px 0 54px;
}

.v-hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.v-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1a7154;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.v-hero-copy > .v-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v-mint);
  box-shadow: 0 0 0 4px rgba(69, 211, 154, 0.14);
}

#public-home .v-hero h1 {
  max-width: 650px;
  color: var(--v-ink);
  font-family: inherit;
  font-size: clamp(64px, 6.7vw, 96px);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-align: left;
}

.v-hero h1 em {
  display: block;
  color: #23795a;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.v-hero-lede {
  max-width: 570px;
  color: var(--v-muted);
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 440;
  letter-spacing: -0.022em;
  line-height: 1.5;
}

.v-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.v-beta-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--v-muted);
  font-size: 12px;
  font-weight: 550;
}

.v-beta-note span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--v-mint-soft);
  color: #185e47;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v-beta-note a {
  color: var(--v-ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.v-hero-product {
  position: relative;
  min-height: 578px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 24, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 16%, rgba(255,255,255,0.56), transparent 30%),
    linear-gradient(145deg, #dff7eb 0%, #c9f0df 100%);
  box-shadow: 0 30px 80px rgba(36, 65, 52, 0.13);
}

.v-hero-product::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: -90px;
  border: 1px solid rgba(23, 26, 24, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,0.12), 0 0 0 76px rgba(255,255,255,0.08);
}

.v-demo-topline {
  position: absolute;
  top: 24px;
  right: 26px;
  left: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(23, 26, 24, 0.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.v-demo-topline > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-demo-topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #288665;
}

.v-demo-topline button {
  width: auto;
  height: auto;
  border: 0;
  border-bottom: 1px solid rgba(23,26,24,0.34);
  border-radius: 0;
  padding: 2px 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.v-focus-window {
  position: absolute;
  top: 75px;
  right: 38px;
  bottom: 94px;
  left: 38px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 24, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(32, 66, 51, 0.19);
}

.v-window-bar,
.v-app-titlebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(23, 26, 24, 0.10);
}

.v-window-bar {
  min-height: 46px;
  padding: 0 16px;
  background: rgba(249, 249, 247, 0.94);
  color: #6c716d;
  font-size: 11px;
}

.v-window-bar strong {
  color: #343834;
  font-size: 11px;
  font-weight: 650;
}

.v-window-bar > span:last-child {
  justify-self: end;
  padding: 4px 7px;
  border: 1px solid rgba(23, 26, 24, 0.11);
  border-radius: 6px;
  background: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.v-traffic {
  display: flex;
  align-items: center;
  gap: 6px;
}

.v-traffic i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.v-traffic i:nth-child(2) { background: #febc2e; }
.v-traffic i:nth-child(3) { background: #28c840; }

.v-document {
  position: relative;
  height: calc(100% - 46px);
  padding: clamp(34px, 5vw, 58px);
  background: #fffefa;
}

.v-doc-label {
  margin-bottom: 16px !important;
  color: #828781;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.v-document h2 {
  color: #202320;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 660;
  letter-spacing: -0.045em;
}

.v-doc-rule {
  height: 1px;
  margin: 22px 0;
  background: rgba(23, 26, 24, 0.10);
}

.v-inserted-copy {
  max-width: 490px;
  color: #353a36;
  font-size: clamp(16px, 1.8vw, 21px);
  letter-spacing: -0.02em;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.v-hero-product.is-done .v-inserted-copy,
.v-hero-product.is-reduced .v-inserted-copy {
  opacity: 1;
  transform: translateY(0);
}

.v-cursor {
  position: absolute;
  left: clamp(34px, 5vw, 58px);
  top: 164px;
  width: 2px;
  height: 25px;
  border-radius: 2px;
  background: #23845f;
  animation: v-cursor-blink 900ms steps(1, end) infinite;
}

.v-hero-product.is-done .v-cursor,
.v-hero-product.is-reduced .v-cursor {
  display: none;
}

@keyframes v-cursor-blink {
  50% { opacity: 0; }
}

.v-shortcut-hint {
  position: absolute;
  bottom: 26px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(23, 26, 24, 0.68);
  font-size: 11px;
  font-weight: 650;
}

.v-shortcut-hint kbd {
  min-width: 34px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 26, 24, 0.22);
  border-radius: 7px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 2px 0 rgba(23, 26, 24, 0.14);
  color: #252925;
  font-family: inherit;
  font-size: 11px;
}

.v-indicator {
  position: absolute;
  z-index: 6;
  bottom: 75px;
  left: 50%;
  width: 76px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(241, 72, 76, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(248, 248, 246, 0.92);
  box-shadow: 0 8px 24px rgba(23, 26, 24, 0.20);
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.94);
  transition: width 220ms ease, opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(18px);
}

.v-indicator b {
  display: none;
  color: #303431;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.v-record-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--v-red);
}

.v-record-dot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: rgba(241, 72, 76, 0.28);
  animation: v-record-pulse 950ms ease-out infinite;
}

@keyframes v-record-pulse {
  to { opacity: 0; transform: scale(2.4); }
}

.v-pill-wave {
  width: 16px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.v-pill-wave i {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: rgba(241, 72, 76, 0.58);
  animation: v-pill-wave 620ms ease-in-out infinite alternate;
}

.v-pill-wave i:nth-child(2) {
  height: 14px;
  background: rgba(241, 72, 76, 0.86);
  animation-delay: -210ms;
}

.v-pill-wave i:nth-child(3) {
  height: 10px;
  background: rgba(241, 72, 76, 0.68);
  animation-delay: -390ms;
}

@keyframes v-pill-wave {
  to { transform: scaleY(0.45); }
}

.v-spinner {
  width: 14px;
  height: 14px;
  display: none;
  flex: 0 0 auto;
  border: 2px solid rgba(23, 26, 24, 0.14);
  border-top-color: rgba(23, 26, 24, 0.72);
  border-radius: 50%;
  animation: v-spin 700ms linear infinite;
}

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

.v-pill-close {
  display: none;
  color: #868b87;
  font-size: 15px;
  font-weight: 400;
}

.v-hero-product.is-recording .v-indicator,
.v-hero-product.is-transcribing .v-indicator,
.v-hero-product.is-cleaning .v-indicator,
.v-hero-product.is-pasting .v-indicator {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.v-hero-product.is-transcribing .v-indicator,
.v-hero-product.is-cleaning .v-indicator,
.v-hero-product.is-pasting .v-indicator {
  width: 156px;
  border-color: rgba(23, 26, 24, 0.20);
}

.v-hero-product.is-cleaning .v-indicator { width: 160px; }
.v-hero-product.is-pasting .v-indicator { width: 128px; }

.v-hero-product.is-transcribing .v-record-dot,
.v-hero-product.is-cleaning .v-record-dot,
.v-hero-product.is-pasting .v-record-dot,
.v-hero-product.is-transcribing .v-pill-wave,
.v-hero-product.is-cleaning .v-pill-wave,
.v-hero-product.is-pasting .v-pill-wave {
  display: none;
}

.v-hero-product.is-transcribing .v-spinner,
.v-hero-product.is-cleaning .v-spinner,
.v-hero-product.is-pasting .v-spinner,
.v-hero-product.is-transcribing .v-indicator b,
.v-hero-product.is-cleaning .v-indicator b,
.v-hero-product.is-pasting .v-indicator b,
.v-hero-product.is-transcribing .v-pill-close,
.v-hero-product.is-cleaning .v-pill-close,
.v-hero-product.is-pasting .v-pill-close {
  display: block;
}

.v-demo-status {
  position: absolute;
  right: 28px;
  bottom: 27px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(23, 26, 24, 0.72);
  font-size: 11px;
  font-weight: 650;
}

.v-demo-status b {
  color: rgba(23, 26, 24, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.v-compatibility {
  width: min(var(--v-max), calc(100% - 48px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--v-line);
  border-bottom: 1px solid var(--v-line);
  color: var(--v-muted);
  font-size: 13px;
}

.v-compatibility strong {
  color: var(--v-ink);
}

.v-compatibility > span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.v-compatibility > span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v-mint);
}

.v-method,
.v-cleanup,
.v-toolkit,
.v-pricing,
.v-faq {
  width: min(var(--v-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0;
}

.v-section-intro {
  max-width: 800px;
  margin-bottom: 72px;
}

#public-home .v-section-intro h2,
#public-home .v-product-heading h2,
#public-home .v-cleanup-heading h2,
#public-home .v-pricing-heading h2,
#public-home .v-privacy h2,
#public-home .v-faq-heading h2 {
  margin-top: 16px;
  color: var(--v-ink);
  font-family: inherit;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 680;
  letter-spacing: -0.067em;
  line-height: 0.99;
  text-align: left;
}

.v-section-intro > p:last-child,
.v-product-heading > p,
.v-cleanup-heading > p,
.v-pricing-intro > p,
.v-faq-heading > p {
  max-width: 650px;
  margin-top: 24px !important;
  color: var(--v-muted);
  font-size: 18px;
  letter-spacing: -0.018em;
  line-height: 1.58;
}

.v-method-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--v-line-strong);
  border-bottom: 1px solid var(--v-line-strong);
}

.v-method-steps li {
  min-width: 0;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 34px 34px;
  border-right: 1px solid var(--v-line-strong);
}

.v-method-steps li:first-child { padding-left: 0; }
.v-method-steps li:last-child { padding-right: 0; border-right: 0; }

.v-method-steps li > span {
  color: var(--v-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.v-key-visual,
.v-wave-visual,
.v-type-visual {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 24px 0 18px;
}

.v-key-visual {
  width: 86px;
  height: 64px;
  justify-content: center;
  margin-block: 67px 61px;
  border: 1px solid var(--v-line-strong);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 0 rgba(23, 26, 24, 0.12);
  font-size: 18px;
  font-weight: 700;
}

.v-wave-visual {
  justify-content: flex-start;
  gap: 8px;
}

.v-wave-visual i {
  width: 7px;
  height: 44px;
  border-radius: 999px;
  background: var(--v-ink);
}

.v-wave-visual i:nth-child(2),
.v-wave-visual i:nth-child(4) { height: 82px; }
.v-wave-visual i:nth-child(3) { height: 124px; background: var(--v-mint); }

.v-type-visual {
  position: relative;
  color: var(--v-ink);
  font-size: 92px;
  font-weight: 680;
  letter-spacing: -0.1em;
}

.v-type-visual span {
  width: 4px;
  height: 74px;
  margin-left: 18px;
  border-radius: 4px;
  background: var(--v-mint);
}

.v-method-steps h3 {
  margin-bottom: 12px !important;
  font-size: 24px;
  font-weight: 670;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.v-method-steps p {
  color: var(--v-muted);
  font-size: 15px;
  line-height: 1.6;
}

.v-product {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px clamp(28px, 5vw, 72px) 72px;
  border-radius: 42px;
  background: #1d211e;
  color: #ffffff;
}

.v-product .v-eyebrow {
  color: #79e1b6;
}

.v-product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

#public-home .v-product-heading h2 {
  max-width: 780px;
  color: #ffffff;
}

.v-product-heading > p {
  color: rgba(255,255,255,0.60);
}

.v-app-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  background: #f7f8f7;
  box-shadow: 0 36px 86px rgba(0,0,0,0.34);
  color: #1c1f1d;
}

.v-app-titlebar {
  min-height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,0.97);
  font-size: 11px;
}

.v-app-titlebar strong {
  font-size: 12px;
  font-weight: 660;
}

.v-app-titlebar > span:last-child {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #267356;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v-app-titlebar > span:last-child i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v-mint);
}

.v-app-layout {
  min-height: 630px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr) 218px;
}

.v-app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 12px 18px;
  border-right: 1px solid rgba(23,26,24,0.08);
  background: #eff1ee;
}

.v-app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
}

.v-app-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.v-app-brand span {
  display: grid;
  gap: 1px;
}

.v-app-brand b {
  font-size: 17px;
  letter-spacing: -0.03em;
}

.v-app-brand small {
  color: #747a75;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v-app-sidebar nav {
  display: grid;
  gap: 5px;
}

.v-app-sidebar nav span,
.v-settings-row {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 0 10px;
  color: #717772;
  font-size: 13px;
}

.v-app-sidebar nav span.active {
  border: 1px solid rgba(23,26,24,0.08);
  background: #dfeee8;
  color: #252925;
}

.v-app-sidebar nav b,
.v-settings-row b {
  font-weight: 600;
}

.v-demo-account {
  margin-top: auto;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(23,26,24,0.08);
  border-radius: 10px;
  background: #ffffff;
}

.v-demo-account small {
  color: #737873;
  font-size: 9px;
  font-weight: 650;
}

.v-demo-account b {
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
}

.v-app-main {
  min-width: 0;
  background: #f7f8f7;
}

.v-app-topbar {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(23,26,24,0.09);
}

.v-app-topbar h3 {
  margin-bottom: 3px !important;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.v-app-topbar p,
.v-history-title p {
  color: #777c78;
  font-size: 12px;
}

.v-search {
  min-width: 230px;
  height: 36px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(23,26,24,0.09);
  border-radius: 8px;
  padding: 0 11px;
  background: #ffffff;
  color: #858a86;
  font-size: 11px;
}

.v-history-feed {
  display: grid;
  gap: 11px;
  padding: 27px 28px;
}

.v-history-title h4 {
  margin-bottom: 3px !important;
  font-size: 17px;
  font-weight: 650;
}

.v-day-label {
  margin-top: 8px;
  color: #777d78;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.v-history-feed article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(23,26,24,0.08);
  border-radius: 9px;
  background: #ffffff;
}

.v-history-feed article time {
  display: grid;
  gap: 3px;
  color: #707571;
  font-size: 11px;
  font-weight: 550;
}

.v-history-feed article time small {
  overflow: hidden;
  color: #a0a4a1;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-history-feed article p {
  color: #2e332f;
  font-size: 13px;
  line-height: 1.5;
}

.v-history-feed article > span {
  padding: 3px 6px;
  border-radius: 99px;
  background: #edf0ed;
  color: #777d78;
  font-size: 7px;
  font-weight: 700;
  white-space: nowrap;
}

.v-history-new {
  opacity: 0;
  transform: translateY(-8px);
}

.v-app-window.is-active .v-history-new,
.v-app-window.is-reduced .v-history-new {
  animation: v-history-land 720ms cubic-bezier(.2,.8,.2,1) 350ms forwards;
}

@keyframes v-history-land {
  65% { background: var(--v-mint-pale); }
  100% { opacity: 1; transform: translateY(0); background: #ffffff; }
}

.v-app-rail {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-left: 1px solid rgba(23,26,24,0.08);
  background: #f2f4f1;
}

.v-app-rail > small {
  margin-bottom: 14px;
  color: #747a75;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.v-app-rail > div {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(23,26,24,0.10);
}

.v-app-rail > div span {
  color: #777c78;
  font-size: 11px;
}

.v-app-rail > div strong {
  font-size: 27px;
  font-weight: 630;
  letter-spacing: -0.05em;
}

.v-app-rail > p {
  margin-top: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #31785d;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
}

.v-app-rail > p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v-mint);
}

.v-app-window.is-active .v-app-rail > p,
.v-app-window.is-reduced .v-app-rail > p {
  animation: v-fade-in 300ms ease 980ms forwards;
}

@keyframes v-fade-in { to { opacity: 1; } }

.v-cleanup {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.v-cleanup-heading {
  position: sticky;
  top: 40px;
}

.v-cleanup-heading h2 {
  max-width: 580px;
}

.v-cleanup-tabs {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
  padding: 5px;
  border: 1px solid var(--v-line);
  border-radius: 999px;
  background: var(--v-paper-deep);
}

#public-home .v-cleanup-tabs button {
  width: auto;
  height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  background: transparent;
  color: var(--v-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

#public-home .v-cleanup-tabs button.active {
  background: var(--v-ink);
  color: #ffffff;
}

.v-cleanup-demo {
  overflow: hidden;
  border: 1px solid var(--v-line-strong);
  border-radius: 26px;
  background: var(--v-card);
  box-shadow: 0 24px 60px rgba(23,26,24,0.09);
}

.v-raw-copy,
.v-clean-copy {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 48px);
}

.v-raw-copy {
  background: #232724;
  color: #ffffff;
}

.v-raw-copy > span,
.v-clean-copy > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v-raw-copy > span { color: #8be9c1; }
.v-clean-copy > span { color: #247152; }

.v-raw-copy p,
.v-clean-copy p {
  margin-top: 50px !important;
  font-size: clamp(22px, 2.7vw, 34px);
  letter-spacing: -0.038em;
  line-height: 1.26;
}

.v-raw-copy p { color: rgba(255,255,255,0.66); }
.v-clean-copy p { color: var(--v-ink); }

.v-clean-rule {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: var(--v-mint);
  color: #134d38;
}

.v-clean-rule span {
  height: 1px;
  background: rgba(19,77,56,0.25);
}

.v-clean-rule b {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v-clean-copy {
  background: #ffffff;
}

.v-clean-copy small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
  color: var(--v-muted);
  font-size: 11px;
  font-weight: 650;
}

.v-clean-copy small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v-mint);
}

.v-toolkit {
  padding-top: 78px;
}

.v-feature-rows {
  border-top: 1px solid var(--v-line-strong);
}

.v-feature-rows article {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding: 62px 0;
  border-bottom: 1px solid var(--v-line-strong);
}

.v-feature-copy > span {
  color: #247152;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.v-feature-copy h3 {
  max-width: 540px;
  margin: 18px 0 !important;
  font-size: clamp(34px, 4vw, 51px);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.v-feature-copy p {
  max-width: 530px;
  color: var(--v-muted);
  font-size: 16px;
  line-height: 1.62;
}

.v-dictionary-ui,
.v-recovery-ui,
.v-control-ui {
  min-height: 300px;
  border: 1px solid var(--v-line);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px);
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(23,26,24,0.08);
}

.v-dictionary-ui {
  display: grid;
  align-content: center;
  gap: 11px;
  background: var(--v-mint-pale);
}

.v-dictionary-ui p {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(23,26,24,0.10);
  border-radius: 12px;
  padding: 0 18px;
  background: rgba(255,255,255,0.84);
  font-size: 14px;
}

.v-dictionary-ui span {
  color: #8a8f8b;
  text-decoration: line-through;
}

.v-dictionary-ui b {
  color: #9aa09b;
  font-weight: 400;
}

.v-dictionary-ui strong {
  font-weight: 650;
}

.v-recovery-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: #eef0ed;
}

.v-error-pill {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(241,72,76,0.28);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(23,26,24,0.10);
  font-size: 12px;
  font-weight: 650;
}

.v-error-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v-red);
}

.v-recovery-card {
  width: min(440px, 100%);
  display: grid;
  gap: 13px;
  border: 1px solid var(--v-line);
  border-radius: 13px;
  padding: 22px;
  background: #ffffff;
}

.v-recovery-card small {
  color: #777d78;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.v-recovery-card p {
  font-size: 17px;
  line-height: 1.45;
}

.v-recovery-card span {
  color: #287256;
  font-size: 11px;
  font-weight: 700;
}

.v-control-ui {
  display: grid;
  align-content: center;
  gap: 0;
}

.v-control-ui p {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--v-line);
  font-size: 14px;
}

.v-control-ui p:last-child { border-bottom: 0; }
.v-control-ui b { font-weight: 650; }

.v-control-ui p > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--v-muted);
  font-size: 12px;
}

.v-control-ui i {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
  border-radius: 999px;
  background: #d9dcda;
}

.v-control-ui i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(23,26,24,0.18);
}

.v-control-ui i.on { background: var(--v-mint); }
.v-control-ui i.on::after { transform: translateX(16px); }

.v-pricing {
  padding-top: 148px;
}

.v-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(60px, 10vw, 150px);
  margin-bottom: 64px;
}

#public-home .v-pricing-heading h2 em {
  color: #3f8268;
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.v-pricing-intro {
  padding-bottom: 5px;
}

.v-pricing-intro > p {
  margin-top: 0 !important;
}

.v-billing-toggle {
  width: fit-content;
  margin-top: 28px;
  display: flex;
  gap: 4px;
  border: 1px solid var(--v-line);
  border-radius: 14px;
  padding: 4px;
  background: rgba(255,255,255,0.54);
}

.v-billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  padding: 0 15px;
  background: transparent;
  color: var(--v-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

.v-billing-toggle button.active {
  background: var(--v-ink);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(23,26,24,0.14);
}

.v-billing-toggle button span {
  margin-left: 5px;
  color: var(--v-mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.v-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--v-line-strong);
  border-radius: 30px;
  background: var(--v-card);
  box-shadow: 0 30px 80px rgba(23,26,24,0.07);
}

.v-plan-card {
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
}

.v-plan-pro {
  border-left: 1px solid var(--v-line-strong);
  background:
    radial-gradient(circle at 100% 0%, rgba(69,211,154,0.19), transparent 37%),
    #1c201d;
  color: #ffffff;
}

.v-plan-topline,
.v-plan-accent {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.v-plan-topline > span,
.v-plan-accent > span {
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.v-plan-topline small,
.v-plan-accent small {
  color: var(--v-muted);
  font-size: 11px;
  font-weight: 700;
}

.v-plan-accent > span {
  border-radius: 99px;
  padding: 7px 11px;
  background: var(--v-mint);
  color: #11251d;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.v-plan-accent small { color: #a9b1ac; }

.v-plan-price {
  min-height: 116px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--v-line);
  padding: 22px 0 24px;
}

.v-plan-pro .v-plan-price { border-color: rgba(255,255,255,0.16); }

.v-plan-price strong {
  display: flex;
  align-items: baseline;
  color: inherit;
  font-size: clamp(54px, 6vw, 76px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.v-plan-price sup {
  margin-left: 8px;
  color: #a9b1ac;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.v-plan-price > span {
  max-width: 150px;
  padding-bottom: 4px;
  color: var(--v-muted);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.45;
  text-align: right;
}

.v-plan-pro .v-plan-price > span { color: #a9b1ac; }

.v-plan-promise {
  min-height: 92px;
  padding: 26px 0 22px;
  color: var(--v-muted);
  font-size: 15px;
  line-height: 1.62;
}

.v-plan-pro .v-plan-promise { color: #b8bfba; }

.v-plan-button {
  min-height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 13px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.v-plan-button-quiet {
  border: 1px solid var(--v-line-strong);
  background: var(--v-paper);
}

.v-plan-button-quiet:hover { background: var(--v-mint-pale); }

.v-plan-button-dark {
  background: #ffffff;
  color: var(--v-ink) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.v-plan-route {
  min-height: 34px;
  padding-top: 9px;
  color: #929a95;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.v-plan-card ul {
  list-style: none;
  margin: 27px 0 0;
  border-top: 1px solid var(--v-line);
  padding: 17px 0 0;
}

.v-plan-pro ul {
  margin-top: 0;
  border-color: rgba(255,255,255,0.16);
}

.v-plan-card li {
  min-height: 62px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  border-bottom: 1px solid var(--v-line);
  padding: 13px 0;
}

.v-plan-pro li { border-color: rgba(255,255,255,0.12); }
.v-plan-card li:last-child { border-bottom: 0; }

.v-plan-card li > i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--v-mint-soft);
  color: #226c51;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.v-plan-pro li > i {
  background: rgba(69,211,154,0.16);
  color: var(--v-mint);
}

.v-plan-card li span { display: grid; gap: 3px; }
.v-plan-card li b { font-size: 13px; font-weight: 720; letter-spacing: -0.015em; }
.v-plan-card li small { color: var(--v-muted); font-size: 11px; line-height: 1.42; }
.v-plan-pro li small { color: #959d98; }

.v-pricing-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--v-line-strong);
}

.v-pricing-proof p {
  min-height: 145px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  column-gap: 13px;
  border-right: 1px solid var(--v-line-strong);
  padding: 28px;
}

.v-pricing-proof p:last-child { border-right: 0; }
.v-pricing-proof span { grid-row: 1 / 3; color: #3f8268; font-size: 10px; font-weight: 850; letter-spacing: 0.08em; }
.v-pricing-proof b { font-size: 13px; font-weight: 760; }
.v-pricing-proof small { margin-top: 5px; color: var(--v-muted); font-size: 11px; line-height: 1.5; }

.v-pricing-note {
  margin-top: 18px !important;
  color: var(--v-muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.v-privacy {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(68px, 8vw, 112px);
  border: 1px solid rgba(23,26,24,0.14);
  border-radius: 42px;
  background: var(--v-mint-soft);
}

.v-privacy-icon {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.v-privacy-icon img {
  width: min(220px, 65%);
  border-radius: 22%;
  box-shadow: 0 28px 58px rgba(28,66,50,0.18);
}

.v-privacy-icon span {
  color: #1d634a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.v-privacy > div:last-child {
  max-width: 820px;
}

.v-privacy > div:last-child > p:not(.v-eyebrow) {
  max-width: 760px;
  margin-top: 26px !important;
  color: #486056;
  font-size: 17px;
  line-height: 1.65;
}

.v-privacy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(23,26,24,0.36);
  color: var(--v-ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.v-faq {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.v-faq-heading {
  position: sticky;
  top: 40px;
}

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

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

.v-faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--v-ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

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

.v-faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--v-line);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.v-faq-list details[open] summary span {
  background: var(--v-mint-soft);
  transform: rotate(45deg);
}

.v-faq-list details p {
  max-width: 650px;
  padding: 0 58px 28px 0;
  color: var(--v-muted);
  font-size: 15px;
  line-height: 1.65;
}

.v-final {
  width: min(1440px, calc(100% - 48px));
  min-height: 630px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  padding: 80px 24px;
  background: #1c201d;
  color: #ffffff;
  text-align: center;
}

.v-final > img {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(0,0,0,0.28);
}

.v-final > p {
  color: #7be3b7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#public-home .v-final h2 {
  max-width: 1000px;
  margin: 20px auto !important;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 670;
  letter-spacing: -0.07em;
  line-height: 0.96;
  text-align: center;
}

.v-final > span {
  color: rgba(255,255,255,0.62);
  font-size: 18px;
}

.v-final .v-actions {
  justify-content: center;
  margin-top: 34px;
}

.v-button-light {
  background: #ffffff;
  color: var(--v-ink) !important;
}

.v-button-outline {
  border-color: rgba(255,255,255,0.30);
  background: transparent;
  color: #ffffff !important;
}

.v-button-outline:hover {
  border-color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
}

.v-footer {
  width: min(var(--v-max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 0.65fr 0.65fr;
  gap: 60px;
  padding: 78px 0 30px;
}

.v-footer-brand .v-brand img {
  width: 40px;
  height: 40px;
}

.v-footer-brand p {
  max-width: 310px;
  margin-top: 18px !important;
  color: var(--v-muted);
  font-size: 14px;
}

.v-footer > div:not(.v-footer-brand) {
  display: grid;
  align-content: start;
  gap: 11px;
}

.v-footer > div > strong {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.v-footer > div > a {
  width: fit-content;
  color: var(--v-muted) !important;
  font-size: 13px;
  text-decoration: none;
}

.v-footer > div > a:hover { color: var(--v-ink) !important; }

.v-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px !important;
  padding-top: 24px;
  border-top: 1px solid var(--v-line);
  color: var(--v-muted);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .v-nav-links { gap: 20px; }

  .v-hero {
    grid-template-columns: minmax(330px, 0.78fr) minmax(500px, 1.22fr);
    gap: 36px;
  }

  #public-home .v-hero h1 { font-size: clamp(60px, 7vw, 78px); }
  .v-hero-product { min-height: 540px; }

  .v-app-layout { grid-template-columns: 170px minmax(0, 1fr); }
  .v-app-rail { display: none; }

  .v-cleanup {
    grid-template-columns: minmax(320px, 0.85fr) minmax(470px, 1.15fr);
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .v-nav-wrap { grid-template-columns: 1fr auto; }
  .v-nav-links { display: none; }
  .v-nav-actions { justify-self: end; }

  .v-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 72px 0 80px;
  }

  .v-hero-copy {
    max-width: 720px;
  }

  #public-home .v-hero h1 {
    max-width: 760px;
    font-size: clamp(72px, 11vw, 102px);
  }

  .v-hero-product { min-height: 590px; }

  .v-method-steps li {
    min-height: 390px;
    padding-inline: 24px;
  }

  .v-product-heading,
  .v-cleanup,
  .v-pricing-heading,
  .v-faq {
    grid-template-columns: 1fr;
  }

  .v-product-heading { gap: 0; }
  .v-product-heading > p { max-width: 640px; }

  .v-cleanup-heading,
  .v-faq-heading {
    position: static;
  }

  .v-cleanup { gap: 58px; }
  .v-pricing-heading { gap: 38px; }
  .v-cleanup-heading { max-width: 720px; }
  .v-cleanup-demo { width: min(720px, 100%); }

  .v-feature-rows article {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .v-privacy {
    grid-template-columns: 0.45fr 1.55fr;
    gap: 48px;
  }

  .v-faq { gap: 56px; }
}

@media (max-width: 720px) {
  .v-nav-wrap,
  .v-hero,
  .v-compatibility,
  .v-method,
  .v-cleanup,
  .v-toolkit,
  .v-pricing,
  .v-faq,
  .v-footer {
    width: min(100% - 30px, var(--v-max));
  }

  .v-nav-wrap {
    min-height: 70px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .v-nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--v-line);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .v-nav-toggle span {
    width: 16px;
    height: 1px;
    background: var(--v-ink);
    transition: transform 180ms ease;
  }

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

  .v-nav-links {
    position: absolute;
    top: 70px;
    right: 15px;
    left: 15px;
    z-index: 20;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--v-line);
    border-radius: 18px;
    padding: 8px;
    background: rgba(255,255,252,0.98);
    box-shadow: 0 24px 50px rgba(23,26,24,0.16);
    backdrop-filter: blur(18px);
  }

  .v-nav-links.open { display: flex; }

  .v-nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--v-line);
    padding: 0 12px;
  }

  .v-nav-links a:last-child { border-bottom: 0; }
  .v-nav-actions .v-sign-in { display: none; }
  .v-nav-actions { gap: 0; }

  .v-hero {
    padding: 56px 0 64px;
    gap: 48px;
  }

  #public-home .v-hero h1 {
    font-size: clamp(58px, 16vw, 82px);
    line-height: 0.93;
  }

  .v-hero-lede { font-size: 18px; }
  .v-actions { align-items: stretch; flex-direction: column; }
  .v-actions .v-button { width: 100%; }
  .v-beta-note { line-height: 1.6; }

  .v-hero-product {
    min-height: 500px;
    border-radius: 26px;
  }

  .v-demo-topline { top: 20px; right: 20px; left: 20px; }
  .v-focus-window { top: 64px; right: 18px; bottom: 88px; left: 18px; }
  .v-document { padding: 30px 26px; }
  .v-cursor { top: 145px; left: 26px; }
  .v-shortcut-hint { left: 20px; }
  .v-demo-status { right: 20px; }
  .v-demo-status span { display: none; }

  .v-compatibility {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
  }

  .v-method,
  .v-cleanup,
  .v-toolkit,
  .v-pricing,
  .v-faq {
    padding: 96px 0;
  }

  .v-section-intro { margin-bottom: 50px; }

  #public-home .v-section-intro h2,
  #public-home .v-product-heading h2,
  #public-home .v-cleanup-heading h2,
  #public-home .v-pricing-heading h2,
  #public-home .v-privacy h2,
  #public-home .v-faq-heading h2 {
    font-size: clamp(43px, 12vw, 61px);
  }

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

  .v-pricing-heading,
  .v-plan-grid,
  .v-pricing-proof {
    grid-template-columns: 1fr;
  }

  .v-pricing-heading { gap: 34px; }
  .v-billing-toggle { width: 100%; }
  .v-billing-toggle button { flex: 1; }
  .v-plan-pro { border-top: 1px solid var(--v-line-strong); border-left: 0; }
  .v-pricing-proof p { min-height: 118px; border-right: 0; border-bottom: 1px solid var(--v-line-strong); padding-inline: 10px; }
  .v-pricing-proof p:last-child { border-bottom: 0; }

  .v-method-steps li,
  .v-method-steps li:first-child,
  .v-method-steps li:last-child {
    min-height: 0;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--v-line);
  }

  .v-method-steps li:last-child { border-bottom: 0; }

  .v-key-visual,
  .v-wave-visual,
  .v-type-visual {
    height: 120px;
    margin: 18px 0;
  }

  .v-key-visual { width: 74px; height: 56px; margin-block: 50px 50px; }
  .v-wave-visual i:nth-child(3) { height: 100px; }
  .v-type-visual { font-size: 72px; }
  .v-type-visual span { height: 58px; }

  .v-product,
  .v-privacy,
  .v-final {
    width: min(100% - 16px, 1440px);
    border-radius: 28px;
  }

  .v-product {
    padding: 72px 14px 14px;
  }

  .v-product-heading { margin: 0 10px 44px; }
  .v-app-window { border-radius: 14px; }
  .v-app-layout { min-height: 530px; grid-template-columns: 1fr; }
  .v-app-sidebar { display: none; }

  .v-app-topbar {
    min-height: 100px;
    padding: 20px;
  }

  .v-app-topbar h3 { font-size: 21px; }
  .v-app-topbar p { font-size: 10px; }
  .v-search { display: none; }
  .v-history-feed { padding: 20px; }
  .v-history-feed article { grid-template-columns: 74px minmax(0,1fr); padding: 13px; }
  .v-history-feed article > span { display: none; }
  .v-history-feed article time { font-size: 9px; }
  .v-history-feed article p { font-size: 11px; }

  .v-raw-copy,
  .v-clean-copy { min-height: 270px; }
  .v-raw-copy p,
  .v-clean-copy p { font-size: 23px; }

  .v-feature-rows article {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 54px 0;
  }

  .v-dictionary-ui,
  .v-recovery-ui,
  .v-control-ui {
    min-height: 270px;
    border-radius: 18px;
  }

  .v-dictionary-ui p {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 12px;
    font-size: 11px;
  }

  .v-privacy {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 68px 26px;
  }

  .v-privacy-icon img { width: 112px; }

  .v-faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .v-final {
    min-height: 590px;
    padding: 70px 24px;
  }

  #public-home .v-final h2 { font-size: clamp(48px, 13vw, 66px); }

  .v-footer {
    grid-template-columns: 1fr 1fr;
    gap: 45px 24px;
    padding-top: 64px;
  }

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

@media (max-width: 430px) {
  .v-brand small { display: none; }
  .v-nav-actions .v-button { min-height: 38px; padding-inline: 13px; font-size: 12px; }

  .v-hero-product { min-height: 455px; }
  .v-window-bar { grid-template-columns: 1fr auto; }
  .v-window-bar > span:last-child { display: none; }
  .v-document h2 { font-size: 25px; }
  .v-inserted-copy { font-size: 15px; }
  .v-indicator { bottom: 70px; }

  .v-cleanup-tabs { width: 100%; }
  #public-home .v-cleanup-tabs button { flex: 1; padding-inline: 9px; }

  .v-history-feed article { min-height: 84px; grid-template-columns: 1fr; gap: 8px; }
  .v-history-feed article time { display: block; }
  .v-history-feed article time small { margin-left: 7px; }

  .v-control-ui p { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
  .v-control-ui p > span { width: 100%; justify-content: space-between; }
}

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

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

  .v-history-new,
  .v-app-rail > p {
    opacity: 1;
    transform: none;
  }
}
