@font-face {
  font-family: "Corevista Display";
  src: url("../fonts/corevista-display.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corevista Body";
  src: url("../fonts/corevista-body.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Corevista Body";
  src: url("../fonts/corevista-body-demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #07100b;
  --paper: #eef0e7;
  --signal: #dfff43;
  --error: #a52f24;
  --success: #365f24;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: "Corevista Body", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  color: var(--ink);
  background: var(--signal);
}

.skip-link {
  position: fixed;
  z-index: 400;
  top: .7rem;
  left: .7rem;
  transform: translateY(-180%);
  padding: .8rem 1rem;
  background: var(--signal);
  color: var(--ink);
  font-weight: 600;
}

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

.wordmark {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 2.6vw;
  border-right: 1px solid rgba(236, 238, 229, .28);
  font-family: "Corevista Display", sans-serif;
  font-size: 1.18rem;
  line-height: .9;
  letter-spacing: .05em;
}

.wordmark small {
  display: block;
  margin-top: .35rem;
  font-family: "Corevista Body", sans-serif;
  font-size: .53rem;
  letter-spacing: .28em;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(236, 238, 229, .72);
}

.brand-mark i {
  position: absolute;
  width: 130%;
  height: 5px;
  transform: rotate(-42deg);
  background: var(--signal);
}

.brand-mark b {
  position: relative;
  z-index: 1;
  padding: 1px 3px;
  background: var(--ink);
  font-family: "Corevista Display", sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
}

.dialog-kicker {
  margin: 0 0 .8rem;
  color: #657d1a;
  font-family: monospace;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.lead-form {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-pair {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-label {
  min-width: 0;
  display: grid;
  gap: .45rem;
  color: #263029;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field-label > span {
  color: #748078;
  font-weight: 400;
}

.field-label input,
.field-label textarea,
.field-label select,
.service-select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #89938b;
  border-radius: 0;
  padding: .72rem .1rem;
  background: transparent;
  color: #07100b;
  outline: 0;
  text-transform: none;
}

.field-label input:focus,
.field-label textarea:focus,
.field-label select:focus,
.service-select:focus {
  border-bottom-color: #657d1a;
  box-shadow: 0 2px 0 #dfff43;
}

.field-label textarea {
  resize: vertical;
}

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .65rem;
  color: #4e5951;
  font-size: .72rem;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin: .1rem 0 0;
  accent-color: #657d1a;
}

.consent-line a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-context {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem 1rem;
  padding: .8rem 1rem;
  border-left: 3px solid #dfff43;
  background: rgba(150, 163, 151, .14);
}

.form-context span {
  grid-column: 1 / -1;
  color: #6e786f;
  font-family: monospace;
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-context strong,
.form-context b {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: .78rem;
}

.form-context b {
  white-space: nowrap;
}

.form-submit {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border: 0;
  background: #07100b;
  color: #dfff43;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-submit:disabled {
  opacity: .55;
}

.form-status {
  margin: 0;
  padding: .7rem .8rem;
  border: 1px solid #9aa39b;
  color: #07100b;
  font-size: .75rem;
}

.form-status.success {
  border-color: var(--success);
  color: var(--success);
}

.form-status.error {
  border-color: var(--error);
  color: var(--error);
}

.native-modal {
  width: min(1120px, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  border: 1px solid #6f7971;
  padding: 0;
  background: #eef0e7;
  color: #07100b;
  box-shadow: 14px 14px 0 #dfff43;
}

.native-modal::backdrop {
  background: rgba(3, 9, 5, .84);
  backdrop-filter: blur(8px);
}

.native-modal-inner {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.native-modal-copy h2 {
  margin: .5rem 0 1rem;
  font-family: "Corevista Display", sans-serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .82;
  text-transform: uppercase;
}

.native-modal-copy > p:last-child {
  color: #667168;
}

.modal-close {
  position: sticky;
  z-index: 4;
  top: .8rem;
  float: right;
  width: 42px;
  height: 42px;
  margin: .8rem .8rem -3.4rem 0;
  border: 1px solid #758078;
  background: #eef0e7;
  color: #07100b;
  font-size: 1.35rem;
}

body.has-modal-open .cv5-assistant-trigger,
body.has-modal-open .cv5-assistant {
  display: none;
}

@media (max-width: 820px) {
  .field-pair,
  .native-modal-inner {
    grid-template-columns: 1fr;
  }
  .native-modal-inner {
    padding: 4rem 1.1rem 1.4rem;
  }
  .native-modal-copy h2 {
    font-size: clamp(2.9rem, 14vw, 4.7rem);
  }
}

.cv4-site {
  --cv4-ink: #07100b;
  --cv4-deep: #0d1812;
  --cv4-panel: #15231b;
  --cv4-paper: #eef0e7;
  --cv4-muted: #aeb8ae;
  --cv4-line: rgba(224, 232, 222, .24);
  --cv4-signal: #dfff43;
  min-height: 100vh;
  overflow: clip;
  background: var(--cv4-ink);
  color: var(--cv4-paper);
}

.cv4-site button,
.cv4-site a {
  outline-offset: 4px;
}

.cv4-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) 1.2fr auto;
  align-items: stretch;
  border-bottom: 1px solid rgba(238, 240, 231, .25);
  background: linear-gradient(180deg, rgba(5, 12, 8, .82), rgba(5, 12, 8, .54));
  backdrop-filter: blur(18px) saturate(115%);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cv4-header.is-scrolled {
  border-bottom-color: rgba(223, 255, 67, .32);
  background: rgba(5, 12, 8, .96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .34);
}

.cv4-logo {
  display: flex;
  align-items: center;
  padding: 0 2.2rem;
  border-right: 1px solid rgba(238, 240, 231, .2);
}

.cv4-brand {
  display: flex;
  align-items: center;
  gap: .78rem;
  font-family: "Corevista Display", sans-serif;
  font-size: 1.15rem;
  line-height: .82;
  letter-spacing: .05em;
}

.cv4-brand small {
  display: block;
  margin-top: .3rem;
  color: var(--cv4-signal);
  font-family: "Corevista Body", sans-serif;
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .28em;
}

.cv4-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(238, 240, 231, .7);
}

.cv4-mark i {
  position: absolute;
  width: 125%;
  height: 4px;
  transform: rotate(-43deg);
  background: var(--cv4-signal);
}

.cv4-mark b {
  position: relative;
  padding: 0 3px;
  background: var(--cv4-ink);
  font-size: .6rem;
  letter-spacing: .08em;
}

.cv4-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4.2rem);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.cv4-nav a {
  position: relative;
  padding: .5rem 0;
}

.cv4-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--cv4-signal);
  transition: right .22s ease;
}

.cv4-nav a:hover::after,
.cv4-nav a:focus-visible::after {
  right: 0;
}

.cv4-header-cta {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
  border: 0;
  border-left: 1px solid rgba(238, 240, 231, .2);
  background: rgba(11, 19, 14, .76);
  color: var(--cv4-paper);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cv4-header-cta:hover,
.cv4-header-cta:focus-visible {
  background: var(--cv4-signal);
  color: var(--cv4-ink);
}

.cv4-header-cta svg,
.cv4-primary svg,
.cv4-text-link svg,
.cv4-stage-cta svg,
.cv4-review-intro button svg,
.cv4-premium-decision button svg,
.cv4-contact-data svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.cv4-menu-toggle,
.cv4-mobile-nav {
  display: none;
}

.cv4-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(560px, .95fr) minmax(560px, 1.05fr);
  padding-top: 76px;
  background: var(--cv4-ink);
}

.cv4-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.2rem 4vw 3rem 6vw;
  background:
    radial-gradient(circle at 18% 16%, rgba(223, 255, 67, .11), transparent 20rem),
    var(--cv4-ink);
}

.cv4-kicker,
.cv4-section-head > div > span,
.cv4-method-code,
.cv4-premium-index span,
.cv4-review-intro > span,
.cv4-contact-title > span {
  display: block;
  color: var(--cv4-signal);
  font-family: monospace;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.cv4-hero h1 {
  margin: 1.35rem 0 1.8rem;
  max-width: 840px;
  font-family: "Corevista Display", sans-serif;
  font-size: clamp(5rem, 7vw, 8.4rem);
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.cv4-hero h1 span,
.cv4-hero h1 em {
  display: block;
}

.cv4-hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cv4-paper);
  font-style: italic;
}

.cv4-hero-lead {
  max-width: 610px;
  margin: 0;
  color: #c5cdc4;
  font-size: clamp(.96rem, 1.2vw, 1.1rem);
  line-height: 1.58;
  text-wrap: balance;
}

.cv4-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cv4-primary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--cv4-signal);
  padding: .9rem 1.2rem;
  background: var(--cv4-signal);
  color: var(--cv4-ink);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 rgba(223, 255, 67, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cv4-primary:hover,
.cv4-primary:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 rgba(223, 255, 67, .25);
}

