:root {
  --v2-night: #071f26;
  --v2-night-2: #0b2b32;
  --v2-ink: #0d2a30;
  --v2-muted: #587078;
  --v2-paper: #f1f6f4;
  --v2-white: #ffffff;
  --v2-line: #cfdbd8;
  --v2-mint: #58dfcf;
  --v2-teal: #0f766e;
  --v2-sand: #eee9dc;
  --v2-coral: #f08a73;
}

html {
  scroll-behavior: smooth;
}

.case-v2-page {
  overflow-x: hidden;
  background: var(--v2-night);
  color: var(--v2-ink);
  font-family: "Hanken Grotesk", sans-serif;
}

.case-v2-page .shell {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.v2-eyebrow {
  margin: 0;
  color: var(--v2-teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

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

.v2-breadcrumb a:hover {
  color: var(--v2-white);
}

.v2-hero {
  padding: 142px 0 0;
  background: var(--v2-night);
  color: var(--v2-white);
}

.v2-hero .v2-eyebrow,
.v2-system .v2-eyebrow,
.v2-conversion .v2-eyebrow {
  color: var(--v2-mint);
}

.v2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  gap: clamp(52px, 6vw, 90px);
  align-items: center;
  padding: 54px 0 64px;
}

.v2-hero__copy h1 {
  max-width: 790px;
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.99;
}

.v2-hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.56;
}

.v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.v2-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.v2-button--mint {
  background: var(--v2-mint);
  color: var(--v2-night);
}

.v2-button--light {
  background: var(--v2-white);
  color: var(--v2-night);
}

.v2-text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  color: var(--v2-white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.v2-hero__visual {
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0b252b;
}

.v2-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: 53% center;
}

.v2-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.v2-snapshot > div {
  min-height: 120px;
  padding: 26px 28px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.v2-snapshot > div:last-child {
  border-right: 0;
}

.v2-snapshot dt {
  color: var(--v2-mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-snapshot dd {
  margin: 12px 0 0;
  color: var(--v2-white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.v2-story,
.v2-results {
  background: var(--v2-paper);
}

.v2-story {
  padding: 112px 0 120px;
}

.v2-section-head {
  max-width: 1020px;
}

.v2-section-head h2,
.v2-system__head h2,
.v2-download__copy h2,
.v2-conversion h2 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.01;
}

.v2-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: start;
  margin-top: 56px;
}

.v2-story__body {
  max-width: 760px;
}

.v2-story__body p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 19px;
  line-height: 1.66;
}

.v2-story__body p + p {
  margin-top: 24px;
}

.v2-incident {
  border-top: 3px solid var(--v2-coral);
  padding: 26px 0 0;
}

.v2-incident > span,
.v2-shift article > span,
.v2-authority > span {
  color: var(--v2-teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-incident h3 {
  margin: 15px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.v2-incident p {
  margin: 18px 0 0;
  color: var(--v2-muted);
  font-size: 16px;
  line-height: 1.62;
}

.v2-shift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 76px;
}

.v2-shift article {
  min-width: 0;
  border: 1px solid var(--v2-line);
  padding: 34px;
  background: var(--v2-white);
}

.v2-shift__before {
  border-top: 3px solid #d69b50 !important;
}

.v2-shift__after {
  border-top: 3px solid var(--v2-teal) !important;
}

.v2-shift h3 {
  max-width: 510px;
  margin: 16px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.v2-shift ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  background: var(--v2-line);
}

.v2-shift li {
  padding: 14px;
  background: var(--v2-paper);
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.35;
}

.v2-shift__change {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--v2-teal);
  text-align: center;
}

.v2-shift__change span {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-shift__change b {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 400;
}

.v2-system {
  padding: 108px 0 118px;
  background: var(--v2-night);
  color: var(--v2-white);
  scroll-margin-top: 90px;
}

.v2-system__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: 72px;
  align-items: end;
}

.v2-system__head > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.62;
}

.v2-system__tabs {
  display: flex;
  gap: 8px;
  margin-top: 50px;
}

.v2-system__tabs button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.v2-system__tabs button span {
  margin-right: 12px;
  color: var(--v2-mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
}

.v2-system__tabs button[aria-selected="true"] {
  border-color: var(--v2-mint);
  background: rgba(88, 223, 207, 0.1);
  color: var(--v2-white);
}

.v2-system__viewer {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(88, 223, 207, 0.34);
  border-radius: 7px;
  background: #06171c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.v2-system__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 56px;
  align-items: end;
  padding: 34px 36px;
}

.v2-system__caption span {
  color: var(--v2-mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.v2-system__caption h3 {
  max-width: 780px;
  margin: 13px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.v2-system__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.55;
}

.v2-system__screen {
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #06171c;
}

.v2-system__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.v2-system__mobile-note {
  display: none;
}

.v2-operating {
  padding: 110px 0 118px;
  background: var(--v2-white);
}

.v2-section-head--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  gap: 70px;
  align-items: end;
}

.v2-section-head--split > p {
  margin: 0 0 4px;
  color: var(--v2-muted);
  font-size: 17px;
  line-height: 1.62;
}

.v2-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 62px 0 0;
  padding: 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.v2-path li {
  min-width: 0;
  padding: 30px 28px 34px;
  border-right: 1px solid var(--v2-line);
}

.v2-path li:last-child {
  border-right: 0;
}

.v2-path li > span,
.v2-results__list article > span {
  color: var(--v2-teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.v2-path h3 {
  margin: 34px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.v2-path p {
  margin: 14px 0 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.55;
}

.v2-authority {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(15, 118, 110, 0.3);
  background: rgba(88, 223, 207, 0.1);
}

.v2-authority h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.v2-authority p {
  margin: 8px 0 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.5;
}

.v2-results {
  padding: 108px 0 116px;
}

.v2-results__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-results__list article {
  min-width: 0;
  padding: 32px 30px 38px;
  border-right: 1px solid var(--v2-line);
}

.v2-results__list article:last-child {
  border-right: 0;
}

.v2-results__list h3 {
  margin: 36px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.v2-results__list p {
  margin: 14px 0 0;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.58;
}

.v2-download {
  padding: 106px 0;
  background: var(--v2-sand);
  scroll-margin-top: 90px;
}

.v2-download__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(64px, 8vw, 118px);
  align-items: center;
}

.v2-download__cover {
  width: min(100%, 430px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(13, 42, 48, 0.14);
  background: var(--v2-white);
  box-shadow: 0 30px 65px rgba(13, 42, 48, 0.18);
  transform: rotate(-1.5deg);
}

.v2-download__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.v2-download__copy {
  max-width: 740px;
}

.v2-download__copy > p:not(.v2-eyebrow) {
  margin: 24px 0 0;
  color: var(--v2-muted);
  font-size: 18px;
  line-height: 1.62;
}

.v2-download__copy > ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.v2-download__copy > ul li {
  position: relative;
  padding-left: 25px;
  color: var(--v2-ink);
  font-size: 15px;
}

.v2-download__copy > ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--v2-teal);
  content: "✓";
  font-weight: 700;
}

.v2-download__form {
  position: relative;
  margin-top: 34px;
}

.v2-download__form > label:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 700;
}

.v2-download__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--v2-teal);
  background: var(--v2-white);
}

.v2-download__row input {
  min-width: 0;
  min-height: 58px;
  border: 0;
  padding: 0 18px;
  outline: 0;
  background: transparent;
  color: var(--v2-ink);
  font: inherit;
  font-size: 16px;
}

.v2-download__row input:focus {
  box-shadow: inset 0 0 0 2px var(--v2-mint);
}

.v2-download__row button {
  min-height: 58px;
  border: 0;
  padding: 0 26px;
  background: var(--v2-teal);
  color: var(--v2-white);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.v2-download__row button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.v2-download__row.has-error {
  border-color: #a73732;
}

.v2-download__help,
.v2-download__local,
.v2-download__error {
  margin: 10px 0 0;
  color: var(--v2-muted);
  font-size: 12px;
  line-height: 1.5;
}

.v2-download__help a {
  color: inherit;
}

.v2-download__local {
  color: var(--v2-teal);
}

.v2-download__error {
  min-height: 18px;
  color: #9b2f2b;
  font-weight: 600;
}

.v2-download__trap {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.v2-download__success {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 118, 110, 0.3);
  background: rgba(88, 223, 207, 0.13);
  color: var(--v2-ink);
  font-size: 14px;
}

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

.v2-download__success a {
  color: var(--v2-teal);
  font-weight: 700;
}

.v2-conversion {
  padding: 92px 0;
  background: var(--v2-coral);
  color: var(--v2-night);
}

.v2-conversion .v2-eyebrow {
  color: var(--v2-night);
}

.v2-conversion__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
}

.v2-conversion h2 {
  max-width: 900px;
}

.v2-conversion p:not(.v2-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.58;
}

.v2-conversion__action {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 11px;
}

.v2-conversion__action small {
  color: rgba(7, 31, 38, 0.7);
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .v2-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 42px;
  }

  .v2-hero__copy h1 {
    font-size: clamp(48px, 5.5vw, 62px);
  }

  .v2-hero__visual,
  .v2-hero__visual img {
    min-height: 480px;
  }

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

  .v2-path li:nth-child(2) {
    border-right: 0;
  }

  .v2-path li:nth-child(-n+2) {
    border-bottom: 1px solid var(--v2-line);
  }
}

@media (max-width: 880px) {
  .case-v2-page .shell {
    width: min(100% - 40px, 760px);
  }

  .v2-hero {
    padding-top: 124px;
  }

  .v2-hero__grid,
  .v2-story__grid,
  .v2-system__head,
  .v2-section-head--split,
  .v2-download__grid,
  .v2-conversion__grid {
    grid-template-columns: 1fr;
  }

  .v2-hero__grid {
    gap: 36px;
    padding-top: 42px;
  }

  .v2-hero__visual {
    order: -1;
    min-height: 400px;
  }

  .v2-hero__visual img {
    min-height: 400px;
  }

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

  .v2-snapshot > div:nth-child(2) {
    border-right: 0;
  }

  .v2-snapshot > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .v2-story__grid,
  .v2-system__head,
  .v2-section-head--split,
  .v2-conversion__grid {
    gap: 36px;
  }

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

  .v2-shift__change {
    min-height: 60px;
  }

  .v2-shift__change b {
    transform: rotate(90deg);
  }

  .v2-system__caption {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .v2-results__list article {
    border-right: 0;
    border-bottom: 1px solid var(--v2-line);
  }

  .v2-results__list article:last-child {
    border-bottom: 0;
  }

  .v2-download__cover {
    width: min(74%, 420px);
  }

  .v2-conversion__action {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .case-v2-page .shell {
    width: calc(100% - 32px);
  }

  .v2-hero {
    padding-top: 108px;
  }

  .v2-breadcrumb {
    font-size: 10px;
  }

  .v2-hero__grid {
    display: flex;
    padding: 28px 0 38px;
    flex-direction: column;
  }

  .v2-hero__visual {
    order: 0;
    width: calc(100% + 32px);
    min-height: 0;
    margin-left: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .v2-hero__visual img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .v2-hero__copy h1 {
    margin-top: 16px;
    font-size: clamp(40px, 11.6vw, 48px);
    line-height: 1.01;
  }

  .v2-hero__lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.52;
  }

  .v2-hero__actions {
    display: grid;
    gap: 13px;
    margin-top: 28px;
  }

  .v2-button {
    width: 100%;
  }

  .v2-text-link {
    justify-self: start;
  }

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

  .v2-snapshot > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 0;
  }

  .v2-snapshot > div:last-child {
    border-bottom: 0;
  }

  .v2-story,
  .v2-system,
  .v2-operating,
  .v2-results,
  .v2-download {
    padding: 72px 0 78px;
  }

  .v2-section-head h2,
  .v2-system__head h2,
  .v2-download__copy h2,
  .v2-conversion h2 {
    margin-top: 14px;
    font-size: 38px;
    line-height: 1.04;
  }

  .v2-story__grid {
    margin-top: 36px;
  }

  .v2-story__body p {
    font-size: 17px;
    line-height: 1.6;
  }

  .v2-incident h3 {
    font-size: 27px;
  }

  .v2-shift {
    margin-top: 48px;
  }

  .v2-shift article {
    padding: 26px 22px;
  }

  .v2-shift h3 {
    font-size: 25px;
  }

  .v2-shift ol {
    grid-template-columns: 1fr;
  }

  .v2-system__tabs {
    display: grid;
    margin-top: 34px;
  }

  .v2-system__tabs button {
    width: 100%;
    text-align: left;
  }

  .v2-system__caption {
    padding: 25px 20px;
  }

  .v2-system__caption h3 {
    font-size: 29px;
  }

  .v2-system__caption p {
    font-size: 14px;
  }

  .v2-system__screen {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .v2-system__screen img {
    width: 960px;
    max-width: none;
    scroll-snap-align: start;
  }

  .v2-system__mobile-note {
    display: block;
    margin: 0;
    padding: 13px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .v2-path {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .v2-path li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    border-right: 0;
    border-bottom: 1px solid var(--v2-line);
    padding: 24px 0;
  }

  .v2-path li:nth-child(-n+2) {
    border-bottom: 1px solid var(--v2-line);
  }

  .v2-path li:last-child {
    border-bottom: 0;
  }

  .v2-path h3,
  .v2-path p {
    margin-top: 0;
  }

  .v2-path p {
    margin-top: 9px;
  }

  .v2-authority {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .v2-authority h3 {
    font-size: 23px;
  }

  .v2-results__list {
    margin-top: 40px;
  }

  .v2-results__list article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 13px;
    padding: 24px 0;
  }

  .v2-results__list h3,
  .v2-results__list p {
    grid-column: 2;
    margin-top: 0;
  }

  .v2-results__list p {
    margin-top: 9px;
  }

  .v2-download__grid {
    gap: 50px;
  }

  .v2-download__cover {
    width: 76%;
  }

  .v2-download__copy > p:not(.v2-eyebrow) {
    font-size: 17px;
  }

  .v2-download__row {
    grid-template-columns: 1fr;
    border: 0;
    gap: 8px;
    background: transparent;
  }

  .v2-download__row input {
    border: 1px solid var(--v2-teal);
    background: var(--v2-white);
  }

  .v2-download__row.has-error input {
    border-color: #a73732;
  }

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

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

  .v2-conversion {
    padding: 70px 0 74px;
  }

  .v2-conversion__grid {
    gap: 32px;
  }
}

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

  .v2-button {
    transition: none;
  }
}
