:root {
  --v2-ink: #111827;
  --v2-navy: #17203b;
  --v2-muted: #626779;
  --v2-faint: #8b8f9c;
  --v2-lavender: #6d67d9;
  --v2-lavender-dark: #5049ba;
  --v2-lavender-wash: #f1efff;
  --v2-warm: #fbfaf7;
  --v2-white: #ffffff;
  --v2-line: #e5e4ea;
  --v2-line-strong: #d6d3df;
  --v2-positive: #297a4b;
  --v2-error: #a63f4a;
  --v2-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --v2-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --v2-max: 1240px;
  --v2-radius-sm: 12px;
  --v2-radius: 18px;
  --v2-radius-lg: 28px;
  --v2-shadow: 0 24px 70px rgba(27, 29, 48, 0.09);
}

* {
  box-sizing: border-box;
}

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

body.v2-body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--v2-ink);
  background: var(--v2-warm);
  font-family: var(--v2-ui);
  -webkit-font-smoothing: antialiased;
}

.v2-body button,
.v2-body input {
  font: inherit;
}

.v2-body [hidden] {
  display: none !important;
}

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

.v2-body a {
  color: inherit;
  text-decoration: none;
}

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

.v2-skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--v2-white);
  background: var(--v2-navy);
  transform: translateY(-160%);
}

.v2-skip-link:focus {
  transform: none;
}

.v2-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(229, 228, 234, 0.82);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

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

.v2-brand {
  width: 92px;
  line-height: 0;
}

.v2-brand img,
.v2-footer__brand img,
.v2-review-index__header img {
  width: 100%;
  height: auto;
}

.v2-header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.v2-nav,
.v2-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.v2-nav--mobile {
  display: none;
}

.v2-header__separator {
  width: 1px;
  height: 24px;
  background: var(--v2-line-strong);
}

.v2-nav-group {
  position: relative;
}

.v2-nav-group summary {
  display: inline-flex;
  padding: 10px 2px;
  align-items: center;
  color: var(--v2-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 560;
  gap: 7px;
  list-style: none;
}

.v2-nav-group summary::-webkit-details-marker {
  display: none;
}

.v2-nav-group summary i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.v2-nav-group[open] summary i {
  transform: translateY(2px) rotate(225deg);
}

.v2-nav-group summary:hover,
.v2-nav-group summary:focus-visible,
.v2-nav-group.is-active summary {
  color: var(--v2-ink);
}

.v2-nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  display: grid;
  width: 320px;
  padding: 9px;
  border: 1px solid rgba(214, 211, 223, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 52px rgba(23, 32, 59, 0.16);
  gap: 2px;
}

.v2-nav-dropdown::before {
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 13px;
  content: "";
}

.v2-nav .v2-nav-dropdown a {
  display: grid;
  padding: 12px 13px;
  border-radius: 10px;
  line-height: 1.35;
  gap: 2px;
}

.v2-nav .v2-nav-dropdown a:hover,
.v2-nav .v2-nav-dropdown a:focus-visible,
.v2-nav .v2-nav-dropdown a[aria-current="page"] {
  color: var(--v2-ink);
  background: var(--v2-lavender-wash);
}

.v2-nav-dropdown a span {
  font-weight: 650;
}

.v2-nav-dropdown a small {
  color: var(--v2-faint);
  font-size: 12px;
  font-weight: 450;
}

.v2-nav a,
.v2-link-button {
  padding: 10px 2px;
  color: var(--v2-muted);
  font-size: 14px;
  font-weight: 560;
}

.v2-nav a:hover,
.v2-nav a[aria-current="page"],
.v2-link-button:hover {
  color: var(--v2-ink);
}

.v2-menu-button {
  display: none;
}

.v2-button,
.v2-text-link,
.v2-text-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
}

.v2-button {
  padding: 0 24px;
  color: var(--v2-white);
  background: var(--v2-navy);
  box-shadow: 0 8px 18px rgba(23, 32, 59, 0.14);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.v2-body .v2-button {
  color: var(--v2-white);
}

.v2-button:hover {
  background: #263052;
  box-shadow: 0 10px 24px rgba(23, 32, 59, 0.19);
  transform: translateY(-1px);
}

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

.v2-button--small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 14px;
}

.v2-text-link,
.v2-text-button {
  min-height: 44px;
  padding: 0 4px;
  color: var(--v2-navy);
  background: transparent;
  gap: 8px;
}

.v2-text-link:hover,
.v2-text-button:hover {
  color: var(--v2-lavender-dark);
}

.v2-body a:focus-visible,
.v2-body button:focus-visible,
.v2-body input:focus-visible,
.v2-body summary:focus-visible {
  outline: 3px solid rgba(109, 103, 217, 0.42);
  outline-offset: 4px;
}

.v2-eyebrow {
  margin: 0 0 18px;
  color: var(--v2-lavender-dark);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-film-hero {
  position: relative;
  height: calc(100svh - 76px);
  min-height: 0;
  overflow: hidden;
  color: var(--v2-white);
  background: #000;
  isolation: isolate;
  transform: perspective(1600px) translateY(0) rotateX(0deg);
  transform-origin: 50% 0;
  will-change: height, opacity, transform;
  transition:
    height 820ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 460ms ease 180ms,
    transform 720ms cubic-bezier(0.76, 0, 0.24, 1);
}

.v2-film-hero.is-dismissing {
  height: 0;
  opacity: 0;
  transform: perspective(1600px) translateY(-72px) rotateX(86deg);
  pointer-events: none;
}

.v2-film-hero__video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.v2-film-hero__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.v2-film-hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 16%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 24%);
}

.v2-film-hero__controls {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 52px);
  bottom: clamp(22px, 3vw, 46px);
  left: clamp(22px, 3vw, 52px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.v2-film-hero__controls a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 14, 24, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.v2-film-hero__controls a {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.v2-film-hero__controls a {
  padding: 0 18px;
}

.v2-film-hero__controls a:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(20, 22, 38, 0.52);
  transform: translateY(-1px);
}

.v2-film-hero__controls a:focus-visible {
  outline-color: rgba(191, 188, 255, 0.9);
}

.v2-hero {
  display: grid;
  width: min(var(--v2-max), calc(100% - 48px));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 54px 0 80px;
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1.08fr);
  grid-template-areas: "copy orb";
  align-items: center;
  gap: clamp(28px, 5vw, 96px);
}

@media (max-width: 720px) {
  .v2-film-hero {
    height: calc(100svh - 68px);
  }

  .v2-film-hero__video {
    object-fit: contain;
  }

  .v2-film-hero__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 24%);
  }

  .v2-film-hero__controls {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

}

/* Tutorials */
.v2-tutorial-hero {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 138px) 0 clamp(62px, 7vw, 96px);
  text-align: center;
}

.v2-tutorial-hero h1 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(62px, 7.6vw, 104px);
  font-weight: 820;
  font-synthesis: none;
  letter-spacing: -0.044em;
  line-height: 0.94;
  text-wrap: balance;
}

.v2-tutorial-hero__lede {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--v2-muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  text-wrap: balance;
}

.v2-tutorial-hero .v2-actions {
  justify-content: center;
}

.v2-tutorial-feature {
  width: min(var(--v2-max), calc(100% - 48px));
  margin: 0 auto clamp(88px, 10vw, 148px);
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
}