.cv4-text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border-bottom: 1px solid rgba(238, 240, 231, .5);
  padding: .7rem 0;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cv4-hero-docket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.6rem;
  border-top: 1px solid var(--cv4-line);
  border-bottom: 1px solid var(--cv4-line);
}

.cv4-hero-docket > div {
  min-width: 0;
  display: grid;
  gap: .15rem;
  padding: 1rem .8rem;
  border-right: 1px solid var(--cv4-line);
}

.cv4-hero-docket > div:last-child {
  border-right: 0;
}

.cv4-hero-docket span {
  color: var(--cv4-signal);
  font-family: monospace;
  font-size: .58rem;
}

.cv4-hero-docket strong {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cv4-hero-docket small {
  color: #8f9a90;
  font-size: .66rem;
}

.cv4-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--cv4-line);
  background: #17221b;
}

.cv4-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 11, .55), transparent 36%),
    linear-gradient(0deg, rgba(7, 16, 11, .56), transparent 42%);
  pointer-events: none;
}

.cv4-hero-media > img,
.cv4-method-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: none !important;
  animation: none !important;
}

.cv4-hero-media > img {
  object-position: 52% center;
}

.cv4-photo-tag {
  position: absolute;
  z-index: 2;
  top: 2rem;
  right: 2rem;
  display: grid;
  justify-items: end;
  gap: .35rem;
  font-family: monospace;
  font-size: .56rem;
  letter-spacing: .14em;
}

.cv4-photo-tag span {
  color: var(--cv4-signal);
}

.cv4-photo-tag b {
  color: rgba(238, 240, 231, .7);
}

.cv4-hero-card {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  width: min(370px, calc(100% - 4rem));
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: .35rem 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(238, 240, 231, .38);
  background: rgba(7, 16, 11, .86);
  backdrop-filter: blur(18px);
  box-shadow: 12px 12px 0 rgba(7, 16, 11, .34);
}

.cv4-hero-card > span {
  grid-column: 1 / -1;
  color: var(--cv4-signal);
  font-family: monospace;
  font-size: .55rem;
  letter-spacing: .17em;
}

.cv4-hero-card strong {
  font-size: .86rem;
}

.cv4-hero-card b {
  grid-column: 1;
  color: #aeb8ae;
  font-size: .7rem;
}

.cv4-hero-card button {
  grid-column: 2;
  grid-row: 2 / 4;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--cv4-signal);
  color: var(--cv4-ink);
}

.cv4-services {
  padding: clamp(5rem, 7vw, 7.2rem) 5vw;
  background:
    radial-gradient(circle at 86% 12%, rgba(223, 255, 67, .1), transparent 27rem),
    var(--cv4-deep);
}

.cv4-section-head {
  max-width: 1500px;
  display: grid;
  grid-template-columns: minmax(230px, .45fr) minmax(620px, 1.55fr);
  gap: 4vw;
  align-items: end;
  margin: 0 auto 3.5rem;
}

.cv4-section-head > div p {
  max-width: 280px;
  margin: 1rem 0 0;
  color: var(--cv4-muted);
  font-size: .85rem;
}

.cv4-section-head h2,
.cv4-method h2,
.cv4-premium h2,
.cv4-review-intro h2,
.cv4-contact h2 {
  margin: 0;
  font-family: "Corevista Display", sans-serif;
  font-size: clamp(3.8rem, 6.2vw, 7.4rem);
  line-height: .82;
  letter-spacing: -.038em;
  text-transform: uppercase;
  text-wrap: balance;
}

.cv4-section-head h2 i,
.cv4-method h2 i,
.cv4-premium h2 i,
.cv4-review-intro h2 i,
.cv4-contact h2 i {
  color: var(--cv4-signal);
  font-style: italic;
}

.cv4-service-console {
  max-width: 1500px;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(620px, 1.28fr);
  margin: 0 auto;
  border: 1px solid #536258;
  background: #0b1510;
  box-shadow: 20px 20px 0 rgba(3, 8, 5, .32);
}

.cv4-service-tabs {
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  border-right: 1px solid #536258;
}

.cv4-service-tabs button {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: .7rem;
  border: 0;
  border-bottom: 1px solid #38473e;
  padding: .65rem .9rem;
  background: transparent;
  color: #aeb8ae;
  text-align: left;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.cv4-service-tabs button:last-child {
  border-bottom: 0;
}

.cv4-service-tabs button[aria-selected="true"] {
  padding-left: 1.25rem;
  background: var(--cv4-signal);
  color: var(--cv4-ink);
}

.cv4-service-tabs button span {
  font-family: monospace;
  font-size: .57rem;
}

.cv4-service-tabs button strong {
  min-width: 0;
  overflow: hidden;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cv4-service-tabs button b {
  font-size: .58rem;
  font-weight: 600;
  white-space: nowrap;
}

.cv4-service-stage {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(223, 255, 67, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 255, 67, .05) 1px, transparent 1px),
    radial-gradient(circle at 86% 20%, rgba(223,255,67,.15), transparent 16rem),
    #17251d;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.cv4-service-stage::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -105px;
  bottom: -105px;
  border: 36px solid rgba(223, 255, 67, .13);
  border-radius: 50%;
}

.cv4-stage-index {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #5a6a60;
  font-family: monospace;
  font-size: .58rem;
  letter-spacing: .14em;
}

.cv4-stage-index span {
  color: var(--cv4-signal);
}

.cv4-stage-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 820px;
}

.cv4-stage-copy > p:first-child {
  margin: 0 0 1rem;
  color: var(--cv4-signal);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cv4-stage-copy h3 {
  max-width: 880px;
  margin: 0 0 1.25rem;
  font-family: "Corevista Display", sans-serif;
  font-size: clamp(3rem, 5.1vw, 6.2rem);
  line-height: .86;
  letter-spacing: -.03em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.cv4-stage-copy > p:last-child {
  max-width: 690px;
  margin: 0;
  color: #c2cbc2;
  line-height: 1.58;
  text-wrap: pretty;
}

.cv4-focus-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #5a6a60;
  border-bottom: 1px solid #5a6a60;
}

.cv4-focus-line span {
  display: grid;
  gap: .25rem;
  padding: .85rem;
  border-right: 1px solid #5a6a60;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cv4-focus-line span:last-child {
  border-right: 0;
}

.cv4-focus-line b {
  color: var(--cv4-signal);
  font-family: monospace;
  font-size: .55rem;
}

.cv4-stage-cta {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  margin-top: 1.2rem;
  border: 1px solid var(--cv4-signal);
  padding: .8rem 1rem;
  background: var(--cv4-signal);
  color: var(--cv4-ink);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cv4-method {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(500px, .92fr);
  background: var(--cv4-paper);
  color: var(--cv4-ink);
}

.cv4-method-visual {
  min-width: 0;
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 1rem;
  padding: 1rem;
  background: #ccd2c8;
}

.cv4-method-visual figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 11, .36);
  background: #1c2b22;
}

