@font-face {
  font-family: "BCC UI";
  src: url("../fonts/SourceSans3-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BCC UI";
  src: url("../fonts/SourceSans3-Italic-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f7f6f2;
  --paper-soft: #fcfbf8;
  --ink: #17222b;
  --blue: #15344a;
  --blue-deep: #0d2738;
  --blue-soft: #dfeaf0;
  --terra: #e66a4e;
  --terra-dark: #cc5137;
  --terra-soft: #f8e3dd;
  --mint: #acd7c9;
  --mint-soft: #e3f1ed;
  --sky: #a8ccde;
  --sky-soft: #e4f0f5;
  --muted: #63717b;
  --line: #d8dddE;
  --white: #fff;
  --shadow: 0 24px 60px rgba(19, 46, 63, 0.13);
  --shadow-soft: 0 12px 32px rgba(19, 46, 63, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "BCC UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

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

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

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(21, 52, 74, 0.1);
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
}

.brand {
  gap: 11px;
  color: var(--blue);
}

.brand__mark {
  width: 38px;
  height: 38px;
  color: var(--white);
  background: #5047d7;
  border: 0;
  border-radius: 12px;
}

.brand__mark svg {
  width: 24px;
  height: 24px;
}

.brand__mark svg path {
  stroke: var(--white);
}

.brand__name {
  font-family: "BCC UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.site-nav {
  gap: 26px;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
}

.button,
.button-secondary {
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(21, 52, 74, 0.16);
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  box-shadow: 0 13px 27px rgba(21, 52, 74, 0.22);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--blue);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.button--compact {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 0.87rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 1rem;
}

.button--terra {
  border-color: var(--terra);
  color: var(--white);
  background: var(--terra);
  box-shadow: 0 10px 24px rgba(230, 106, 78, 0.2);
}

.button--terra:hover,
.button--terra:focus-visible {
  border-color: var(--terra-dark);
  background: var(--terra-dark);
}

.v6-eyebrow,
.eyebrow {
  margin: 0 0 16px;
  color: var(--terra);
  font-family: "BCC UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.v6-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.v6-link:hover,
.v6-link:focus-visible {
  color: var(--terra-dark);
}

.v6-link--light {
  color: var(--white);
}

/* Homepage */
.v6-header {
  position: sticky;
  top: 0;
}

.v6-hero {
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 87% 14%, rgba(168, 204, 222, 0.3), transparent 25%),
    linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.v6-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 74px;
  align-items: center;
}

.v6-hero__copy {
  max-width: 570px;
}

.v6-hero h1 {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-family: "BCC UI", Arial, sans-serif;
  font-size: clamp(4.25rem, 6.2vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.v6-hero h1 span {
  color: var(--blue);
}

.v6-hero__lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.17rem;
  font-weight: 520;
  line-height: 1.58;
}

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

.v6-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.v6-hero__proof div {
  padding-right: 19px;
}

.v6-hero__proof div + div {
  padding-left: 19px;
  border-left: 1px solid var(--line);
}

.v6-hero__proof strong,
.v6-hero__proof span {
  display: block;
}

.v6-hero__proof strong {
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 800;
}

.v6-hero__proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.35;
}

.v6-product {
  overflow: hidden;
  border: 1px solid rgba(21, 52, 74, 0.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.v6-product__top {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v6-product__body {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 540px;
}

.v6-product__page {
  display: grid;
  margin: 0;
  padding: 34px;
  place-items: center;
  background: var(--blue-soft);
}

.v6-product__page img {
  width: min(100%, 315px);
  border-radius: 3px;
  box-shadow: 0 20px 48px rgba(13, 39, 56, 0.19);
}

.v6-product__notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
}

.v6-product__notes > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.v6-product__notes > div:last-child {
  border-bottom: 0;
}

.v6-icon {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--mint-soft);
}

.v6-icon svg {
  width: 20px;
  height: 20px;
}

.v6-product__notes strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.v6-product__notes small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.v6-trust {
  border-block: 1px solid rgba(21, 52, 74, 0.13);
  background: var(--blue);
  color: var(--white);
}

.v6-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 82px;
  align-items: center;
}

.v6-trust span {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
}

.v6-trust span:last-child {
  border-right: 0;
}

.v6-trust b {
  color: var(--mint);
  font-size: 0.7rem;
}

.v6-section {
  padding: 100px 0;
}

.v6-section--blue {
  color: var(--white);
  background: var(--blue);
}

.v6-section--soft {
  background: var(--blue-soft);
}

.v6-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.v6-heading h2,
.v6-how h2,
.v6-final h2 {
  margin: 0;
  color: var(--ink);
  font-family: "BCC UI", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.v6-heading > p:last-child,
.v6-heading--split > p,
.v6-how__copy > p:not(.v6-eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.58;
}

.v6-heading--light h2,
.v6-heading--light > p:last-child {
  color: var(--white);
}

.v6-heading--light > p:last-child {
  color: #c9d7df;
}

.v6-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 100px;
  align-items: end;
}

.v6-heading--split > p {
  margin: 0 0 5px;
}

.v6-decision {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
}

.v6-decision__tabs {
  display: grid;
  gap: 10px;
}

.v6-demo-tab {
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.v6-demo-tab:hover,
.v6-demo-tab:focus-visible {
  border-color: var(--blue);
  transform: translateX(3px);
}

.v6-demo-tab.is-active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-soft);
}

.v6-demo-tab span,
.v6-demo-tab strong {
  display: block;
}

.v6-demo-tab span {
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v6-demo-tab.is-active span {
  color: var(--mint);
}

.v6-demo-tab strong {
  margin-top: 8px;
  font-size: 1.07rem;
  font-weight: 750;
}

.v6-decision__result {
  position: relative;
  overflow: hidden;
  min-height: 356px;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  background: var(--terra-soft);
}

.v6-decision__result::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(230, 106, 78, 0.12);
  border-radius: 50%;
  content: "";
}

.v6-result__head {
  display: flex;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  color: var(--terra-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v6-result__input {
  position: relative;
  z-index: 1;
  margin: 44px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.v6-decision__result h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.v6-decision__result ul,
.v6-viewer__copy ul,
.v6-chapters ul,
.v6-offer ul {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.v6-decision__result li,
.v6-viewer__copy li,
.v6-chapters li,
.v6-offer li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.v6-decision__result li::before,
.v6-viewer__copy li::before,
.v6-chapters li::before,
.v6-offer li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
  content: "";
}

.v6-decision__result li {
  font-size: 0.92rem;
  font-weight: 570;
}

.v6-viewer {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: var(--blue-deep);
  box-shadow: 0 28px 75px rgba(5, 21, 31, 0.28);
}

.v6-viewer__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.v6-viewer-tab {
  min-height: 54px;
  border: 0;
  border-radius: 9px;
  color: #b9cbd6;
  background: transparent;
  font-size: 0.83rem;
  font-weight: 750;
  cursor: pointer;
}

.v6-viewer-tab:hover,
.v6-viewer-tab:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.v6-viewer-tab.is-active {
  color: var(--blue-deep);
  background: var(--mint);
}

.v6-viewer__body {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  min-height: 670px;
}

.v6-viewer__visual {
  display: grid;
  overflow: hidden;
  padding: 38px;
  place-items: start center;
  background: #edf1f2;
}

.v6-viewer__visual img {
  width: min(100%, 420px);
  border: 1px solid rgba(13, 39, 56, 0.12);
  border-radius: 3px;
  box-shadow: 0 24px 52px rgba(13, 39, 56, 0.2);
  transition: opacity 120ms ease, transform 120ms ease;
}

.v6-viewer__visual.is-changing img {
  opacity: 0;
  transform: translateY(7px);
}

.v6-viewer__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.v6-viewer__copy .v6-eyebrow {
  color: var(--mint);
}

.v6-viewer__copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 3.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.046em;
  line-height: 1;
}

.v6-viewer__copy > p:not(.v6-eyebrow) {
  margin: 23px 0 0;
  color: #c3d0d8;
  font-size: 0.98rem;
  line-height: 1.6;
}

.v6-viewer__copy ul {
  margin: 28px 0 32px;
}

.v6-viewer__copy li {
  color: #d6e0e5;
  font-size: 0.84rem;
}

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

.v6-chapters article {
  min-height: 510px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.v6-chapter__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 55px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
}

.v6-chapter__icon svg {
  width: 27px;
  height: 27px;
}

.v6-chapter__icon--terra {
  background: var(--terra-soft);
}

.v6-chapter__icon--mint {
  background: var(--mint-soft);
}

.v6-chapter__icon--sky {
  background: var(--sky-soft);
}

.v6-chapter__number {
  margin: 0 0 10px;
  color: var(--terra-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v6-chapters h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.v6-chapters article > p:not(.v6-chapter__number) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.v6-chapters li {
  color: var(--ink);
  font-size: 0.82rem;
}

.v6-how {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 85px;
  align-items: center;
}

.v6-how__copy ol {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.v6-how__copy li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(21, 52, 74, 0.16);
}

.v6-how__copy li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.v6-how__copy strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.v6-how__copy li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.v6-offer {
  padding: 43px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.v6-offer .v6-eyebrow {
  color: var(--mint);
}

.v6-offer h3 {
  margin: 0;
  max-width: 390px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.v6-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 25px 0;
}

.v6-price strong {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.v6-price span {
  color: #bdcbd4;
  font-size: 0.85rem;
  font-weight: 600;
}

.v6-offer ul {
  margin: 0 0 29px;
}

.v6-offer li {
  color: #e0e8ec;
  font-size: 0.88rem;
}

.v6-offer .button {
  width: 100%;
}

.v6-offer__note {
  margin: 17px 0 0;
  color: #b8c9d3;
  font-size: 0.7rem;
  font-weight: 650;
  text-align: center;
}

.v6-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v6-faq details {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.v6-faq summary {
  position: relative;
  min-height: 76px;
  padding: 24px 55px 21px 23px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.v6-faq summary::after {
  position: absolute;
  top: 23px;
  right: 22px;
  color: var(--terra);
  content: "+";
  font-size: 1.25rem;
  font-weight: 600;
}

.v6-faq details[open] summary::after {
  content: "–";
}

.v6-faq details p {
  margin: 0;
  padding: 0 23px 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.v6-final {
  padding: 78px 0;
  color: var(--white);
  background: var(--blue-deep);
}

.v6-final__inner {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  justify-content: space-between;
}

.v6-final .v6-eyebrow {
  color: var(--mint);
}

.v6-final h2 {
  color: var(--white);
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.v6-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #b4c3cc;
  background: #081f2d;
}

.v6-footer a {
  color: #d5e0e6;
}

.v6-mobile-cta {
  display: none;
}

/* Questionnaire, results and legal pages */
.form-page {
  background:
    linear-gradient(180deg, rgba(223, 234, 240, 0.62), transparent 300px),
    var(--paper);
}

.form-header {
  border-bottom-color: rgba(21, 52, 74, 0.1);
  background: rgba(247, 246, 242, 0.94);
}

.form-save {
  color: var(--muted);
  font-weight: 650;
}

.progress-shell {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.progress-meta {
  color: var(--blue);
  font-family: "BCC UI", Arial, sans-serif;
  font-weight: 750;
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.progress-value {
  border-radius: inherit;
  background: var(--terra);
}

.questionnaire {
  max-width: 900px;
  padding-top: 62px;
}

.question-step h1,
.section-title,
.analysis-card h2 {
  color: var(--ink);
  font-family: "BCC UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.question-step h1 {
  font-size: clamp(3.3rem, 7vw, 5.5rem);
}

.question-step__intro,
.section-copy {
  color: var(--muted);
  font-weight: 480;
}

.dot {
  color: var(--terra);
}

.field-stack {
  gap: 15px;
}

.field-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(19, 46, 63, 0.045);
}

.field-label,
.field-block legend {
  color: var(--ink);
  font-family: "BCC UI", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.18;
}

.field-hint {
  color: var(--muted);
}

.text-input,
.number-input,
.email-input,
.select-input,
.textarea-input {
  min-height: 54px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: var(--paper-soft);
  font-weight: 550;
}

.text-input:hover,
.number-input:hover,
.email-input:hover,
.select-input:hover,
.textarea-input:hover {
  border-color: var(--sky);
}

.text-input:focus,
.number-input:focus,
.email-input:focus,
.select-input:focus,
.textarea-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 52, 74, 0.1);
}

.choice,
.chip {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-weight: 650;
}

.choice:hover,
.choice:focus-visible,
.chip:hover,
.chip:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.choice.selected,
.chip.selected {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(172, 215, 201, 0.7);
}

.choice.selected small {
  color: #d2dfe6;
}

input[type="range"],
.consent input {
  accent-color: var(--terra);
}

.range-output {
  color: var(--white);
  background: var(--blue);
}

.consent {
  border-color: var(--line);
  background: var(--paper-soft);
}

.form-nav {
  border-top: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(16px);
}

.form-back {
  color: var(--blue);
  font-weight: 750;
}

.analysis-overlay {
  background: rgba(13, 39, 56, 0.82);
  backdrop-filter: blur(10px);
}

.analysis-card {
  border: 1px solid var(--sky);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.analysis-card__mark,
.priority__number {
  color: var(--blue);
  background: var(--mint);
}

.result-hero {
  background:
    radial-gradient(circle at 91% 8%, rgba(168, 204, 222, 0.32), transparent 23%),
    var(--paper);
}

.section-title {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.result-summary {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.result-summary__range {
  color: var(--blue);
  font-family: "BCC UI", Arial, sans-serif;
  font-weight: 800;
}

.personalization-panel {
  border-color: var(--line);
  background: var(--blue-soft);
}

.personalization-row {
  border-color: rgba(21, 52, 74, 0.12);
}

.checkout-card {
  border: 0;
  border-radius: 22px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.checkout-card .eyebrow {
  color: var(--mint);
}

.checkout-card .price {
  color: var(--white);
  font-family: "BCC UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.checkout-card .check-list li::before {
  color: var(--terra);
}

.checkout-card .button {
  border-color: var(--terra);
  background: var(--terra);
  box-shadow: none;
}

.checkout-card .button:hover {
  border-color: var(--terra-dark);
  background: var(--terra-dark);
}

.checkout-card .trust-line {
  color: #c0d0d8;
}

.section article > h2,
.section article > h3 {
  color: var(--blue);
  font-family: "BCC UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.site-footer {
  border-top: 1px solid rgba(21, 52, 74, 0.09);
}

@media (max-width: 1080px) {
  .site-nav > a:not(.button) {
    display: none;
  }

  .v6-hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
  }

  .v6-hero h1 {
    font-size: clamp(3.9rem, 7.5vw, 5.2rem);
  }

  .v6-product__body {
    grid-template-columns: 1fr;
  }

  .v6-product__notes {
    display: none;
  }

  .v6-product__page {
    min-height: 520px;
  }

  .v6-how {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__name {
    font-size: 0.74rem;
  }

  .v6-header .button--compact {
    min-height: 40px;
    padding-inline: 15px;
  }

  .v6-hero {
    padding: 58px 0 65px;
  }

  .v6-hero__grid,
  .v6-decision,
  .v6-heading--split,
  .v6-how {
    grid-template-columns: 1fr;
  }

  .v6-hero__copy {
    max-width: 670px;
  }

  .v6-product {
    width: min(100%, 600px);
    margin: 10px auto 0;
  }

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

  .v6-trust span:nth-child(2) {
    border-right: 0;
  }

  .v6-trust span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .v6-section {
    padding: 78px 0;
  }

  .v6-heading--split {
    gap: 18px;
  }

  .v6-viewer__body {
    grid-template-columns: 1fr;
  }

  .v6-viewer__visual {
    min-height: 660px;
  }

  .v6-viewer__copy {
    padding: 45px;
  }

  .v6-chapters {
    grid-template-columns: 1fr;
  }

  .v6-chapters article {
    min-height: 0;
  }

  .v6-chapter__icon {
    margin-bottom: 34px;
  }

  .v6-how {
    gap: 55px;
  }

  .v6-final__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 68px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .site-header .brand__name {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .site-header .button-secondary {
    min-height: 44px;
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  .v6-site .site-nav .button {
    display: none;
  }

  .v6-header .brand__mark {
    width: 35px;
    height: 35px;
  }

  .v6-hero {
    padding-top: 44px;
  }

  .v6-hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.35rem);
    line-height: 0.91;
  }

  .v6-hero__lead {
    margin-top: 23px;
    font-size: 1rem;
  }

  .v6-actions {
    display: grid;
    gap: 15px;
  }

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

  .v6-actions .v6-link {
    justify-self: center;
  }

  .v6-hero__proof {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
    padding-top: 0;
    border-top: 0;
  }

  .v6-hero__proof div,
  .v6-hero__proof div + div {
    display: grid;
    grid-template-columns: 145px 1fr;
    padding: 11px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .v6-product__top {
    font-size: 0.62rem;
  }

  .v6-product__page {
    min-height: 470px;
    padding: 28px;
  }

  .v6-product__page img {
    width: min(100%, 280px);
  }

  .v6-trust__inner {
    grid-template-columns: 1fr;
  }

  .v6-trust span {
    justify-content: flex-start;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .v6-section {
    padding: 65px 0;
  }

  .v6-heading {
    margin-bottom: 35px;
  }

  .v6-heading h2,
  .v6-how h2,
  .v6-final h2 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .v6-heading > p:last-child,
  .v6-heading--split > p {
    font-size: 0.96rem;
  }

  .v6-demo-tab {
    min-height: 94px;
    padding: 18px 19px;
  }

  .v6-decision__result {
    min-height: 0;
    padding: 27px 22px 32px;
  }

  .v6-result__head {
    font-size: 0.59rem;
  }

  .v6-result__input {
    margin-top: 35px;
  }

  .v6-decision__result h3 {
    font-size: 2rem;
  }

  .v6-viewer {
    border-radius: 18px;
  }

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

  .v6-viewer__visual {
    min-height: 490px;
    padding: 25px 16px;
  }

  .v6-viewer__visual img {
    width: min(100%, 315px);
  }

  .v6-viewer__copy {
    padding: 34px 24px 40px;
  }

  .v6-viewer__copy h3 {
    font-size: 2.25rem;
  }

  .v6-chapters article {
    padding: 25px;
  }

  .v6-how__copy li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .v6-offer {
    padding: 32px 24px;
  }

  .v6-price strong {
    font-size: 3.6rem;
  }

  .v6-faq__grid {
    grid-template-columns: 1fr;
  }

  .v6-final {
    padding: 62px 0;
  }

  .v6-mobile-cta {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--terra-dark);
    border-radius: 10px;
    color: var(--white);
    background: var(--terra);
    box-shadow: 0 12px 30px rgba(13, 39, 56, 0.25);
    font-weight: 800;
    text-decoration: none;
  }

  .questionnaire {
    padding-top: 43px;
  }

  .question-step h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .field-block {
    padding: 22px 18px;
  }
}

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

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