.v2-tutorial-feature__head {
  display: grid;
  margin-bottom: clamp(28px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.v2-tutorial-feature__head .v2-eyebrow {
  margin-bottom: 14px;
}

.v2-tutorial-feature__head h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 780;
  font-synthesis: none;
  letter-spacing: -0.036em;
  line-height: 1;
  text-wrap: balance;
}

.v2-tutorial-feature__meta {
  display: flex;
  padding-bottom: 5px;
  color: var(--v2-faint);
  font-size: 13px;
  font-weight: 620;
  gap: 18px;
}

.v2-tutorial-feature__meta span + span {
  position: relative;
  padding-left: 18px;
}

.v2-tutorial-feature__meta span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--v2-line-strong);
  content: "";
  transform: translateY(-50%);
}

.v2-tutorial-video-shell {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 59, 0.12);
  border-radius: var(--v2-radius);
  background: #101522;
  box-shadow: 0 18px 50px rgba(23, 32, 59, 0.14);
  line-height: 0;
}

.v2-tutorial-video-shell video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.v2-tutorial-feature__note {
  max-width: 850px;
  margin: 24px 0 0;
  color: var(--v2-faint);
  font-size: 13px;
  line-height: 1.6;
}

.v2-tutorial-learning {
  padding-bottom: 0;
}

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