.cv4-photo-primary img {
  object-position: 52% center;
}

.cv4-photo-secondary img {
  object-position: 57% center;
}

.cv4-method-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .72rem .8rem;
  background: rgba(7, 16, 11, .84);
  color: var(--cv4-paper);
  font-family: monospace;
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cv4-method-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 6vw, 7rem) 5vw;
}

.cv4-method-code {
  color: #59665c;
}

.cv4-method h2 {
  margin: 1.2rem 0 2.3rem;
  font-size: clamp(3.7rem, 5.7vw, 6.8rem);
}

.cv4-method h2 i {
  color: #667053;
}

.cv4-method-switcher {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #8c968c;
  border-bottom: 1px solid #8c968c;
}

.cv4-method-switcher button {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: .25rem;
  border: 0;
  border-right: 1px solid #a9b1a7;
  padding: .7rem;
  background: transparent;
  color: #637064;
  text-align: left;
}

.cv4-method-switcher button:last-child {
  border-right: 0;
}

.cv4-method-switcher button[aria-selected="true"] {
  background: var(--cv4-ink);
  color: var(--cv4-paper);
}

.cv4-method-switcher span {
  font-family: monospace;
  font-size: .54rem;
}

.cv4-method-switcher strong {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cv4-method-answer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0 0;
}

.cv4-method-answer > b {
  color: #8a948a;
  font-family: "Corevista Display", sans-serif;
  font-size: 2.6rem;
}

.cv4-method-answer strong {
  display: block;
  margin-bottom: .45rem;
  font-family: "Corevista Display", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.cv4-method-answer p {
  max-width: 530px;
  margin: 0;
  color: #59655b;
  line-height: 1.55;
}

.cv4-premium {
  min-height: 580px;
  display: grid;
  grid-template-columns: 90px minmax(600px, 1.28fr) minmax(380px, .72fr);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .26), transparent 35%),
    var(--cv4-signal);
  color: var(--cv4-ink);
}

.cv4-premium-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-right: 1px solid rgba(7, 16, 11, .35);
  writing-mode: vertical-rl;
}

.cv4-premium-index span {
  color: #465238;
}

.cv4-premium-index b {
  font-family: "Corevista Display", sans-serif;
  font-size: 2.5rem;
}

.cv4-premium-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 5vw;
}

.cv4-premium-main > p {
  margin: 0 0 1.3rem;
  font-family: monospace;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .17em;
}

.cv4-premium h2 {
  font-size: clamp(4rem, 6.4vw, 7.6rem);
}

.cv4-premium h2 i {
  color: var(--cv4-ink);
  -webkit-text-stroke: 1px var(--cv4-ink);
}

.cv4-premium-decision {
  align-self: center;
  margin-right: 4vw;
  padding: 2rem;
  border: 1px solid rgba(7, 16, 11, .42);
  background: rgba(238, 240, 231, .36);
  box-shadow: 14px 14px 0 rgba(7, 16, 11, .16);
}

.cv4-premium-decision > p {
  margin: 0 0 1.3rem;
  line-height: 1.5;
}

.cv4-premium-decision ul {
  margin: 0 0 1.7rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7, 16, 11, .24);
}

.cv4-premium-decision li {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .68rem 0;
  border-bottom: 1px solid rgba(7, 16, 11, .24);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cv4-premium-decision li svg {
  width: 14px;
}

.cv4-premium-decision button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: .8rem 1rem;
  background: var(--cv4-ink);
  color: var(--cv4-paper);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cv4-reviews {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(540px, .88fr) minmax(560px, 1.12fr);
  background: var(--cv4-ink);
}

.cv4-review-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw 5rem 6vw;
  border-right: 1px solid var(--cv4-line);
}

.cv4-review-intro h2 {
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(3.5rem, 5.4vw, 6.4rem);
}

.cv4-review-intro p {
  max-width: 520px;
  margin: 0;
  color: #aeb8ae;
  line-height: 1.55;
}

.cv4-review-intro button {
  width: min(320px, 100%);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.7rem;
  border: 1px solid var(--cv4-signal);
  padding: .8rem 1rem;
  background: transparent;
  color: var(--cv4-signal);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cv4-review-console {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(3rem, 5vw, 5.5rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(7,16,11,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,16,11,.08) 1px, transparent 1px),
    var(--cv4-paper);
  background-size: 38px 38px;
  color: var(--cv4-ink);
}

.cv4-review-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .6rem;
}

.cv4-review-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #788279;
  background: var(--cv4-paper);
  color: var(--cv4-ink);
}

.cv4-review-controls span {
  font-family: monospace;
  font-size: .6rem;
}

.cv4-review-console article {
  align-self: center;
  max-width: 720px;
  padding: 2rem;
  border-left: 6px solid var(--cv4-signal);
  background: rgba(238, 240, 231, .86);
  box-shadow: 18px 18px 0 rgba(7, 16, 11, .1);
}

.cv4-review-console article > span,
.cv4-review-console article > b {
  font-family: monospace;
  font-size: .56rem;
  letter-spacing: .15em;
}

.cv4-review-console article > span {
  color: #697469;
}

.cv4-review-console article h3 {
  margin: 1rem 0 .8rem;
  font-family: "Corevista Display", sans-serif;
  font-size: clamp(2.7rem, 4.2vw, 5.2rem);
  line-height: .86;
  text-transform: uppercase;
}

.cv4-review-console article p {
  max-width: 560px;
  margin: 0 0 1.4rem;
  color: #59645a;
  line-height: 1.55;
}

.cv4-review-console article > b {
  color: #59645a;
}

.cv4-review-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .45rem;
}

.cv4-review-dots button {
  height: 4px;
  border: 0;
  background: #aab2a9;
}

.cv4-review-dots button[aria-selected="true"] {
  background: var(--cv4-ink);
}

.cv4-contact {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(580px, 1.08fr) minmax(480px, .92fr);
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 255, 67, .13), transparent 23rem),
    #142219;
}

.cv4-contact-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw 5rem 6vw;
}

.cv4-contact h2 {
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(4rem, 6.5vw, 7.6rem);
}

.cv4-contact h2 i {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--cv4-paper);
}

.cv4-contact-title > p {
  max-width: 580px;
  margin: 0 0 1.7rem;
  color: #b2bcb3;
  line-height: 1.55;
}

.cv4-contact-title .cv4-primary {
  width: min(360px, 100%);
}

.cv4-contact-data {
  align-self: center;
  margin-right: 5vw;
  border-top: 1px solid #617067;
  border-left: 1px solid #617067;
}

.cv4-contact-data > * {
  min-height: 110px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: .25rem 1rem;
  align-content: center;
  margin: 0;
  padding: 1.2rem 1.4rem;
  border-right: 1px solid #617067;
  border-bottom: 1px solid #617067;
  color: var(--cv4-paper);
  font-style: normal;
}

.cv4-contact-data > *:hover {
  background: rgba(223, 255, 67, .08);
}

.cv4-contact-data > * > svg:first-child {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--cv4-signal);
}

