/* ============================================================
   Virentiq — Home Page CSS
   All front-page-specific styles
   ============================================================ */

/* ─── Hero ───────────────────────────────────────────────────── */
.vq-hero {
  background: var(--field);
  color: #ffffff;
  padding: 0 56px 0;
  position: relative;
  overflow: hidden;
}

.vq-hero__rings {
  position: absolute;
  right: 0;
  top: 0;
  width: 800px;
  height: 800px;
  pointer-events: none;
}

.vq-hero__ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vq-hero__ring--1 {
  width: 480px;
  height: 480px;
  border: 1px solid rgba(0, 229, 255, 0.12);
}

.vq-hero__ring--2 {
  width: 680px;
  height: 680px;
  border: 1px solid rgba(0, 229, 255, 0.07);
}

.vq-hero__ring--3 {
  width: 880px;
  height: 880px;
  border: 1px solid rgba(0, 229, 255, 0.04);
}

.vq-hero__content {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

.vq-hero__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vq-hero__left .vq-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.vq-hero__h1 {
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: 32px;
}

.vq-hero__h1 em {
  color: var(--gold);
  font-style: normal;
}

.vq-hero__dek {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 40px;
}

.vq-hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vq-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vq-hero__right svg {
  max-width: 100%;
  opacity: 0.92;
  filter: drop-shadow(0 0 80px rgba(255, 91, 31, 0.25));
}

/* Manifesto strip */
.vq-manifesto {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.vq-manifesto__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
}

.vq-manifesto__pillar {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vq-manifesto__pillar--gold .vq-manifesto__label {
  color: var(--gold);
}

.vq-manifesto__pillar--gold .vq-manifesto__value {
  color: var(--gold);
}

.vq-manifesto__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}

.vq-manifesto__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

/* ─── Premise ────────────────────────────────────────────────── */
.vq-premise {
  background: var(--bone);
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

.vq-premise__header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.vq-premise__header-left .vq-section-h2 {
  margin-bottom: 0;
}

.vq-premise__header-right {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vq-premise__header-right p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15, 20, 16, 0.75);
}

.vq-premise__callout {
  background: var(--ink);
  color: var(--bone);
  padding: 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
}

.vq-premise__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vq-premise__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vq-premise__card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.vq-premise__card p:last-child {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 20, 16, 0.65);
}

.vq-premise__card-accent {
  height: 3px;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 2px;
}

.vq-premise__card-accent--tangerine {
  background: var(--tangerine);
}

.vq-premise__card-accent--cyan {
  background: var(--cyan);
}

/* ─── Compare ────────────────────────────────────────────────── */
.vq-compare {
  background: var(--field);
  color: #ffffff;
}

.vq-compare .vq-section-h2 {
  color: #ffffff;
}