.v2-tutorial-links > a {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: var(--v2-white);
  box-shadow: 0 14px 34px rgba(27, 29, 48, 0.04);
  flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.v2-tutorial-links > a:hover {
  border-color: var(--v2-line-strong);
  box-shadow: 0 20px 46px rgba(27, 29, 48, 0.08);
  transform: translateY(-2px);
}

.v2-tutorial-links span {
  margin-bottom: 24px;
  color: var(--v2-lavender-dark);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-tutorial-links strong {
  max-width: 290px;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.v2-tutorial-links p {
  margin: 18px 0 28px;
  color: var(--v2-muted);
  line-height: 1.6;
}

.v2-tutorial-links i {
  margin-top: auto;
  color: var(--v2-lavender-dark);
  font-size: 18px;
  font-style: normal;
}

@media (max-width: 900px) {
  .v2-tutorial-links {
    grid-template-columns: 1fr;
  }

  .v2-tutorial-links > a {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .v2-tutorial-hero {
    width: calc(100% - 32px);
    padding: 64px 0 54px;
  }

  .v2-tutorial-hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .v2-tutorial-hero__lede {
    font-size: 17px;
  }

  .v2-tutorial-feature {
    width: calc(100% - 32px);
    margin-bottom: 84px;
    padding: 18px;
    border-radius: 22px;
  }

  .v2-tutorial-feature__head {
    margin-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v2-tutorial-feature__head h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .v2-tutorial-feature__meta {
    padding: 0;
  }

  .v2-tutorial-video-shell {
    border-radius: 13px;
  }

  .v2-tutorial-feature__note {
    margin-top: 18px;
  }

  .v2-tutorial-learning {
    padding-bottom: 0;
  }

  .v2-tutorial-links {
    gap: 14px;
  }

  .v2-tutorial-links > a {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-film-hero,
  .v2-film-hero__controls a {
    transition: none;
  }
}

.v2-hero__copy {
  grid-area: copy;
  max-width: 620px;
}

.v2-hero__orb {
  display: grid;
  grid-area: orb;
  min-height: 520px;
  place-items: center;
}

.v2-hero h1,
.v2-commercial-hero h1,
.v2-assisted-hero h1,
.v2-review-index h1 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(64px, 7.1vw, 108px);
  font-weight: 820;
  font-synthesis: none;
  letter-spacing: -0.042em;
  line-height: 0.94;
  text-wrap: balance;
}

.v2-hero__lede {
  max-width: 530px;
  margin: 30px 0 0;
  color: var(--v2-muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.v2-hero--interactive {
  min-height: auto;
  padding-top: 48px;
  padding-bottom: 68px;
  grid-template-columns: minmax(390px, 0.82fr) minmax(600px, 1.18fr);
  grid-template-areas: "copy product";
  gap: clamp(38px, 4vw, 70px);
}

.v2-hero--interactive h1 {
  font-size: clamp(62px, 6vw, 88px);
}

.v2-hero--business {
  display: flex;
  min-height: calc(100svh - 76px);
  padding: clamp(84px, 10vw, 150px) 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.v2-hero--business .v2-hero__copy {
  width: min(100%, 1060px);
  max-width: none;
  margin: 0 auto;
}

.v2-hero--business .v2-hero__eyebrow {
  color: var(--v2-faint);
}

.v2-hero--business h1 {
  font-size: clamp(72px, 8.4vw, 126px);
}

.v2-hero--business .v2-hero__lede {
  max-width: 970px;
  margin: 38px auto 0;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.55;
}

.v2-hero--business .v2-actions {
  justify-content: center;
}

.v2-hero__product {
  display: grid;
  min-width: 0;
  grid-area: product;
  align-items: center;
}

.v2-hero-demo {
  --v2-demo-accent: #6259ed;
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 568px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(32, 39, 69, 0.11);
  border-radius: 28px;
  color: var(--v2-ink);
  background:
    radial-gradient(circle at 94% 4%, rgba(99, 88, 237, 0.1), transparent 35%),
    linear-gradient(150deg, #fff 0%, #fafafe 65%, #f7f6ff 100%);
  box-shadow:
    0 28px 70px rgba(21, 28, 55, 0.12),
    0 2px 8px rgba(21, 28, 55, 0.04);
  isolation: isolate;
}

.v2-hero-demo::after {
  position: absolute;
  z-index: -1;
  right: -76px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(111, 103, 240, 0.05);
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.v2-hero-demo__topline,
.v2-hero-demo__quote-head,
.v2-hero-demo__quote-main,
.v2-hero-demo__prompt-row,
.v2-hero-demo__change-head,
.v2-hero-demo__change-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v2-hero-demo__topline {
  min-height: 30px;
}

.v2-hero-demo__eyebrow {
  margin: 0;
  color: var(--v2-demo-accent);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.v2-hero-demo__reset {
  padding: 5px 1px;
  border: 0;
  color: #67708a;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.v2-hero-demo[data-enhanced="true"] .v2-hero-demo__reset {
  opacity: 1;
  pointer-events: auto;
}

.v2-hero-demo__reset:hover {
  color: var(--v2-ink);
}

.v2-hero-demo__source {
  display: grid;
  margin-top: 12px;
  grid-template-columns: minmax(0, 1.35fr) minmax(142px, 0.65fr);
  gap: 12px;
}

.v2-hero-demo__drawing,
.v2-hero-demo__processing {
  min-width: 0;
  min-height: 78px;
  border-radius: 17px;
}

.v2-hero-demo__drawing {
  position: relative;
  display: flex;
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(32, 39, 69, 0.1);
  align-items: center;
  gap: 13px;
  background:
    repeating-linear-gradient(0deg, rgba(98, 89, 237, 0.035) 0 1px, transparent 1px 12px),
    #fff;
}

.v2-hero-demo__drawing::before {
  width: 30px;
  height: 38px;
  border: 1px solid rgba(98, 89, 237, 0.25);
  border-radius: 5px;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, transparent 0 70%, rgba(98, 89, 237, 0.14) 70%),
    linear-gradient(#fff, #faf9ff);
  box-shadow: 0 4px 12px rgba(31, 38, 67, 0.08);
  content: "";
}

.v2-hero-demo__drawing-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.v2-hero-demo__drawing-copy strong,
.v2-hero-demo__drawing-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-hero-demo__drawing-copy strong {
  font-size: 13px;
  font-weight: 750;
}

.v2-hero-demo__drawing-copy span,
.v2-hero-demo__status {
  color: #7b8398;
  font-size: 11px;
}

.v2-hero-demo__processing {
  display: flex;
  padding: 9px 12px;
  align-items: center;
  gap: 11px;
  background: rgba(245, 245, 253, 0.82);
}

.v2-orb.v2-orb--hero-demo {
  width: 58px;
  min-width: 58px;
  height: 58px;
  filter: saturate(0.92);
}

.v2-orb.v2-orb--hero-demo::before {
  inset: -12%;
  background: radial-gradient(circle, rgba(98, 89, 237, 0.12), transparent 67%);
}

.v2-hero-demo__status {
  display: block;
  max-width: 92px;
  line-height: 1.35;
}

.v2-hero-demo__quote {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(32, 39, 69, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(29, 36, 66, 0.07);
  transition: opacity 260ms ease, transform 320ms ease, box-shadow 260ms ease;
}

.v2-hero-demo__quote-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.v2-hero-demo__quote-title h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.v2-hero-demo__quote-title::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #38a26b;
  box-shadow: 0 0 0 4px rgba(56, 162, 107, 0.11);
  content: "";
}

.v2-hero-demo__quote-badge {
  padding: 5px 8px;
  border-radius: 999px;
  color: #5e56d9;
  background: #f2f1ff;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 780;
}

.v2-hero-demo__quote-main {
  margin-top: 13px;
  align-items: flex-end;
}

.v2-hero-demo__quote-total span,
.v2-hero-demo__quote-total small {
  display: block;
}

.v2-hero-demo__quote-total span {
  color: #70798f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.v2-hero-demo__quote-total strong {
  display: inline-block;
  margin-top: 3px;
  font-size: clamp(28px, 2.45vw, 38px);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1;
}

.v2-hero-demo__quote-total small {
  margin-top: 4px;
  color: #8a91a3;
  font-size: 10px;
}

.v2-hero-demo__quote-meta {
  display: grid;
  max-width: 232px;
  margin: 0;
  grid-template-columns: repeat(2, minmax(72px, 1fr));
  gap: 6px 14px;
}

.v2-hero-demo__quote-meta div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.v2-hero-demo__quote-meta dt {
  color: #8a91a3;
  font-size: 9px;
}

.v2-hero-demo__quote-meta dd {
  margin: 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 730;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-hero-demo__try {
  display: none;
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 1px solid rgba(98, 89, 237, 0.2);
  border-radius: 13px;
  color: #5149cf;
  background: #f4f3ff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 760;
}

.v2-hero-demo__interaction {
  display: block;
  min-height: 94px;
  margin-top: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

.v2-hero-demo:not([data-enhanced="true"]) .v2-hero-demo__interaction {
  display: none;
}

.v2-hero-demo__interaction label {
  display: block;
  margin-bottom: 7px;
  color: #5f687e;
  font-size: 11px;
  font-weight: 720;
}

.v2-hero-demo__prompt-row {
  position: relative;
  padding: 6px;
  border: 1px solid rgba(32, 39, 69, 0.13);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(28, 35, 65, 0.06);
  gap: 8px;
}

.v2-hero-demo__prompt-row:focus-within {
  border-color: rgba(98, 89, 237, 0.65);
  box-shadow: 0 0 0 3px rgba(98, 89, 237, 0.1);
}

.v2-hero-demo__prompt-row input {
  width: 100%;
  min-width: 0;
  padding: 6px 8px;
  border: 0;
  outline: 0;
  color: var(--v2-ink);
  background: transparent;
  font-size: 12px;
}

.v2-hero-demo__prompt-row input::placeholder {
  color: #999fb0;
}

.v2-hero-demo__prompt-row button {
  min-width: 84px;
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--v2-ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.v2-hero-demo__prompt-row button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.v2-hero-demo__examples {
  position: relative;
  margin-top: 6px;
}

.v2-hero-demo__examples summary {
  width: max-content;
  color: #70798f;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  list-style: none;
}

.v2-hero-demo__examples summary::-webkit-details-marker {
  display: none;
}

.v2-hero-demo__examples summary::after {
  margin-left: 5px;
  content: "↓";
}

.v2-hero-demo__examples[open] summary::after {
  content: "↑";
}

.v2-hero-demo__example-list {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 0;
  left: 0;
  display: grid;
  padding: 7px;
  border: 1px solid rgba(32, 39, 69, 0.12);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(25, 31, 58, 0.14);
  gap: 4px;
}

.v2-hero-demo__example-list button {
  padding: 8px 9px;
  border: 0;
  border-radius: 8px;
  color: #4f5870;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  text-align: left;
}

.v2-hero-demo__example-list button:hover {
  color: #4f47ce;
  background: #f4f3ff;
}

.v2-hero-demo[data-state="error"] .v2-hero-demo__example-list {
  position: static;
  margin-top: 7px;
  box-shadow: none;
}

.v2-hero-demo__limitation {
  margin: 6px 0 0;
  color: #9b563e;
  font-size: 10px;
  line-height: 1.45;
}

.v2-hero-demo__change {
  display: block !important;
  min-height: 151px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(98, 89, 237, 0.16);
  border-radius: 16px;
  background: linear-gradient(145deg, #f6f5ff, #fafaff);
  opacity: 0;
  pointer-events: none;
  transform: translateY(7px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

.v2-hero-demo:not([data-enhanced="true"]) .v2-hero-demo__change {
  display: none !important;
}

.v2-hero-demo__change-head strong {
  font-size: 12px;
}

.v2-hero-demo__change-head span {
  color: #756ee5;
  font-size: 10px;
  font-weight: 750;
}

.v2-hero-demo__change-list {
  display: grid;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  gap: 5px;
}

.v2-hero-demo__change-list li {
  position: relative;
  padding-left: 14px;
  color: #5f687e;
  font-size: 10px;
  line-height: 1.35;
}

.v2-hero-demo__change-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: #6259ed;
  content: "✓";
  font-weight: 800;
}

.v2-hero-demo__change-summary {
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(98, 89, 237, 0.13);
}

.v2-hero-demo__change-summary span {
  color: #697188;
  font-size: 10px;
}

.v2-hero-demo__change-summary strong {
  font-size: 14px;
  font-weight: 760;
}

.v2-hero-demo__review {
  display: inline-flex;
  margin-top: 6px;
  padding: 0;
  border: 0;
  color: #5149cf;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.v2-hero-demo__review::after {
  margin-left: 5px;
  content: "→";
}

.v2-hero-demo__review-note {
  margin: 5px 0 0;
  color: #697188;
  font-size: 9px;
  line-height: 1.35;
}

.v2-hero-demo[data-enhanced="true"][data-state="poster"] .v2-hero-demo__quote,
.v2-hero-demo[data-enhanced="true"][data-state="drawingReceived"] .v2-hero-demo__quote,
.v2-hero-demo[data-enhanced="true"][data-state="reading"] .v2-hero-demo__quote,
.v2-hero-demo[data-enhanced="true"][data-state="applyingPricing"] .v2-hero-demo__quote {
  opacity: 0.56;
  transform: translateY(7px) scale(0.987);
  box-shadow: 0 5px 15px rgba(29, 36, 66, 0.035);
}

.v2-hero-demo[data-enhanced="true"][data-state="reading"] .v2-hero-demo__drawing,
.v2-hero-demo[data-enhanced="true"][data-state="applyingPricing"] .v2-hero-demo__drawing {
  border-color: rgba(98, 89, 237, 0.26);
}

.v2-hero-demo[data-enhanced="true"][data-state="promptEntering"] .v2-hero-demo__interaction,
.v2-hero-demo[data-enhanced="true"][data-state="calculatingChange"] .v2-hero-demo__interaction,
.v2-hero-demo[data-enhanced="true"][data-state="changeReady"] .v2-hero-demo__interaction,
.v2-hero-demo[data-enhanced="true"][data-state="interactive"][data-prompt-open="true"] .v2-hero-demo__interaction,
.v2-hero-demo[data-enhanced="true"][data-state="error"] .v2-hero-demo__interaction {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.v2-hero-demo[data-enhanced="true"][data-state="changeReady"] .v2-hero-demo__change:not([hidden]),
.v2-hero-demo[data-enhanced="true"][data-state="interactive"] .v2-hero-demo__change:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.v2-hero-demo[data-state="calculatingChange"] .v2-hero-demo__prompt-row {
  background:
    linear-gradient(90deg, rgba(98, 89, 237, 0.04), rgba(98, 89, 237, 0.13), rgba(98, 89, 237, 0.04)),
    #fff;
  background-size: 220% 100%;
  animation: v2-demo-calculate 1s linear infinite;
}

@keyframes v2-demo-calculate {
  to {
    background-position: -120% 0;
  }
}

.v2-hero-reveal {
  --v2-reveal-accent: #6259ed;
  display: grid;
  width: 100%;
  min-height: 460px;
  padding: 36px 0;
  align-content: center;
  color: var(--v2-ink);
  text-align: left;
}

.v2-hero-reveal__topline {
  display: flex;
  min-height: 32px;
  margin-bottom: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-hero-reveal__topline span,
.v2-hero-reveal__speaker {
  color: var(--v2-faint);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-hero-reveal__topline button {
  padding: 6px 0;
  border: 0;
  color: var(--v2-faint);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: color 160ms ease, opacity 180ms ease;
}

.v2-hero-reveal[data-enhanced="true"] .v2-hero-reveal__topline button {
  opacity: 1;
  pointer-events: auto;
}

.v2-hero-reveal__topline button:hover {
  color: var(--v2-ink);
}

.v2-hero-reveal__turn {
  display: grid;
  min-height: 118px;
  align-content: start;
  gap: 12px;
}

.v2-hero-reveal__turn p {
  max-width: 670px;
  min-height: 2.9em;
  margin: 0;
  text-wrap: balance;
}

.v2-hero-reveal__turn--user p {
  color: #626a7c;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.v2-hero-reveal__turn--joina {
  margin-top: 14px;
  transition: opacity 260ms ease, transform 320ms ease;
}

.v2-hero-reveal__turn--joina .v2-hero-reveal__speaker {
  color: var(--v2-reveal-accent);
}

.v2-hero-reveal__turn--joina p {
  font-family: var(--v2-display);
  font-size: clamp(34px, 3.25vw, 50px);
  font-synthesis: none;
  letter-spacing: -0.038em;
  line-height: 1.06;
}

.v2-hero-reveal[data-enhanced="true"][data-state="idle"] .v2-hero-reveal__turn--joina,
.v2-hero-reveal[data-enhanced="true"][data-state="typing"] .v2-hero-reveal__turn--joina,
.v2-hero-reveal[data-enhanced="true"][data-state="thinking"] .v2-hero-reveal__turn--joina {
  opacity: 0;
  transform: translateY(10px);
}

.v2-hero-reveal__status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--v2-reveal-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.v2-hero-reveal[data-state="typing"] .v2-hero-reveal__turn--user p::after,
.v2-hero-reveal[data-state="responding"] .v2-hero-reveal__turn--joina p::after {
  display: inline-block;
  width: 2px;
  height: 0.88em;
  margin-left: 5px;
  background: currentColor;
  content: "";
  transform: translateY(0.08em);
  animation: v2-reveal-cursor 760ms steps(1, end) infinite;
}

@keyframes v2-reveal-cursor {
  50% {
    opacity: 0;
  }
}

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

.v2-hero__note {
  margin: 20px 0 0;
  color: var(--v2-faint);
  font-size: 13px;
}

.v2-orb {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 260px;
  height: 260px;
  flex: 0 0 auto;
  place-items: center;
  contain: strict;
}

.v2-orb canvas {
  position: absolute;
  z-index: 2;
  inset: 2%;
  display: block;
  width: 96%;
  height: 96%;
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 420ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-orb[data-orb-renderer="webgl"] canvas {
  opacity: 1;
  transform: scale(1);
}

.v2-orb__fallback {
  position: absolute;
  z-index: 1;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 31%, rgba(255, 255, 255, 0.74), transparent 13%),
    radial-gradient(circle at 58% 65%, rgba(139, 161, 230, 0.72), transparent 44%),
    radial-gradient(circle at 36% 62%, #5753bc, #807ee1 48%, #b7b9eb 100%);
  box-shadow: 0 46px 65px rgba(107, 101, 204, 0.22), inset -20px -18px 40px rgba(39, 48, 107, 0.18);
  transition: opacity 320ms ease, background 320ms ease;
}

.v2-orb[data-orb-renderer="webgl"] .v2-orb__fallback {
  opacity: 0;
}

.v2-orb[data-orb-state="extracting"] .v2-orb__fallback,
.v2-orb[data-orb-state="reasoning"] .v2-orb__fallback {
  background:
    radial-gradient(circle at 37% 31%, rgba(255, 255, 255, 0.8), transparent 13%),
    radial-gradient(circle at 58% 65%, rgba(116, 176, 200, 0.8), transparent 44%),
    radial-gradient(circle at 36% 62%, #4d4ba8, #7a76e6 48%, #9fd0da 100%);
}

.v2-orb[data-orb-state="complete"] .v2-orb__fallback {
  background:
    radial-gradient(circle at 37% 31%, rgba(255, 255, 255, 0.88), transparent 13%),
    radial-gradient(circle at 58% 65%, rgba(172, 218, 198, 0.8), transparent 44%),
    radial-gradient(circle at 36% 62%, #4d52b4, #8589ed 48%, #c2ddda 100%);
}

.v2-orb[data-orb-state="error"] .v2-orb__fallback {
  background: radial-gradient(circle at 35% 30%, #df9b8b, #a54e60 56%, #603d62);
}

.v2-orb--hero {
  width: clamp(340px, 38vw, 520px);
  height: clamp(340px, 38vw, 520px);
}

.v2-orb--commercial {
  width: clamp(240px, 25vw, 340px);
  height: clamp(240px, 25vw, 340px);
}

.v2-orb--small {
  width: 110px;
  height: 110px;
}

.v2-orb--test {
  width: 104px;
  height: 104px;
}

.v2-section {
  width: min(var(--v2-max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 148px) 0;
}

.v2-section--rule {
  border-top: 1px solid var(--v2-line);
}

.v2-section-heading {
  max-width: 700px;
  margin-bottom: 56px;
}

.v2-section-heading--wide {
  max-width: 900px;
}

.v2-section h2,
.v2-final-cta h2 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 780;
  font-synthesis: none;
  letter-spacing: -0.036em;
  line-height: 1;
  text-wrap: balance;
}

.v2-section-heading > p:last-child,
.v2-commercial-proof > div > p:last-child,
.v2-adapts__copy > p,
.v2-assisted > div > p,
.v2-final-cta > p {
  color: var(--v2-muted);
  font-size: 18px;
  line-height: 1.65;
}

.v2-drawing-test {
  padding-top: 110px;
}

.v2-drawing-test__panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
  grid-template-columns: 1fr 0.86fr;
}

.v2-upload,
.v2-drawing-result {
  min-height: 480px;
  padding: clamp(28px, 4vw, 54px);
}

.v2-drawing-result {
  display: flex;
  border-left: 1px solid var(--v2-line);
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(145deg, #f7f6ff, #fbfbfe);
  flex-direction: column;
}

.v2-drawing-result > div:not(.v2-orb) {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

.v2-drawing-result > .v2-orb {
  flex: 0 0 auto;
}

.v2-drawing-result h3 {
  max-width: 360px;
  margin: 0 0 12px;
  font-family: var(--v2-display);
  font-size: 38px;
  font-weight: 750;
  font-synthesis: none;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.v2-drawing-result p:not(.v2-eyebrow) {
  color: var(--v2-muted);
  line-height: 1.55;
}

.v2-dropzone {
  display: flex;
  min-height: 280px;
  padding: 30px;
  border: 1px dashed var(--v2-line-strong);
  border-radius: var(--v2-radius);
  align-items: center;
  justify-content: center;
  color: var(--v2-muted);
  background: var(--v2-warm);
  cursor: pointer;
  flex-direction: column;
  transition: border 160ms ease, background 160ms ease;
}

.v2-dropzone:hover,
.v2-dropzone.is-dragging {
  border-color: var(--v2-lavender);
  background: var(--v2-lavender-wash);
}

.v2-dropzone:focus-within {
  outline: 3px solid rgba(109, 103, 217, 0.35);
  outline-offset: 3px;
}

.v2-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.v2-dropzone__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid #dedbed;
  border-radius: 50%;
  place-items: center;
  color: var(--v2-lavender-dark);
  background: var(--v2-white);
  font-size: 20px;
}

.v2-dropzone strong {
  margin-bottom: 8px;
  color: var(--v2-ink);
  font-size: 19px;
}

.v2-dropzone span:last-child {
  font-size: 14px;
}

.v2-upload__selected {
  display: flex;
  min-height: 62px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-sm);
  align-items: center;
  justify-content: space-between;
}

.v2-upload__selected[hidden] {
  display: none;
}

.v2-upload__selected div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.v2-upload__selected strong {
  overflow: hidden;
  max-width: 360px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-upload__selected span {
  color: var(--v2-faint);
  font-size: 12px;
}

.v2-upload__selected button {
  min-height: 40px;
  border: 0;
  color: var(--v2-muted);
  background: transparent;
  cursor: pointer;
}

.v2-upload__actions {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 18px;
}

.v2-form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--v2-muted);
  font-size: 14px;
}

.v2-form-status[data-tone="error"] {
  color: var(--v2-error);
}

.v2-form-status[data-tone="success"] {
  color: var(--v2-positive);
}

.v2-privacy-note,
.v2-small {
  color: var(--v2-faint) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.v2-privacy-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v2-result-list {
  display: grid;
  min-width: 0;
  margin: 24px 0;
  gap: 0;
}

.v2-result-list div {
  display: grid;
  min-width: 0;
  padding: 11px 0;
  border-top: 1px solid rgba(109, 103, 217, 0.13);
  grid-template-columns: minmax(112px, 140px) minmax(0, 1fr);
  gap: 16px;
}

.v2-result-list dt {
  color: var(--v2-faint);
  font-size: 12px;
}

.v2-result-list dd {
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 620;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.v2-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 70px);
}

.v2-steps li {
  padding-top: 22px;
  border-top: 1px solid var(--v2-line-strong);
}

.v2-steps span,
.v2-product-frame__label span,
.v2-assisted-hero__aside li span {
  color: var(--v2-lavender-dark);
  font-size: 12px;
  font-weight: 720;
}

.v2-steps h3,
.v2-use-case__grid h3 {
  margin: 26px 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.v2-steps p,
.v2-use-case__grid p {
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.65;
}

.v2-proof {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--v2-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--v2-max)) / 2));
  background: var(--v2-white);
}

.v2-proof-story {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.65fr) auto minmax(260px, 0.65fr);
  gap: clamp(18px, 3vw, 40px);
}

.v2-proof-story__arrow {
  color: var(--v2-lavender);
  font-size: 28px;
}

.v2-product-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
}

.v2-product-frame img {
  width: 100%;
  height: auto;
}

.v2-product-frame__label {
  display: flex;
  min-height: 54px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--v2-line);
  color: var(--v2-muted);
  font-size: 13px;
}

.v2-product-frame--portrait img {
  aspect-ratio: 0.707 / 1;
  object-fit: cover;
  object-position: top;
}

.v2-product-frame figcaption {
  padding: 14px 16px;
  color: var(--v2-faint);
  font-size: 11px;
  line-height: 1.5;
}

.v2-proof-flow {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.v2-proof-flow li {
  display: flex;
  padding: 16px 18px;
  border-top: 1px solid var(--v2-line);
  color: var(--v2-muted);
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 650;
}

.v2-proof-flow li + li {
  border-left: 1px solid var(--v2-line);
}

.v2-proof-flow span {
  color: var(--v2-lavender-dark);
  font-size: 11px;
}

.v2-pricing-proof {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(48px, 8vw, 112px);
}

.v2-pricing-proof__copy > p:not(.v2-eyebrow) {
  color: var(--v2-muted);
  font-size: 17px;
  line-height: 1.7;
}

.v2-pricing-proof__copy ul {
  display: grid;
  margin: 28px 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.v2-pricing-proof__copy li {
  padding: 11px 4px;
  border-bottom: 1px solid var(--v2-line);
  font-size: 13px;
  font-weight: 650;
}

.v2-pricing-proof__panel {
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
}

.v2-pricing-proof__head {
  display: flex;
  padding: clamp(24px, 4vw, 42px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #f7f6ff, #fff);
}

.v2-pricing-proof__head h3 {
  margin: 12px 0 0;
  font-family: var(--v2-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 760;
  font-synthesis: none;
  letter-spacing: -0.034em;
  line-height: 1;
}

.v2-pricing-proof__head > strong {
  font-family: var(--v2-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 760;
  font-synthesis: none;
  letter-spacing: -0.034em;
}

.v2-pricing-proof__rows > div {
  display: grid;
  padding: 15px clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--v2-line);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
}

.v2-pricing-proof__rows span {
  display: grid;
  gap: 3px;
}

.v2-pricing-proof__rows strong,
.v2-pricing-proof__rows b {
  font-size: 14px;
}

.v2-pricing-proof__rows small {
  overflow-wrap: anywhere;
  color: var(--v2-faint);
  font-size: 11px;
}

.v2-pricing-proof__rows .is-tax {
  background: var(--v2-paper);
}

.v2-pricing-proof__rows .is-total {
  border-top-color: var(--v2-line-strong);
  background: var(--v2-navy);
  color: var(--v2-white);
}

.v2-pricing-proof__rows .is-total small {
  color: #bfc4d7;
}

.v2-pricing-proof__internal {
  margin: 0;
  padding: 16px clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--v2-line);
  color: var(--v2-faint);
  font-size: 11px;
  line-height: 1.5;
}

.v2-pricing-proof__evidence {
  grid-column: 1 / -1;
}

.v2-pricing-proof__evidence img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.v2-adapts,
.v2-commercial-proof {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
}

.v2-adapts__copy ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  list-style: none;
}

.v2-adapts__copy li {
  padding: 16px 2px;
  border-bottom: 1px solid var(--v2-line);
  font-weight: 620;
}

.v2-assisted {
  display: grid;
  width: min(var(--v2-max), calc(100% - 48px));
  padding: clamp(58px, 7vw, 92px);
  border-radius: var(--v2-radius-lg);
  color: var(--v2-white);
  background: var(--v2-navy);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
}

.v2-assisted h2 {
  max-width: 500px;
}

.v2-assisted .v2-eyebrow {
  color: #c7c3ff;
}

.v2-assisted > div > p,
.v2-assisted .v2-small {
  color: #c9ccda !important;
}

.v2-assisted .v2-button {
  margin-top: 16px;
  color: var(--v2-navy);
  background: var(--v2-white);
}

body.v2-body .v2-assisted .v2-button {
  color: var(--v2-navy);
}

.v2-assisted .v2-privacy-note a {
  color: var(--v2-white);
}

.v2-body[data-marketing-v2="pricing"] .v2-assisted + .v2-assisted {
  margin-top: clamp(20px, 2.5vw, 36px);
}

.v2-assisted-pricing {
  display: grid;
  width: min(var(--v2-max), calc(100% - 48px));
  margin-bottom: clamp(32px, 4vw, 56px);
  padding: clamp(52px, 5vw, 68px) clamp(48px, 7vw, 82px);
  border-radius: var(--v2-radius-lg);
  align-items: center;
  color: var(--v2-white);
  background: var(--v2-navy);
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(48px, 6vw, 88px);
}

.v2-assisted-pricing .v2-eyebrow {
  color: #c7c3ff;
}

.v2-assisted-pricing h2 {
  max-width: 540px;
}

.v2-assisted-pricing p:not(.v2-eyebrow):not(.v2-price) {
  color: #c9ccda;
  line-height: 1.65;
}

.v2-assisted-pricing .v2-button {
  margin-top: 14px;
  color: var(--v2-navy);
  background: var(--v2-white);
}

body.v2-body .v2-assisted-pricing .v2-button {
  color: var(--v2-navy);
}

.v2-assisted-pricing .v2-button:hover {
  color: var(--v2-navy);
  background: #efeeff;
}

.v2-assisted-pricing__plan {
  padding: 30px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.v2-assisted-pricing__plan .v2-price {
  align-items: baseline;
  gap: 8px;
}

.v2-assisted-pricing__plan .v2-price strong {
  font-family: var(--v2-display);
  font-size: 54px;
  font-weight: 760;
  font-synthesis: none;
  letter-spacing: -0.034em;
}

.v2-assisted-pricing__plan .v2-text-link {
  margin: 22px 0 0 18px;
  color: var(--v2-white);
}

.v2-pricing {
  padding-bottom: 80px;
}

.v2-price-card {
  display: grid;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.v2-price-card__name {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 740;
  letter-spacing: -0.03em;
}

.v2-price-card__heading {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.v2-price-card__heading > span {
  padding: 8px 12px;
  border: 1px solid rgba(74, 69, 198, 0.16);
  border-radius: 999px;
  color: var(--v2-blue);
  background: rgba(74, 69, 198, 0.06);
  font-size: 12px;
  font-weight: 720;
}

.v2-price {
  display: flex;
  margin: 0;
  align-items: baseline;
  gap: 10px;
}

.v2-price strong {
  font-family: var(--v2-display);
  font-size: clamp(58px, 6vw, 84px);
  font-weight: 760;
  font-synthesis: none;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.v2-price span {
  color: var(--v2-faint);
  font-size: 12px;
  line-height: 1.45;
}

.v2-price-card__intro > p:not(.v2-price):not(.v2-price-card__includes) {
  margin: 20px 0 0;
  color: var(--v2-muted);
  font-size: 18px;
  line-height: 1.55;
}

.v2-price-card__includes {
  margin: 30px 0 0;
  font-weight: 740;
}

.v2-price-card__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.v2-price-card__features ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
  gap: 12px;
}

.v2-price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--v2-muted);
  line-height: 1.45;
}

.v2-price-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--v2-blue);
  content: "";
}

.v2-price-card li strong {
  color: var(--v2-ink);
}

.v2-price-card li small {
  display: block;
  margin-top: 4px;
  color: var(--v2-faint);
  font-size: 13px;
  line-height: 1.5;
}

.v2-price-card > .v2-button {
  justify-self: start;
}

.v2-price-card__terms {
  margin: -12px 0 0;
  color: var(--v2-faint);
  font-size: 13px;
}

.v2-final-cta {
  display: grid;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) 0;
  place-items: center;
  text-align: center;
}

.v2-final-cta h2 {
  margin-top: 28px;
}

.v2-final-cta p {
  max-width: 540px;
  margin: 24px auto 30px;
}

.v2-footer {
  border-top: 1px solid var(--v2-line);
  background: #f5f3ef;
}

.v2-footer__inner {
  display: grid;
  width: min(var(--v2-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 64px;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 32px;
}

.v2-footer__brand img {
  width: 92px;
}

.v2-footer__brand p {
  max-width: 260px;
  margin: 24px 0 0;
  color: var(--v2-muted);
  font-family: var(--v2-display);
  font-size: 25px;
  font-weight: 720;
  font-synthesis: none;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.v2-footer nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.v2-footer nav strong {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-footer nav a {
  color: var(--v2-muted);
  font-size: 14px;
}

.v2-footer nav a:hover {
  color: var(--v2-ink);
}

.v2-footer__base {
  display: flex;
  width: min(var(--v2-max), calc(100% - 48px));
  min-height: 64px;
  margin: 0 auto;
  border-top: 1px solid var(--v2-line);
  align-items: center;
  justify-content: space-between;
  color: var(--v2-faint);
  font-size: 12px;
}

.v2-commercial-hero,
.v2-assisted-hero {
  display: grid;
  width: min(var(--v2-max), calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 84px 0 110px;
  align-items: center;
  grid-template-columns: minmax(500px, 1fr) minmax(300px, 0.62fr);
  gap: clamp(50px, 8vw, 130px);
}

.v2-commercial-hero h1,
.v2-assisted-hero h1 {
  font-size: clamp(60px, 7vw, 100px);
}

.v2-commercial-hero > div > p:not(.v2-eyebrow),
.v2-assisted-hero > div > p:not(.v2-eyebrow) {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--v2-muted);
  font-size: 20px;
  line-height: 1.6;
}

.v2-commercial-proof {
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-category-guide {
  border-top: 1px solid var(--v2-line);
}

.v2-category-guide__intro {
  max-width: 920px;
}

.v2-category-guide__intro > p:last-child,
.v2-category-guide__fit > p {
  color: var(--v2-muted);
  font-size: 18px;
  line-height: 1.65;
}

.v2-category-guide__definition {
  margin: 32px 0 20px;
  color: var(--v2-ink);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.38;
}

.v2-category-guide__criteria {
  margin-top: 72px;
}

.v2-category-guide__criteria .v2-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.v2-category-guide__criteria h3 {
  margin: 0;
  font-family: var(--v2-display);
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.v2-category-guide__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.v2-category-guide__grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: var(--v2-white);
  grid-column: span 2;
}

.v2-category-guide__grid article:nth-child(4),
.v2-category-guide__grid article:nth-child(5) {
  grid-column: span 3;
}

.v2-category-guide__grid h4 {
  margin: 0 0 14px;
  font-size: 18px;
}

.v2-category-guide__grid p {
  margin: 0;
  color: var(--v2-muted);
  line-height: 1.58;
}

.v2-category-guide__fit {
  display: grid;
  margin-top: 52px;
  padding: 34px;
  border-radius: var(--v2-radius);
  background: var(--v2-ink);
  color: var(--v2-white);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.v2-category-guide__fit h3 {
  margin: 8px 0 0;
  font-family: var(--v2-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.v2-category-guide__fit .v2-eyebrow,
.v2-category-guide__fit > p {
  color: rgba(255, 255, 255, 0.74);
}

.v2-category-guide__fit > p {
  margin: 0;
  align-self: center;
}

.v2-category-guide__links {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.v2-use-case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v2-use-case__grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: var(--v2-white);
}

.v2-use-case__grid h3 {
  margin-top: 0;
}

.v2-faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 9vw, 130px);
}

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

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

.v2-faq summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

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

.v2-faq summary::after {
  position: absolute;
  top: 20px;
  right: 6px;
  color: var(--v2-lavender);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.v2-faq details[open] summary::after {
  content: "−";
}

.v2-faq details p {
  max-width: 650px;
  margin: -4px 0 24px;
  color: var(--v2-muted);
  line-height: 1.7;
}

.v2-body--commercial .v2-adapts {
  padding-top: 100px;
}

.v2-body--commercial .v2-pricing {
  padding-top: 30px;
}

.v2-assisted-hero__aside {
  display: grid;
  padding: 34px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-lg);
  place-items: center;
  background: var(--v2-white);
  box-shadow: var(--v2-shadow);
}

.v2-assisted-hero__aside ol {
  width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.v2-assisted-hero__aside li {
  display: grid;
  padding: 15px 4px;
  border-top: 1px solid var(--v2-line);
  grid-template-columns: 36px 1fr;
  font-size: 14px;
}

.v2-proof--compact {
  background: transparent;
}

.v2-assisted--standalone {
  margin-top: 20px;
  margin-bottom: 40px;
}

.v2-review-index {
  background: var(--v2-warm);
}

.v2-review-index main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 120px;
}

.v2-review-index__header {
  margin-bottom: 70px;
}

.v2-review-index__header img {
  width: 100px;
  margin-bottom: 46px;
}

.v2-review-index h1 {
  max-width: 780px;
  font-size: clamp(58px, 8vw, 92px);
}

.v2-review-index__header > p:last-child {
  max-width: 700px;
  color: var(--v2-muted);
  font-size: 18px;
  line-height: 1.6;
}

.v2-review-index section {
  padding: 44px 0;
  border-top: 1px solid var(--v2-line);
}

.v2-review-index section h2 {
  font-family: var(--v2-display);
  font-size: 38px;
  font-weight: 760;
  font-synthesis: none;
  letter-spacing: -0.025em;
}

.v2-review-links {
  display: grid;
}

.v2-review-links a {
  display: flex;
  min-height: 58px;
  border-bottom: 1px solid var(--v2-line);
  align-items: center;
  justify-content: space-between;
}

.v2-review-links a:hover {
  color: var(--v2-lavender-dark);
}

.v2-review-index code {
  display: block;
  margin: 8px 0;
  padding: 13px 15px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-white);
}

@media (max-width: 980px) {
  .v2-hero {
    min-height: auto;
    padding-top: 30px;
    grid-template-columns: 1fr;
    grid-template-areas: "orb" "copy";
    text-align: center;
  }

  .v2-hero__orb {
    min-height: 390px;
  }

  .v2-hero__copy {
    margin: 0 auto;
  }

  .v2-hero__lede {
    margin-right: auto;
    margin-left: auto;
  }

  .v2-actions {
    justify-content: center;
  }

  .v2-hero--interactive {
    padding-top: 42px;
    grid-template-areas: "copy" "product";
    gap: 44px;
  }

  .v2-hero--interactive .v2-hero__copy {
    max-width: 700px;
  }

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

  .v2-drawing-test__panel,
  .v2-adapts,
  .v2-commercial-proof,
  .v2-assisted,
  .v2-assisted-pricing,
  .v2-pricing-proof,
  .v2-faq {
    grid-template-columns: 1fr;
  }

  .v2-drawing-result {
    min-height: 360px;
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

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

  .v2-pricing-proof {
    gap: 52px;
  }

  .v2-proof-story__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .v2-adapts,
  .v2-commercial-proof {
    gap: 52px;
  }

  .v2-price-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .v2-price-card .v2-button {
    justify-self: start;
  }

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

  .v2-footer__inner nav:last-child {
    grid-column: 2;
  }

  .v2-commercial-hero,
  .v2-assisted-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .v2-commercial-hero .v2-orb {
    grid-row: 1;
    justify-self: center;
  }

  .v2-category-guide__grid article,
  .v2-category-guide__grid article:nth-child(4),
  .v2-category-guide__grid article:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .v2-header__inner {
    width: min(100% - 32px, var(--v2-max));
    min-height: 68px;
  }

  .v2-menu-button {
    display: inline-flex;
    min-width: 74px;
    min-height: 44px;
    padding: 0 8px;
    border: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    color: var(--v2-ink);
    background: transparent;
  }

  .v2-menu-button i,
  .v2-menu-button i::before,
  .v2-menu-button i::after {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .v2-menu-button i {
    position: relative;
  }

  .v2-menu-button i::before {
    position: absolute;
    top: -5px;
  }

  .v2-menu-button i::after {
    position: absolute;
    top: 5px;
  }

  .v2-header__nav-wrap {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--v2-line);
    align-items: stretch;
    background: var(--v2-warm);
    flex-direction: column;
    gap: 12px;
  }

  .v2-header__nav-wrap.is-open {
    display: flex;
  }

  .v2-nav,
  .v2-header__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .v2-header__nav-wrap.has-mobile-nav > .v2-nav:not(.v2-nav--mobile) {
    display: none;
  }

  .v2-header__separator {
    display: none;
  }

  .v2-nav--mobile {
    display: flex;
    gap: 0;
  }

  .v2-nav--mobile a {
    min-height: 52px;
    padding: 0 2px;
    border-bottom: 1px solid var(--v2-line);
    color: var(--v2-ink);
    font-size: 16px;
    font-weight: 560;
  }

  .v2-nav-group summary {
    display: flex;
    width: 100%;
    min-height: 46px;
    padding: 0 2px;
    justify-content: space-between;
  }

  .v2-nav-dropdown {
    position: static;
    width: auto;
    margin: 0 0 8px 10px;
    padding: 2px 0 2px 10px;
    border: 0;
    border-left: 1px solid var(--v2-line-strong);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .v2-nav-dropdown::before {
    display: none;
  }

  .v2-nav a,
  .v2-link-button {
    display: flex;
    min-height: 46px;
    align-items: center;
  }

  .v2-nav-dropdown a {
    display: grid;
    min-height: 0;
    padding: 10px 12px;
    align-items: initial;
  }

  .v2-header__actions .v2-button {
    margin-top: 6px;
  }

  .v2-hero,
  .v2-section,
  .v2-commercial-hero,
  .v2-assisted-hero {
    width: min(100% - 32px, var(--v2-max));
  }

  .v2-hero {
    padding: 14px 0 72px;
  }

  .v2-hero__orb {
    min-height: 278px;
  }

  .v2-orb--hero {
    width: 276px;
    height: 276px;
  }

  .v2-hero h1 {
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.92;
  }

  .v2-hero__lede {
    margin-top: 24px;
    font-size: 17px;
  }

  .v2-hero--interactive {
    padding-top: 44px;
    padding-bottom: 62px;
    gap: 38px;
  }

  .v2-hero--interactive .v2-hero__copy {
    text-align: left;
  }

  .v2-hero--interactive .v2-hero__lede {
    margin-right: 0;
    margin-left: 0;
  }

  .v2-hero--interactive .v2-actions {
    justify-content: flex-start;
  }

  .v2-hero-demo {
    min-height: auto;
    padding: 14px;
    border-radius: 21px;
    box-shadow: 0 20px 48px rgba(21, 28, 55, 0.1);
  }

  .v2-hero-demo__source {
    margin-top: 8px;
    grid-template-columns: minmax(0, 1fr) 126px;
    gap: 8px;
  }

  .v2-hero-demo__drawing,
  .v2-hero-demo__processing {
    min-height: 68px;
    border-radius: 14px;
  }

  .v2-hero-demo__drawing {
    padding: 11px;
    gap: 9px;
  }

  .v2-hero-demo__drawing::before {
    width: 25px;
    height: 32px;
  }

  .v2-hero-demo__drawing-copy strong {
    font-size: 11px;
  }

  .v2-hero-demo__processing {
    padding: 8px;
    gap: 7px;
  }

  .v2-orb.v2-orb--hero-demo {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .v2-hero-demo__status {
    font-size: 9px;
  }

  .v2-hero-demo__quote {
    margin-top: 8px;
    padding: 14px;
    border-radius: 15px;
  }

  .v2-hero-demo__quote-head,
  .v2-hero-demo__quote-main {
    align-items: flex-start;
  }

  .v2-hero-demo__quote-main {
    margin-top: 12px;
    gap: 12px;
  }

  .v2-hero-demo__quote-total strong {
    font-size: 28px;
  }

  .v2-hero-demo__quote-meta {
    max-width: 178px;
    gap: 5px 9px;
  }

  .v2-hero-demo__try {
    display: flex;
  }

  .v2-hero-demo[data-prompt-open="true"] .v2-hero-demo__try {
    display: none;
  }

  .v2-hero-demo__interaction,
  .v2-hero-demo__change {
    min-height: 0;
  }

  .v2-hero-demo__interaction,
  .v2-hero-demo[data-enhanced="true"] .v2-hero-demo__interaction,
  .v2-hero-demo__change,
  .v2-hero-demo[data-enhanced="true"] .v2-hero-demo__change {
    display: none !important;
  }

  .v2-hero-demo[data-enhanced="true"][data-prompt-open="true"] .v2-hero-demo__interaction {
    display: block !important;
  }

  .v2-hero-demo[data-enhanced="true"][data-state="changeReady"] .v2-hero-demo__change:not([hidden]),
  .v2-hero-demo[data-enhanced="true"][data-state="interactive"] .v2-hero-demo__change:not([hidden]) {
    display: block !important;
  }

  .v2-hero-demo__prompt-row {
    align-items: stretch;
    flex-direction: column;
  }

  .v2-hero-demo__prompt-row button {
    min-height: 40px;
  }

  .v2-hero-demo__example-list {
    position: static;
    margin-top: 7px;
    box-shadow: none;
  }

  .v2-hero-demo__change {
    margin-top: 10px;
  }

  .v2-hero-reveal {
    min-height: 390px;
    padding: 10px 0 0;
  }

  .v2-hero-reveal__topline {
    margin-bottom: 34px;
  }

  .v2-hero-reveal__turn {
    min-height: 108px;
  }

  .v2-hero-reveal__turn p {
    text-wrap: pretty;
  }

  .v2-hero-reveal__turn--user p {
    font-size: 21px;
  }

  .v2-hero-reveal__turn--joina {
    margin-top: 6px;
  }

  .v2-hero-reveal__turn--joina p {
    font-size: clamp(32px, 10vw, 42px);
  }

  .v2-actions {
    margin-top: 28px;
    flex-direction: column;
    gap: 8px;
  }

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

  .v2-section {
    padding: 82px 0;
  }

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

  .v2-section h2,
  .v2-final-cta h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .v2-drawing-test__panel {
    border-radius: 20px;
  }

  .v2-upload,
  .v2-drawing-result {
    min-height: auto;
    padding: 24px;
  }

  .v2-dropzone {
    min-height: 240px;
  }

  .v2-upload__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .v2-drawing-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-result-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .v2-steps,
  .v2-use-case__grid,
  .v2-category-guide__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .v2-category-guide__grid article,
  .v2-category-guide__grid article:nth-child(4),
  .v2-category-guide__grid article:nth-child(5) {
    min-height: auto;
    grid-column: auto;
  }

  .v2-category-guide__fit {
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-category-guide__links {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-steps li {
    min-height: 174px;
  }

  .v2-proof {
    padding-right: 16px;
    padding-left: 16px;
  }

  .v2-adapts,
  .v2-commercial-proof {
    width: min(100% - 32px, var(--v2-max));
    grid-template-columns: minmax(0, 1fr);
  }

  .v2-assisted {
    width: calc(100% - 32px);
    padding: 34px 24px;
    border-radius: 20px;
  }

  .v2-assisted-pricing {
    width: calc(100% - 32px);
    padding: 40px 24px;
    border-radius: 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-assisted-pricing__plan {
    padding: 26px 22px 28px;
  }

  .v2-assisted-pricing__plan .v2-text-link {
    margin-left: 12px;
  }

  .v2-pricing-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .v2-pricing-proof__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-pricing-proof__copy ul {
    grid-template-columns: 1fr;
  }

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

  .v2-proof-flow li:nth-child(3) {
    border-left: 0;
  }

  .v2-proof-flow li:nth-child(n + 3) {
    border-top-color: var(--v2-line-strong);
  }

  .v2-price-card {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .v2-price-card__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-price-card__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v2-price-card .v2-button {
    width: 100%;
    grid-column: auto;
  }

  .v2-final-cta {
    width: calc(100% - 32px);
  }

  .v2-footer__inner {
    width: calc(100% - 32px);
    padding: 54px 0;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .v2-footer__brand {
    grid-column: 1 / -1;
  }

  .v2-footer__inner nav:last-child {
    grid-column: auto;
  }

  .v2-footer__base {
    width: calc(100% - 32px);
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .v2-commercial-hero,
  .v2-assisted-hero {
    padding: 46px 0 82px;
    gap: 38px;
  }

  .v2-commercial-hero h1,
  .v2-assisted-hero h1 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .v2-commercial-hero > div > p:not(.v2-eyebrow),
  .v2-assisted-hero > div > p:not(.v2-eyebrow) {
    font-size: 17px;
  }

  .v2-commercial-hero .v2-orb {
    width: 220px;
    height: 220px;
  }

  .v2-faq {
    width: calc(100% - 32px);
  }
}

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

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

  .v2-orb canvas {
    transform: scale(1);
  }

  .v2-hero-demo[data-state="calculatingChange"] .v2-hero-demo__prompt-row {
    animation: none;
  }

  .v2-hero-reveal[data-state="typing"] .v2-hero-reveal__turn--user p::after,
  .v2-hero-reveal[data-state="responding"] .v2-hero-reveal__turn--joina p::after {
    animation: none;
  }
}

@media (max-width: 350px) {
  .v2-hero-demo__source {
    grid-template-columns: 1fr;
  }

  .v2-hero-demo__processing {
    min-height: 56px;
  }

  .v2-hero-demo__quote-main {
    flex-direction: column;
  }

  .v2-hero-demo__quote-meta {
    width: 100%;
    max-width: none;
  }
}

@media print {
  .v2-header,
  .v2-footer,
  .v2-final-cta,
  .v2-orb {
    display: none;
  }
}