.cv4-contact-data span {
  color: #8e998f;
  font-family: monospace;
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cv4-contact-data strong {
  grid-column: 2;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.cv4-contact-data > div,
.cv4-contact-data > address {
  grid-template-columns: 1fr;
  padding-left: 4.6rem;
}

.cv4-contact-data > div strong,
.cv4-contact-data > address strong {
  grid-column: 1;
}

.cv4-footer {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  padding: 3.6rem 5vw 1.5rem;
  border-top: 1px solid #28372e;
  background: #050a07;
}

.cv4-footer-brand p {
  margin: 1rem 0 0;
  color: #8e998f;
  font-size: .78rem;
}

.cv4-footer nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem 1.4rem;
  align-content: start;
}

.cv4-footer nav a {
  color: #a8b2a9;
  font-size: .65rem;
  letter-spacing: .08em;
}

.cv4-footer nav a:hover {
  color: var(--cv4-signal);
}

.cv4-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid #28372e;
  color: #768279;
  font-size: .62rem;
}

.cv4-dialog {
  width: min(1040px, calc(100vw - 36px)) !important;
  max-width: 1040px !important;
  max-height: calc(100svh - 36px) !important;
  grid-template-columns: minmax(240px, .65fr) minmax(500px, 1.35fr) !important;
  gap: 3rem !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: clamp(2rem, 4vw, 4rem) !important;
}

.cv4-dialog [data-slot="dialog-title"] {
  max-width: 100%;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  overflow-wrap: normal;
  word-break: normal;
}

.cv4-dialog .lead-form {
  min-width: 0;
}

/* Compact legal and contact pages */
.legal-page {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--cv4-paper, #eef0e7);
  color: var(--cv4-ink, #07100b);
}

.legal-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(223, 255, 67, .25);
  background: rgba(5, 12, 8, .97);
  color: #eef0e7;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.legal-header .wordmark {
  height: 72px;
  width: auto;
  padding: 0 2.25rem;
  gap: .8rem;
  border-right: 1px solid rgba(238, 240, 231, .2);
  color: #eef0e7;
}

.legal-header .wordmark small {
  color: #dfff43;
}

.legal-header > a:last-child,
.legal-site-nav a {
  color: #eef0e7;
}

.legal-hero {
  min-height: 290px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 3rem;
  align-items: end;
  padding: 4.5rem 6vw 3rem;
  background:
    radial-gradient(circle at 14% 10%, rgba(223,255,67,.13), transparent 18rem),
    #0d1812;
  color: #eef0e7;
}

.legal-hero p {
  align-self: start;
  color: #dfff43;
  font-family: monospace;
  font-size: .62rem;
  letter-spacing: .14em;
}

.legal-hero h1 {
  max-width: 1000px;
  margin: 0;
  color: #eef0e7;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: .84;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .3);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 780px);
  justify-content: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: 4.5rem 6vw 6rem;
}

.legal-aside {
  position: static;
  align-self: start;
  padding: 1.3rem;
  border-left: 4px solid #dfff43;
  background: #dfe4d9;
  font-size: .75rem;
  line-height: 1.75;
}

.legal-copy {
  min-width: 0;
}

.legal-copy h2 {
  margin: 2.6rem 0 .7rem;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  font-size: .96rem;
  line-height: 1.7;
  overflow-wrap: normal;
  word-break: normal;
}

.legal-footer {
  padding: 1.5rem 6vw;
  border-top: 1px solid #bdc5ba;
  background: #e2e6de;
  font-size: .68rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: 4.5rem 6vw 6rem;
}

.contact-page-details {
  align-self: start;
  padding: 1.5rem;
  border-left: 5px solid #dfff43;
  background: #dfe4d9;
}

.contact-page-details a {
  display: block;
  margin: .7rem 0;
  font-size: 1.2rem;
  overflow-wrap: anywhere;
}

.contact-page-form {
  min-width: 0;
}

@media (max-width: 1120px) {
  .cv4-header {
    grid-template-columns: minmax(220px, .8fr) 1fr auto;
  }
  .cv4-nav {
    gap: 1.4rem;
  }
  .cv4-header-cta {
    min-width: 190px;
  }
  .cv4-hero {
    grid-template-columns: 1fr 1fr;
  }
  .cv4-hero-copy {
    padding-left: 4vw;
  }
  .cv4-hero h1 {
    font-size: clamp(4.5rem, 7.2vw, 6.8rem);
  }
  .cv4-section-head,
  .cv4-service-console {
    max-width: none;
  }
  .cv4-service-console {
    grid-template-columns: 300px 1fr;
  }
  .cv4-service-tabs button b {
    display: none;
  }
  .cv4-method {
    grid-template-columns: 1fr 1fr;
  }
  .cv4-method-visual {
    grid-template-columns: 1fr;
  }
  .cv4-photo-secondary {
    display: none;
  }
  .cv4-premium {
    grid-template-columns: 64px 1fr;
  }
  .cv4-premium-decision {
    grid-column: 2;
    width: auto;
    margin: 0 5vw 4rem;
  }
  .cv4-reviews,
  .cv4-contact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .cv4-header {
    height: 68px;
    grid-template-columns: 1fr 68px;
  }
  .cv4-logo {
    padding: 0 1rem;
    border-right: 1px solid rgba(238,240,231,.2);
  }
  .cv4-brand {
    font-size: .95rem;
  }
  .cv4-mark {
    width: 34px;
    height: 34px;
  }
  .cv4-nav,
  .cv4-header-cta {
    display: none;
  }
  .cv4-menu-toggle {
    display: grid;
    place-items: center;
    border: 0;
    border-left: 1px solid rgba(238,240,231,.2);
    background: transparent;
    color: var(--cv4-paper);
  }
  .cv4-mobile-nav {
    position: fixed;
    z-index: 119;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    padding: 1rem;
    background: rgba(5, 12, 8, .98);
    border-bottom: 1px solid #47564c;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .cv4-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .cv4-mobile-nav a,
  .cv4-mobile-nav button {
    display: flex;
    align-items: center;
    min-height: 50px;
    border: 0;
    border-bottom: 1px solid #314038;
    background: transparent;
    color: var(--cv4-paper);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .cv4-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 68px;
  }
  .cv4-hero-copy {
    order: 2;
    padding: 3.4rem 1.2rem 3rem;
  }
  .cv4-hero-media {
    order: 1;
    height: 420px;
    border-left: 0;
    border-bottom: 1px solid var(--cv4-line);
  }
  .cv4-hero-media > img {
    object-position: 52% 36%;
  }
  .cv4-hero h1 {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }
  .cv4-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .cv4-hero-docket {
    grid-template-columns: 1fr;
  }
  .cv4-hero-docket > div {
    border-right: 0;
    border-bottom: 1px solid var(--cv4-line);
  }
  .cv4-hero-docket > div:last-child {
    border-bottom: 0;
  }
  .cv4-photo-tag {
    top: 1rem;
    right: 1rem;
  }
  .cv4-hero-card {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
  .cv4-services {
    padding: 4.5rem 1.2rem;
  }
  .cv4-section-head {
    grid-template-columns: 1fr;
    margin-bottom: 2.6rem;
  }
  .cv4-section-head h2,
  .cv4-method h2,
  .cv4-premium h2,
  .cv4-review-intro h2,
  .cv4-contact h2 {
    font-size: clamp(3.4rem, 14vw, 5.6rem);
  }
  .cv4-service-console {
    min-height: 0;
    grid-template-columns: 1fr;
    box-shadow: 10px 10px 0 rgba(3,8,5,.32);
  }
  .cv4-service-tabs {
    grid-template-columns: repeat(8, minmax(175px, 1fr));
    grid-template-rows: 1fr;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #536258;
    scrollbar-width: thin;
  }
  .cv4-service-tabs button {
    min-height: 72px;
    grid-template-columns: 28px 1fr;
    border-right: 1px solid #38473e;
    border-bottom: 0;
  }
  .cv4-service-tabs button strong {
    white-space: normal;
  }
  .cv4-service-stage {
    min-height: 510px;
    padding: 1.3rem;
  }
  .cv4-stage-copy h3 {
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }
  .cv4-focus-line {
    grid-template-columns: 1fr;
  }
  .cv4-focus-line span {
    border-right: 0;
    border-bottom: 1px solid #5a6a60;
  }
  .cv4-focus-line span:last-child {
    border-bottom: 0;
  }
  .cv4-stage-cta {
    justify-self: stretch;
  }
  .cv4-method {
    grid-template-columns: 1fr;
  }
  .cv4-method-visual {
    min-height: 480px;
  }
  .cv4-method-panel {
    padding: 4rem 1.2rem;
  }
  .cv4-method-switcher {
    grid-template-columns: repeat(2, 1fr);
  }
  .cv4-method-switcher button:nth-child(2) {
    border-right: 0;
  }
  .cv4-method-switcher button:nth-child(-n+2) {
    border-bottom: 1px solid #a9b1a7;
  }
  .cv4-premium {
    grid-template-columns: 44px 1fr;
  }
  .cv4-premium-main {
    padding: 4rem 1.2rem;
  }
  .cv4-premium-decision {
    margin: 0 1.2rem 3.5rem;
    padding: 1.2rem;
  }
  .cv4-reviews,
  .cv4-contact {
    grid-template-columns: 1fr;
  }
  .cv4-review-intro,
  .cv4-contact-title {
    padding: 4rem 1.2rem;
  }
  .cv4-review-console {
    min-height: 520px;
    padding: 1.2rem;
  }
  .cv4-review-console article {
    padding: 1.2rem;
    box-shadow: 9px 9px 0 rgba(7,16,11,.1);
  }
  .cv4-contact-data {
    margin: 0 1.2rem 4rem;
  }
  .cv4-contact-data > * {
    grid-template-columns: 24px minmax(0, 1fr) auto;
  }
  .cv4-contact-data > div,
  .cv4-contact-data > address {
    padding-left: 1.4rem;
  }
  .cv4-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem 5.5rem;
  }
  .cv4-footer nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .cv4-footer-meta {
    grid-column: auto;
    flex-direction: column;
  }
  .cv4-dialog {
    width: calc(100vw - 18px) !important;
    max-height: calc(100svh - 18px) !important;
    grid-template-columns: 1fr !important;
    gap: 1.3rem !important;
    padding: 1.25rem !important;
  }
  .cv4-dialog [data-slot="dialog-title"] {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
  .legal-page {
    padding-top: 68px;
  }
  .legal-header {
    height: 68px;
  }
  .legal-header .wordmark {
    height: 68px;
  }
  .legal-site-nav a:first-child {
    display: none;
  }
  .legal-hero {
    min-height: 230px;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 3.5rem 1.2rem 2.5rem;
  }
  .legal-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.8rem);
  }
  .legal-content,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.2rem 4rem;
  }
  .legal-copy h2 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cv4-site *,
  .cv4-site *::before,
  .cv4-site *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* Corevista 2026 refinement: bright luxury hero, launch story, assistant and stable forms. */