.vq-compare__table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vq-compare__table {
  min-width: 720px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.vq-compare__table th,
.vq-compare__table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vq-compare__table td:first-child,
.vq-compare__table th:first-child {
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.vq-compare__table thead tr {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.vq-compare__table th {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

.vq-compare__col--virentiq {
  background: rgba(255, 179, 0, 0.06);
}

.vq-compare__table th.vq-compare__col--virentiq {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.vq-yes {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.vq-yes.vq-compare__col--virentiq {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

.vq-no {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.vq-partial {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.vq-compare__table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ─── Process ────────────────────────────────────────────────── */
.vq-process {
  background: #ffffff;
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

.vq-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vq-process__card {
  border-top: 3px solid var(--accent, var(--tangerine));
  padding: 32px 28px;
  background: var(--bone);
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vq-process__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.vq-process__card-top .vq-eyebrow {
  margin-bottom: 0;
}

.vq-process__when {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(15, 20, 16, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vq-process__card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.vq-process__card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 20, 16, 0.65);
}

/* ─── Engines ────────────────────────────────────────────────── */
.vq-engines {
  background: var(--field);
  color: #ffffff;
}

.vq-engines .vq-section-h2 {
  color: #ffffff;
}

.vq-engines__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vq-engine-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vq-engine-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.vq-engine-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.vq-engine-card__header .vq-eyebrow {
  margin-bottom: 0;
}

.vq-engine-icon {
  opacity: 0.7;
}

.vq-engine-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.vq-engine-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vq-engine-card__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vq-engine-card__bullets li:last-child {
  border-bottom: none;
}

.vq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Flywheel ───────────────────────────────────────────────── */
.vq-flywheel {
  background: var(--bone);
}

.vq-flywheel__module {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-top: 48px;
}

.vq-flywheel__left {
  flex: 1;
  min-width: 0;
  max-width: 440px;
}

.vq-flywheel__svg {
  width: 100%;
  height: auto;
}

.vq-flywheel__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vq-flywheel__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--bone-alt);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.vq-flywheel__card:hover {
  background: var(--bone-alt);
}

.vq-flywheel__card[aria-pressed="true"] {
  background: var(--bone);
  transform: translateX(4px);
  border-color: var(--bone-alt);
  box-shadow: -3px 0 0 var(--engine-color, var(--tangerine));
}

.vq-flywheel__card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vq-flywheel__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.vq-flywheel__card-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.vq-flywheel__card-note {
  font-size: 13px;
  color: rgba(15, 20, 16, 0.55);
  line-height: 1.4;
}

.vq-flywheel__status {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 24px;
  opacity: 0.45;
  color: var(--ink);
}

/* ─── Economics ──────────────────────────────────────────────── */
.vq-economics {
  background: var(--ink);
  color: var(--bone);
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.vq-economics .vq-section-h2 {
  color: var(--bone);
}

.vq-economics__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}

.vq-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vq-stat__value {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
  color: #ffffff;
}

.vq-stat__label {
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.45;
}

.vq-economics__disclaimer {
  margin-top: 56px;
  padding: 32px;
  border: 1px dashed rgba(255, 179, 0, 0.5);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vq-economics__disclaimer p:last-child {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(242, 239, 230, 0.7);
}

/* ─── Doors ──────────────────────────────────────────────────── */
.vq-doors {
  background: #ffffff;
}

.vq-doors__list {
  margin-top: 48px;
  border-top: 1px solid var(--bone-alt);
}

.vq-door {
  display: grid;
  grid-template-columns: 10px 200px 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--bone-alt);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}

.vq-door:hover {
  background: var(--bone);
  margin: 0 -56px;
  padding-left: 56px;
  padding-right: 56px;
}

.vq-door__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-color, var(--ink));
  flex-shrink: 0;
}

.vq-door__name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.vq-door__desc {
  font-size: 15px;
  color: rgba(15, 20, 16, 0.55);
  line-height: 1.4;
}

.vq-door__email {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(15, 20, 16, 0.45);
  text-transform: lowercase;
}

.vq-door__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bone-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.vq-door:hover .vq-door__arrow {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ─── Defensibility ──────────────────────────────────────────── */
.vq-defensibility {
  background: var(--bone);
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.vq-defensibility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vq-defensibility__card {
  border-radius: 12px;
  padding: 48px;
}

.vq-defensibility__card--light {
  background: #ffffff;
}

.vq-defensibility__card--dark {
  background: var(--field);
  color: rgba(255, 255, 255, 0.85);
}

.vq-defensibility__card .vq-eyebrow {
  margin-bottom: 28px;
}

.vq-defensibility__card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vq-defensibility__card li {
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.vq-defensibility__card--dark li {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.vq-defensibility__card li:last-child {
  border-bottom: none;
}

/* ─── What You Get ───────────────────────────────────────────── */
.vq-get {
  background: #ffffff;
}

.vq-get__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vq-get__item {
  padding: 36px 32px;
  background: var(--bone);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vq-get__item .vq-eyebrow {
  margin-bottom: 4px;
}

.vq-get__item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4px;
}

.vq-get__item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 20, 16, 0.62);
}

/* ─── Use Cases ──────────────────────────────────────────────── */
.vq-usecases {
  background: var(--bone);
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

.vq-usecases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.vq-usecase-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vq-usecase-card__stripe {
  height: 4px;
  background: var(--engine-color, var(--studio));
  flex-shrink: 0;
}

.vq-usecase-card__body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.vq-usecase-card__body .vq-engine-pill {
  align-self: flex-start;
}

.vq-usecase-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.vq-usecase-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.vq-usecase-card__title a:hover {
  color: var(--engine-color, var(--tangerine));
}

.vq-usecase-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(15, 20, 16, 0.62);
}

.vq-usecase-card__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vq-usecase-card__row {
  padding: 14px 0;
  border-top: 1px solid var(--bone-alt);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vq-usecase-card__row .vq-eyebrow {
  margin-bottom: 0;
}

.vq-usecase-card__row p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 20, 16, 0.65);
}

.vq-usecases__footer {
  margin-top: 40px;
}

.vq-usecases__empty {
  grid-column: 1 / -1;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px dashed var(--bone-alt);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.vq-usecases__empty .vq-eyebrow {
  color: var(--studio);
  margin-bottom: 0;
}

.vq-usecases__empty h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.vq-usecases__empty p {
  font-size: 14px;
  color: rgba(15, 20, 16, 0.5);
}

/* ─── Our Clients ────────────────────────────────────────────── */
.vq-clients {
  background: var(--field);
  color: #ffffff;
}

.vq-clients .vq-section-h2 {
  color: #ffffff;
}

.vq-clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.vq-client-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vq-client-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.vq-client-card__stripe {
  height: 3px;
  background: var(--client-accent, var(--studio));
  flex-shrink: 0;
}

.vq-client-card__logo {
  padding: 24px 24px 0;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.vq-client-card__logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.vq-client-card__monogram {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--field);
  background: var(--client-accent, var(--studio));
  flex-shrink: 0;
}

.vq-client-card__body {
  padding: 16px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.vq-client-card__industry {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--client-accent, var(--studio));
}

.vq-client-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.vq-client-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.vq-client-card__name a:hover {
  color: var(--client-accent, var(--studio));
}

.vq-client-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.vq-client-card__desc p {
  margin: 0;
}

.vq-client-card__services {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vq-client-service-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  white-space: nowrap;
}

.vq-clients__footer {
  margin-top: 48px;
}

.vq-clients__empty {
  grid-column: 1 / -1;
  padding: 60px 40px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.vq-clients__empty .vq-eyebrow {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.vq-clients__empty h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.vq-clients__empty p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── CTA ────────────────────────────────────────────────────── */
.vq-cta {
  background: var(--field);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.vq-cta__echo {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.45;
}

.vq-cta__inner {
  position: relative;
  z-index: 2;
}

.vq-cta__h2 {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.045em;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 32px;
  max-width: 900px;
}

.vq-cta__h2 em {
  color: var(--gold);
  font-style: normal;
}

.vq-cta__dek {
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 40px;
}

.vq-cta__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vq-cta__footnote {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Responsive overrides — home only ──────────────────────── */

/* Tablet */
@media (max-width: 1099px) {
  .vq-hero__content {
    grid-template-columns: 1fr;
    padding: 80px 0 64px;
    gap: 48px;
  }

  .vq-hero__h1 {
    font-size: 80px;
  }

  .vq-hero__right {
    display: none;
  }

  .vq-hero__rings {
    display: none;
  }

  .vq-manifesto {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .vq-manifesto__pillar:first-of-type {
    border-left: none;
  }

  .vq-premise__header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vq-premise__cards {
    grid-template-columns: 1fr;
  }

  .vq-process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .vq-engines__grid {
    grid-template-columns: 1fr;
  }

  .vq-flywheel__module {
    flex-direction: column;
  }

  .vq-flywheel__left {
    max-width: 360px;
    margin: 0 auto;
  }

  .vq-economics__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .vq-stat__value {
    font-size: 40px;
  }

  .vq-defensibility__grid {
    grid-template-columns: 1fr;
  }

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

  .vq-cta__h2 {
    font-size: 64px;
  }

  .vq-cta__echo {
    opacity: 0.28;
  }

  .vq-door:hover {
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .vq-usecases__grid {
    grid-template-columns: 1fr;
  }

  .vq-clients__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 759px) {
  .vq-hero {
    padding: 0 20px;
  }

  .vq-hero__content {
    padding: 64px 0 48px;
  }

  .vq-hero__h1 {
    font-size: 52px;
    letter-spacing: -0.04em;
  }

  .vq-hero__dek {
    font-size: 16px;
  }

  .vq-manifesto {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vq-manifesto__pillar {
    border-left: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .vq-manifesto__tagline {
    padding-bottom: 16px;
  }

  .vq-manifesto__value {
    font-size: 18px;
  }

  .vq-premise__callout {
    font-size: 20px;
  }

  .vq-process__grid {
    grid-template-columns: 1fr;
  }

  .vq-process__card {
    padding: 24px 20px;
  }

  .vq-economics__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vq-stat__value {
    font-size: 36px;
  }

  .vq-doors__list {
    margin-top: 32px;
  }

  .vq-door {
    grid-template-columns: 10px 1fr auto;
    row-gap: 4px;
    padding: 20px 0;
  }

  .vq-door__dot {
    grid-row: 1;
  }

  .vq-door__name {
    font-size: 22px;
    grid-row: 1;
  }

  .vq-door__arrow {
    grid-row: 1;
  }

  .vq-door__desc {
    grid-column: 2 / 4;
    grid-row: 2;
    font-size: 13px;
  }

  .vq-door__email {
    grid-column: 2 / 4;
    grid-row: 3;
  }

  .vq-door:hover {
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .vq-defensibility__card {
    padding: 32px 24px;
  }

  .vq-get__grid {
    grid-template-columns: 1fr;
  }

  .vq-cta__h2 {
    font-size: 44px;
    letter-spacing: -0.035em;
  }

  .vq-cta__echo {
    opacity: 0.18;
    right: -40px;
  }

  .vq-cta__row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .vq-usecases__grid {
    grid-template-columns: 1fr;
  }

  .vq-usecase-card__body {
    padding: 24px 24px 28px;
  }

  .vq-clients__grid {
    grid-template-columns: 1fr;
  }

  .vq-client-card__logo {
    padding: 20px 20px 0;
  }

  .vq-client-card__body {
    padding: 14px 20px 24px;
  }
}

/* ─── Onboarding Modal ───────────────────────────────────────── */

.vq-onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 61, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.vq-onboarding-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vq-onboarding-modal {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
  scrollbar-width: thin;
}

.vq-onboarding-overlay.is-open .vq-onboarding-modal {
  transform: translateY(0);
}

/* Header */
.vq-onboarding-modal__header {
  background: var(--field);
  color: #ffffff;
  padding: 28px 32px 24px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.vq-onboarding-modal__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.15;
}

.vq-onboarding-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s;
}

.vq-onboarding-modal__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Progress dots */
.vq-onboarding__progress {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.vq-onboarding__progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.2s;
}

.vq-onboarding__progress-dot.is-active {
  background: var(--tangerine);
}

/* Body */
.vq-onboarding-modal__body {
  padding: 28px 32px 0;
}

/* Steps */
.vq-onboarding-step {
  display: none;
}

.vq-onboarding-step.is-active {
  display: block;
}

/* Role-specific field groups (hidden until role selected + step 2 shown) */
.vq-role-fields {
  display: none;
}

/* Form fields */
.vq-field {
  margin-bottom: 20px;
}

.vq-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 20, 16, 0.5);
  margin-bottom: 8px;
}

.vq-field input[type="text"],
.vq-field input[type="email"],
.vq-field textarea,
.vq-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bone-alt);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 0.15s;
  outline: none;
  appearance: none;
}

.vq-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230F1410' stroke-opacity='.4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.vq-field input[type="text"]:focus,
.vq-field input[type="email"]:focus,
.vq-field textarea:focus,
.vq-field select:focus {
  border-color: var(--tangerine);
}

.vq-field textarea {
  resize: vertical;
  min-height: 86px;
  line-height: 1.55;
}

/* Role chips */
.vq-role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.vq-role-chip {
  padding: 9px 16px;
  border: 1.5px solid var(--bone-alt);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 20, 16, 0.65);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  background: #ffffff;
}

.vq-role-chip:hover {
  border-color: var(--tangerine);
  color: var(--tangerine);
}

.vq-role-chip.is-selected {
  border-color: var(--tangerine);
  background: rgba(255, 91, 31, 0.06);
  color: var(--tangerine);
}

/* Error message */
.vq-onboarding__error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #cc2200;
  margin-bottom: 4px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.15s;
}

.vq-onboarding__error.is-visible {
  opacity: 1;
}

/* Footer */
.vq-onboarding-modal__footer {
  padding: 20px 32px 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--bone-alt);
  margin-top: 12px;
}

/* Success state */
.vq-onboarding-success {
  display: none;
  text-align: center;
  padding: 48px 24px 16px;
}

.vq-onboarding-success.is-active {
  display: block;
}

.vq-onboarding-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 91, 31, 0.07);
  border: 2px solid var(--tangerine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.vq-onboarding-success__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.vq-onboarding-success__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15, 20, 16, 0.65);
  max-width: 360px;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .vq-onboarding-modal__header,
  .vq-onboarding-modal__body,
  .vq-onboarding-modal__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .vq-onboarding-modal__title {
    font-size: 22px;
  }

  .vq-role-chips {
    gap: 6px;
  }

  .vq-role-chip {
    font-size: 12px;
    padding: 8px 13px;
  }
}