html {
  scrollbar-gutter: stable;
  scroll-padding-top: 76px;
}

.sr-only {
  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;
}

.cv5-site img {
  transform: none !important;
  animation: none !important;
}

.cv5-hero {
  min-height: 780px;
  background: #f2f0e8;
  color: #0b160f;
}

.cv5-hero .cv4-hero-copy {
  padding-top: 5.4rem;
  background:
    linear-gradient(135deg, rgba(222, 255, 67, .2), transparent 38%),
    linear-gradient(180deg, #f6f4ec, #ecebe2);
  color: #0b160f;
}

.cv5-hero .cv4-kicker {
  color: #496013;
}

.cv5-hero .cv4-hero h1,
.cv5-hero h1 {
  max-width: 760px;
}

.cv5-hero .cv4-hero h1 em,
.cv5-hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px #0b160f;
  text-stroke: 1.5px #0b160f;
}

.cv5-hero .cv4-hero-lead {
  color: #435048;
}

.cv5-hero .cv4-primary {
  box-shadow: 9px 9px 0 #0b160f;
}

.cv5-hero .cv4-text-link {
  border-bottom-color: rgba(11, 22, 15, .45);
  color: #0b160f;
}

.cv5-hero .cv4-hero-docket {
  border-color: rgba(11, 22, 15, .25);
}

.cv5-hero .cv4-hero-docket > div {
  border-color: rgba(11, 22, 15, .25);
}

.cv5-hero .cv4-hero-docket span {
  color: #496013;
}

.cv5-hero .cv4-hero-docket small {
  color: #657067;
}

.cv5-hero .cv4-hero-media {
  min-width: 0;
  overflow: hidden;
  background: #dfd8c7;
  contain: layout paint;
}

.cv5-hero .cv4-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cv5-hero .cv4-hero-media::after {
  background: linear-gradient(90deg, rgba(8, 17, 11, .08), transparent 35%);
}

.cv5-hero .cv4-photo-tag {
  color: #0b160f;
  text-shadow: none;
}

.cv5-hero .cv4-hero-card {
  border-color: rgba(11, 22, 15, .2);
  background: rgba(247, 246, 239, .92);
  color: #0b160f;
  box-shadow: 0 22px 60px rgba(50, 43, 25, .22);
  backdrop-filter: blur(15px);
}

.cv5-centered-head {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.2rem;
  text-align: center;
}

.cv5-centered-head > div {
  max-width: 520px;
}

.cv5-centered-head h2 {
  max-width: 1100px;
}

.cv5-centered-head h2 span,
.cv5-centered-head h2 i,
.cv4-method-panel h2 span,
.cv4-method-panel h2 i,
.cv4-premium-main h2 span,
.cv4-premium-main h2 i,
.cv4-contact-title h2 span,
.cv4-contact-title h2 i,
.cv5-launch h2 span,
.cv5-launch h2 i {
  display: block;
}

.cv5-launch {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-top: 1px solid #9ba497;
  border-bottom: 1px solid #9ba497;
  background:
    radial-gradient(circle at 18% 42%, rgba(223, 255, 67, .2), transparent 24rem),
    #eef0e7;
  color: #07100b;
}

.cv5-launch-orbit {
  position: relative;
  min-height: 720px;
  display: grid;
  place-content: center;
  place-items: center;
  border-right: 1px solid #aab2a7;
  font-family: "Corevista Display", sans-serif;
  text-transform: uppercase;
}

.cv5-launch-orbit::before,
.cv5-launch-orbit::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(29vw, 390px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(7, 16, 11, .25);
  border-radius: 50%;
}

.cv5-launch-orbit::after {
  width: min(21vw, 280px);
  border-color: #91ad28;
}

.cv5-launch-orbit span,
.cv5-launch-orbit b,
.cv5-launch-orbit i {
  position: relative;
  z-index: 1;
  letter-spacing: .18em;
}

.cv5-launch-orbit span { font-size: .62rem; }
.cv5-launch-orbit strong { position: relative; z-index: 1; margin: .3rem 0; font-size: clamp(4rem, 7vw, 7.5rem); line-height: .8; }
.cv5-launch-orbit b { color: #5d701f; font-size: 1.1rem; }
.cv5-launch-orbit i { margin-top: 5rem; font-size: .68rem; }

.cv5-launch-copy {
  align-self: center;
  padding: clamp(4.5rem, 7vw, 8rem) clamp(3rem, 7vw, 8rem);
}

.cv5-launch-copy > span {
  color: #5d701f;
  font-family: monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.cv5-launch h2 {
  margin: 1.4rem 0 1.8rem;
  font-family: "Corevista Display", sans-serif;
  font-size: clamp(4rem, 6.3vw, 7.5rem);
  line-height: .82;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.cv5-launch h2 i {
  color: transparent;
  -webkit-text-stroke: 1.4px #07100b;
}

.cv5-launch-copy > p {
  max-width: 780px;
  color: #4b574e;
  font-size: clamp(1rem, 1.25vw, 1.3rem);
}

.cv5-launch-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid #9ba497;
  border-bottom: 1px solid #9ba497;
}

.cv5-launch-principles > div {
  min-width: 0;
  padding: 1.35rem 1.2rem 1.5rem 0;
}

.cv5-launch-principles > div + div {
  padding-left: 1.2rem;
  border-left: 1px solid #9ba497;
}

.cv5-launch-principles b {
  display: block;
  color: #657d1a;
  font-family: monospace;
  font-size: .62rem;
}

.cv5-launch-principles strong {
  display: block;
  margin: .6rem 0;
  font-size: .95rem;
  text-transform: uppercase;
}

.cv5-launch-principles p {
  margin: 0;
  color: #5c685f;
  font-size: .86rem;
}

.cv5-launch-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.cv5-feedback-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 0;
  border: 0;
  border-bottom: 1px solid #07100b;
  background: transparent;
  color: #07100b;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cv5-footer {
  grid-template-columns: minmax(280px, 1.25fr) .65fr .85fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
  padding-top: 4.5rem;
}

.cv5-footer .cv4-footer-brand p {
  max-width: 430px;
}

.cv5-footer-group > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--cv4-signal);
  font-family: monospace;
  font-size: .62rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.cv5-footer-group nav {
  display: grid;
  gap: .65rem;
}

.cv5-footer-group a {
  width: fit-content;
  color: #d3d9d0;
  font-size: .86rem;
}

.cv5-footer-group a:hover,
.cv5-footer-group a:focus-visible {
  color: var(--cv4-signal);
}

.cv5-footer .cv4-footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cv4-line);
}

.cv5-subpage-footer {
  --cv4-paper: #eef0e7;
  --cv4-muted: #aeb8ae;
  --cv4-line: rgba(224, 232, 222, .24);
  --cv4-signal: #dfff43;
  width: 100%;
  color: #eef0e7;
}

.cv5-assistant-trigger {
  position: fixed;
  z-index: 146;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(360px, calc(100vw - 2.4rem));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1rem;
  border: 1px solid #dfff43;
  background: #07100b;
  color: #eef0e7;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  text-align: left;
}

.cv5-assistant-trigger[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
}

.cv5-assistant-trigger > svg { width: 22px; color: #dfff43; }
.cv5-assistant-trigger span { min-width: 0; }
.cv5-assistant-trigger b,
.cv5-assistant-trigger small { display: block; }
.cv5-assistant-trigger b { font-size: .68rem; letter-spacing: .15em; }
.cv5-assistant-trigger small { margin-top: .18rem; color: #aeb8ae; font-size: .7rem; }

.cv5-assistant {
  position: fixed;
  z-index: 150;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(440px, calc(100vw - 2.4rem));
  max-height: min(760px, calc(100dvh - 100px));
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  border: 1px solid #627064;
  background: #eef0e7;
  color: #07100b;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
  transform: translateY(20px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.cv5-assistant.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.cv5-assistant > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: #07100b;
  color: #eef0e7;
}

.cv5-assistant > header span,
.cv5-assistant > header strong { display: block; }
.cv5-assistant > header span { color: #dfff43; font-family: monospace; font-size: .56rem; letter-spacing: .12em; }
.cv5-assistant > header span i { display: inline-block; width: 6px; height: 6px; margin-right: .35rem; border-radius: 50%; background: #dfff43; box-shadow: 0 0 12px #dfff43; }
.cv5-assistant > header strong { margin-top: .2rem; font-family: "Corevista Display", sans-serif; font-size: 1.55rem; text-transform: uppercase; }
.cv5-assistant > header button { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #667169; background: transparent; color: #eef0e7; }

.cv5-chat-log {
  min-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1rem;
}

.cv5-chat-log > div { max-width: 88%; }
.cv5-chat-log > div.user { align-self: flex-end; }
.cv5-chat-log > div span { display: block; margin-bottom: .25rem; color: #657d1a; font-family: monospace; font-size: .54rem; letter-spacing: .12em; }
.cv5-chat-log > div.user span { text-align: right; }
.cv5-chat-log p { margin: 0; padding: .75rem .85rem; border: 1px solid #b2b9b0; background: #fff; font-size: .84rem; }
.cv5-chat-log .user p { border-color: #26352b; background: #15231b; color: #eef0e7; }

.cv5-chat-quick { display: flex; gap: .45rem; overflow-x: auto; padding: 0 1rem .8rem; }
.cv5-chat-quick button { flex: 0 0 auto; padding: .55rem .65rem; border: 1px solid #8f998e; background: transparent; color: #07100b; font-size: .67rem; }
.cv5-chat-compose { display: grid; grid-template-columns: 1fr 48px; margin: 0 1rem; border: 1px solid #788279; background: #fff; }
.cv5-chat-compose input { min-width: 0; border: 0; padding: .85rem; background: transparent; color: #07100b; }
.cv5-chat-compose button { display: grid; place-items: center; border: 0; background: #dfff43; color: #07100b; }
.cv5-chat-compose svg { width: 18px; }
.cv5-assistant-actions { display: grid; grid-template-columns: 1fr auto; gap: .6rem; padding: .8rem 1rem 1rem; }
.cv5-assistant-actions button { min-height: 44px; border: 1px solid #07100b; background: transparent; color: #07100b; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cv5-assistant-actions button:first-child { display: flex; align-items: center; justify-content: space-between; padding: 0 .8rem; background: #07100b; color: #dfff43; }

.cv5-assistant > footer {
  display: flex;
  gap: .55rem;
  padding: .75rem 1rem;
  border-top: 1px solid #c2c8c0;
  color: #667168;
  font-size: .63rem;
}
.cv5-assistant > footer svg { width: 15px; flex: 0 0 auto; }

.cv5-bot-application { overflow-y: auto; display: grid; gap: .75rem; padding: 1rem; }
.cv5-bot-application > button:first-child { width: fit-content; padding: 0; border: 0; background: transparent; color: #4f5d52; font-size: .68rem; }
.cv5-bot-application h2 { margin: 0; font-family: "Corevista Display", sans-serif; font-size: 2rem; text-transform: uppercase; }
.cv5-bot-application > p { margin: -.45rem 0 .3rem; color: #68736a; font-size: .78rem; }
.cv5-bot-application label { display: grid; gap: .35rem; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cv5-bot-application input,
.cv5-bot-application textarea,
.cv5-bot-application select { width: 100%; border: 1px solid #98a198; background: #fff; color: #07100b; padding: .72rem; text-transform: none; }
.cv5-bot-consent { grid-template-columns: auto 1fr !important; align-items: start; letter-spacing: 0 !important; text-transform: none !important; font-weight: 400 !important; }
.cv5-bot-consent input { width: 18px; height: 18px; }
.cv5-bot-consent a { text-decoration: underline; }
.cv5-bot-submit { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 .9rem; border: 0; background: #07100b; color: #dfff43; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.cv5-dialog {
  width: min(1080px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
}

.cv5-form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.2rem;
  border-top: 1px solid #aab1a8;
  border-bottom: 1px solid #aab1a8;
}

.cv5-form-progress span {
  padding: .75rem;
  color: #4d5a50;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cv5-form-progress span + span { border-left: 1px solid #aab1a8; }
.cv5-form-progress b { margin-right: .5rem; color: #6d821d; font-family: monospace; }
.cv5-lead-form input,
.cv5-lead-form textarea,
.cv5-lead-form select,
.cv5-lead-form .service-select { min-height: 48px; }
.cv5-lead-form input::placeholder,
.cv5-lead-form textarea::placeholder { color: #7a847c; opacity: 1; }
.cv5-message-field { position: relative; }
.cv5-message-field small { justify-self: end; margin-top: .35rem; color: #687269; font-size: .62rem; }
.cv5-form-security { display: flex; align-items: center; gap: .55rem; color: #566159; font-size: .7rem; }
.cv5-form-security svg { width: 16px; color: #60791d; }

@media (max-width: 1100px) {
  .cv5-launch { grid-template-columns: 280px 1fr; }
  .cv5-launch-copy { padding-left: 3rem; padding-right: 3rem; }
  .cv5-launch-principles { grid-template-columns: 1fr; }
  .cv5-launch-principles > div + div { padding-left: 0; border-left: 0; border-top: 1px solid #9ba497; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 68px; }
  .cv5-hero { min-height: 0; grid-template-columns: 1fr; }
  .cv5-hero .cv4-hero-copy { min-height: 650px; padding: 7.2rem 1.2rem 3rem; }
  .cv5-hero .cv4-hero-media { min-height: 520px; height: 66svh; }
  .cv5-hero .cv4-hero-media > img { object-position: 54% center; }
  .cv5-centered-head { gap: 1.2rem; }
  .cv5-centered-head h2 { font-size: clamp(3.2rem, 16vw, 5.8rem); }
  .cv5-launch { grid-template-columns: 1fr; }
  .cv5-launch-orbit { min-height: 360px; border-right: 0; border-bottom: 1px solid #aab2a7; }
  .cv5-launch-orbit::before { width: 290px; }
  .cv5-launch-orbit::after { width: 210px; }
  .cv5-launch-orbit i { margin-top: 3rem; }
  .cv5-launch-copy { padding: 3.5rem 1.2rem 4rem; }
  .cv5-launch h2 { font-size: clamp(3.6rem, 17vw, 5.7rem); }
  .cv5-launch-actions { align-items: stretch; flex-direction: column; }
  .cv5-feedback-link { justify-content: space-between; }
  .cv5-footer { grid-template-columns: 1fr 1fr; padding-top: 3rem; }
  .cv5-footer .cv4-footer-brand { grid-column: 1 / -1; }
  .cv5-footer .cv4-footer-meta { flex-direction: column; gap: .5rem; }
  .cv5-assistant-trigger { right: .7rem; bottom: .7rem; width: calc(100vw - 1.4rem); }
  .cv5-assistant { inset: 68px 0 0; width: 100%; max-height: none; border: 0; }
  .cv5-chat-log { min-height: 0; flex: 1; }
  .cv5-form-progress { grid-template-columns: 1fr; }
  .cv5-form-progress span + span { border-left: 0; border-top: 1px solid #aab1a8; }
}

@media (max-width: 520px) {
  .cv5-footer { grid-template-columns: 1fr; }
  .cv5-footer .cv4-footer-brand { grid-column: auto; }
  .cv5-assistant-actions { grid-template-columns: 1fr; }
}
/* Corevista v6 — stable application panels, single-image method and clear subpage navigation */
.cv4-method {
  min-height: 720px;
  grid-template-columns: minmax(420px, .86fr) minmax(0, 1.14fr);
}

.cv4-method-visual {
  display: block;
  padding: clamp(.75rem, 1vw, 1rem);
}

.cv4-method-visual .cv4-photo-primary {
  width: 100%;
  height: 100%;
  min-height: 690px;
}

.cv4-method-visual .cv4-photo-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.cv4-method-panel {
  min-width: 0;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem);
}

.cv4-method h2 {
  max-width: 100%;
  margin: 1.25rem 0 2.35rem;
  font-size: clamp(3.4rem, 4.75vw, 6.2rem);
  line-height: .87;
  letter-spacing: -.025em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.cv4-method h2 span,
.cv4-method h2 i {
  display: block;
}

.cv4-method-switcher,
.cv4-method-answer {
  width: 100%;
  max-width: 820px;
}

.cv4-contact-data > div.cv6-contact-line {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .25rem 1rem;
  padding: 1.2rem 1.4rem;
}

.cv4-contact-data > .cv6-contact-line > :first-child {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--cv4-signal);
}

.cv4-contact-data > .cv6-contact-line > span:nth-child(2) {
  grid-column: 2;
}

.cv4-contact-data > .cv6-contact-line > strong {
  grid-column: 2;
}

.cv4-contact-data > .cv6-contact-line:hover {
  background: transparent;
}

.legal-site-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  margin-left: auto;
}

.legal-site-nav a {
  min-width: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(238, 240, 231, .18);
  color: #eef0e7;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-site-nav a:last-child {
  min-width: 172px;
  background: #dfff43;
  color: #07100b;
}

.legal-site-nav a:hover,
.legal-site-nav a:focus-visible {
  color: #07100b;
  background: #eef0e7;
}

.contact-detail-value {
  display: block;
  margin: .7rem 0;
  color: #07100b;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.cv6-dialog {
  z-index: 260 !important;
  width: min(900px, calc(100vw - 2rem)) !important;
  max-width: 900px !important;
  max-height: calc(100dvh - 2rem) !important;
  display: block !important;
  gap: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border: 1px solid #738076 !important;
  padding: 0 !important;
  background: #eef0e7 !important;
  box-shadow: 14px 14px 0 #dfff43 !important;
}

[data-slot="dialog-overlay"] {
  z-index: 250 !important;
}

.cv6-dialog > [data-slot="dialog-close"] {
  z-index: 8;
  top: 1rem !important;
  right: 1rem !important;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 240, 231, .55);
  background: rgba(238, 240, 231, .06);
  color: #eef0e7;
  opacity: 1;
}

.cv6-dialog > [data-slot="dialog-close"] svg {
  color: #eef0e7 !important;
  stroke: #eef0e7 !important;
  opacity: 1 !important;
}

.cv6-dialog > [data-slot="dialog-header"] {
  position: relative !important;
  top: auto !important;
  display: block;
  padding: clamp(1.6rem, 3vw, 2.5rem) clamp(4.8rem, 7vw, 6.5rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.4rem, 4vw, 3rem);
  background:
    linear-gradient(115deg, rgba(223, 255, 67, .08), transparent 48%),
    #0d1812;
  color: #eef0e7;
}

.cv6-dialog > [data-slot="dialog-header"] .dialog-kicker {
  color: #dfff43;
}

.cv6-dialog [data-slot="dialog-title"] {
  max-width: 720px !important;
  margin: .45rem 0 .7rem;
  color: #eef0e7;
  font-size: clamp(2.5rem, 5.3vw, 4.5rem) !important;
  line-height: .86;
  letter-spacing: -.02em;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-align: left;
  text-wrap: balance;
}

.cv6-dialog [data-slot="dialog-description"] {
  max-width: 600px;
  margin: 0;
  color: #b9c3ba;
  font-size: .9rem;
  line-height: 1.5;
  text-align: left;
}

.cv6-dialog > .cv5-form-progress {
  position: static !important;
  margin: 0 !important;
  border-top: 0;
  background: #dfe4db;
}

.cv6-dialog > .cv5-lead-form {
  padding: clamp(1.4rem, 3vw, 2.5rem) clamp(1.4rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem);
}

.cv6-native-dialog {
  width: min(900px, calc(100vw - 2rem));
  max-width: 900px;
  max-height: calc(100dvh - 2rem);
  border-color: #738076;
}

.cv6-native-dialog .native-modal-inner {
  display: block;
  padding: 0;
}

.cv6-native-dialog .native-modal-copy {
  padding: clamp(1.6rem, 3vw, 2.5rem) clamp(4.8rem, 7vw, 6.5rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.4rem, 4vw, 3rem);
  background:
    linear-gradient(115deg, rgba(223, 255, 67, .08), transparent 48%),
    #0d1812;
  color: #eef0e7;
}

.cv6-native-dialog .native-modal-copy .dialog-kicker {
  color: #dfff43;
}

.cv6-native-dialog .native-modal-copy h2 {
  max-width: 720px;
  margin: .45rem 0 .7rem;
  color: #eef0e7;
  font-size: clamp(2.5rem, 5.3vw, 4.5rem);
  line-height: .86;
  letter-spacing: -.02em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.cv6-native-dialog .native-modal-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  color: #b9c3ba;
  font-size: .9rem;
  line-height: 1.5;
}

.cv6-native-dialog .modal-close {
  position: absolute;
  z-index: 8;
  top: 1rem;
  right: 1rem;
  float: none;
  width: 42px;
  height: 42px;
  margin: 0;
  border-color: rgba(238, 240, 231, .55);
  background: rgba(238, 240, 231, .06);
  color: #eef0e7;
}

.cv6-native-dialog .cv5-lead-form {
  padding: 0 clamp(1.4rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem);
}

.cv6-native-dialog .cv5-form-progress {
  margin: 0 calc(clamp(1.4rem, 4vw, 3rem) * -1) 1.5rem;
  border-top: 0;
  background: #dfe4db;
}

.cv6-dialog .field-label input,
.cv6-dialog .field-label textarea,
.cv6-dialog .field-label select,
.cv6-dialog .service-select,
.cv6-native-dialog .field-label input,
.cv6-native-dialog .field-label textarea,
.cv6-native-dialog .field-label select,
.contact-page-form .field-label input,
.contact-page-form .field-label textarea,
.contact-page-form .field-label select,
.contact-page-form .service-select {
  min-height: 50px;
  border: 1px solid #98a39a !important;
  padding: .78rem .85rem;
  background: #ffffff !important;
}

.cv6-dialog .field-label textarea,
.cv6-native-dialog .field-label textarea,
.contact-page-form .field-label textarea {
  min-height: 126px;
}

.cv6-dialog .field-label input:focus,
.cv6-dialog .field-label textarea:focus,
.cv6-dialog .field-label select:focus,
.cv6-dialog .service-select:focus,
.cv6-native-dialog .field-label input:focus,
.cv6-native-dialog .field-label textarea:focus,
.cv6-native-dialog .field-label select:focus,
.contact-page-form .field-label input:focus,
.contact-page-form .field-label textarea:focus,
.contact-page-form .field-label select:focus,
.contact-page-form .service-select:focus {
  border-color: #657d1a;
  box-shadow: inset 4px 0 0 #dfff43;
}

.cv6-dialog .consent-line,
.cv6-native-dialog .consent-line,
.contact-page-form .consent-line {
  padding: .9rem;
  border: 1px solid #c2c9c0;
  background: #f7f8f2;
}

.contact-page-form {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid #aab3a9;
  border-top: 8px solid #dfff43;
  background: #f7f8f2;
  box-shadow: 12px 12px 0 #d8ded5;
}

.contact-page-form .form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #aab3a9;
}

.contact-page-form .form-progress span {
  padding: .75rem;
  color: #5f6a61;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.contact-page-form .form-progress span + span {
  border-left: 1px solid #aab3a9;
}

.contact-page-form .form-progress .is-current {
  background: #07100b;
  color: #dfff43;
}

@media (max-width: 820px) {
  .cv4-method {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .cv4-method-visual .cv4-photo-primary {
    min-height: 500px;
    height: 70svh;
  }

  .cv4-method-panel {
    padding: 3.5rem 1.2rem 4rem;
  }

  .cv4-method h2 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .legal-header .wordmark {
    padding: 0 1rem;
  }

  .legal-site-nav a {
    min-width: 0;
    padding: 0 1rem;
  }

  .legal-site-nav a:first-child {
    display: none;
  }

  .legal-site-nav a:last-child {
    min-width: 118px;
  }

  .cv6-dialog,
  .cv6-native-dialog {
    width: calc(100vw - 1rem) !important;
    max-width: none !important;
    max-height: calc(100dvh - 1rem) !important;
    box-shadow: 7px 7px 0 #dfff43 !important;
  }

  .cv6-dialog > [data-slot="dialog-header"],
  .cv6-native-dialog .native-modal-copy {
    padding: 1.45rem 4.2rem 1.35rem 1.15rem;
  }

  .cv6-dialog [data-slot="dialog-title"],
  .cv6-native-dialog .native-modal-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem) !important;
  }

  .cv6-dialog > .cv5-lead-form,
  .cv6-native-dialog .cv5-lead-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cv6-native-dialog .cv5-form-progress {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cv5-form-progress {
    grid-template-columns: repeat(3, 1fr);
  }

  .cv5-form-progress span {
    min-width: 0;
    padding: .65rem .35rem;
    font-size: .52rem;
    text-align: center;
  }

  .cv5-form-progress span + span {
    border-top: 0;
    border-left: 1px solid #aab1a8;
  }

  .cv5-form-progress b {
    display: block;
    margin: 0 0 .2rem;
  }

  .contact-page-form {
    padding: 1.2rem;
    box-shadow: 7px 7px 0 #d8ded5;
  }
}

@media (max-width: 520px) {
  .cv4-method-switcher button {
    padding: .5rem .35rem;
    font-size: .58rem;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .contact-page-form .form-progress span {
    padding: .65rem .25rem;
    font-size: .54rem;
  }
}



.cv4-contact-data > a > span:first-child {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--cv4-signal);
  font-size: 1rem;
}
.cv4-contact-data > a > span:last-child {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--cv4-paper);
  font-size: 1rem;
}
.cv4-native-dialog {
  width: min(1040px, calc(100vw - 36px));
  max-width: 1040px;
  max-height: calc(100svh - 36px);
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.cv4-native-dialog .native-modal-inner {
  grid-template-columns: minmax(240px, .65fr) minmax(500px, 1.35fr);
  gap: 3rem;
  padding: clamp(2rem, 4vw, 4rem);
}
.cv4-native-dialog .native-modal-copy {
  min-width: 0;
}
.cv4-native-dialog .native-modal-copy h2 {
  max-width: 100%;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  overflow-wrap: normal;
  word-break: normal;
}
.legal-aside a,
.contact-page-details a {
  overflow-wrap: anywhere;
}
@media (max-width: 820px) {
  .cv4-native-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
  }
  .cv4-native-dialog .native-modal-inner {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 1.25rem;
  }
  .cv4-native-dialog .native-modal-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
}

/* Final specificity guard for the v6 native dialog shell. */
.cv6-native-dialog {
  width: min(900px, calc(100vw - 2rem)) !important;
  max-width: 900px !important;
  max-height: calc(100dvh - 2rem) !important;
}
.cv6-native-dialog .native-modal-inner {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 0 !important;
}
.cv6-native-dialog .native-modal-copy h2 {
  font-size: clamp(2.5rem, 5.3vw, 4.5rem) !important;
}
@media (max-width: 820px) {
  .cv6-native-dialog {
    width: calc(100vw - 1rem) !important;
    max-width: none !important;
    max-height: calc(100dvh - 1rem) !important;
  }
  .cv6-native-dialog .native-modal-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem) !important;
  }
}
