/* =========================================================================
   Security Landing Pages — shared design system
   Co-branded "InSites / Chris Anderson" security & risk consulting
   Fonts: Anton (display) + Inter (body).  Dark theme.
   ========================================================================= */

:root {
  --black: #000000;
  --bg-05: #050505;
  --bg-0a: #0a0a0a;
  --bg-0d: #0d0d0d;
  --bg-11: #111111;
  --bg-1a: #1a1a1a;

  --white: #ffffff;
  --g-cc: #cccccc;
  --g-aa: #aaaaaa;
  --g-88: #888888;
  --g-66: #666666;
  --g-55: #555555;
  --g-44: #444444;
  --g-33: #333333;
  --g-2a: #2a2a2a;

  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1440px;
  --pad-x: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---- shared page shell: each variation is a single centered 1440 column ---- */
.page {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--black);
}

/* ---- typography helpers ---- */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--g-33);
  text-transform: uppercase;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.serif-italic {
  font-style: italic;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 0;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  text-transform: uppercase;
}
.btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}
.btn--sm {
  padding: 10px 24px;
  font-size: 11px;
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--g-33);
}
.btn--ghost:hover {
  border-color: var(--white);
}

/* ---- icons (lucide via inline svg use a common size) ---- */
.icon {
  display: inline-block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- nav ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  height: 72px;
  background: var(--black);
}
.nav__name {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.nav__partner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--bg-1a);
  border-radius: 4px;
  padding: 6px 14px;
}
.nav__partner-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--g-88);
  text-transform: uppercase;
}
.nav__partner-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}

/* ---- generic full-bleed media section with overlay ---- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-0a);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 760px;
}

.cobrand-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.cobrand-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--white);
}
.cobrand-tag span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g-88);
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--g-aa);
  max-width: 600px;
  margin-bottom: 24px;
}

/* ---- section base ---- */
.section {
  padding: 80px var(--pad-x);
}
.section--tight {
  padding: 64px var(--pad-x);
}

/* ---- proof split (image + text) ---- */
.split {
  display: flex;
  width: 100%;
}
.split > .split__text {
  flex: 0 0 600px;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--bg-0a);
}
.split > .split__media {
  flex: 1 1 auto;
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.split h2 {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
}
.split p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--g-55);
  max-width: 460px;
}

/* ---- vendor platform band ---- */
.vendors {
  background: var(--black);
  border-top: 1px solid var(--bg-11);
  text-align: center;
  padding: 80px var(--pad-x);
}
.vendors__pre {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g-33);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.vendors__h {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.vendors__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.vendor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  padding: 20px 0;
}
.vendor svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}
.vendor span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--g-aa);
  text-transform: uppercase;
}
.vendors__rule {
  height: 1px;
  background: var(--bg-11);
  margin-bottom: 40px;
}
.vendors__tag {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--g-33);
  text-transform: uppercase;
}

/* ---- stats bar ---- */
.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--bg-11);
  padding: 24px 80px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1 0;
}
.stat__value {
  font-family: var(--display);
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
}
.stat__label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--g-66);
  text-transform: uppercase;
}

/* ---- problem section ---- */
.problem {
  display: flex;
  background: var(--black);
  padding: 80px;
  gap: 0;
}
.problem__left {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 72px;
}
.problem__left h2 {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1.05;
  text-transform: uppercase;
}
.problem__left .sub {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1.1;
  color: var(--g-44);
  text-transform: uppercase;
}
.problem__left .body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--g-66);
}
.q-block {
  padding: 20px 0;
}
.q-block .q-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g-55);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.q-block .q-text {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}
.problem__right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 48px;
}
.card-row {
  display: flex;
  gap: 12px;
}
.signal-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-0d);
  border: 1px solid var(--bg-1a);
  padding: 16px;
}
.signal-card svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}
.signal-card span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--g-88);
}

/* ---- hidden cost / verdict + liability flow ---- */
.hidden {
  background: var(--bg-05);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px;
}
.verdict {
  display: flex;
  background: var(--black);
}
.verdict__head {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px;
}
.verdict__head h2 {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
}
.verdict__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  background: var(--bg-05);
  padding: 32px 48px;
}
.verdict-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}
.verdict-row--old {
  border-bottom: 1px solid var(--bg-11);
}
.verdict-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}
.verdict-badge--x {
  background: var(--bg-0d);
  border: 1px solid var(--bg-1a);
  color: var(--g-33);
}
.verdict-badge--check {
  background: var(--bg-11);
  border: 1px solid var(--g-33);
  color: var(--g-88);
}
.verdict-badge svg {
  width: 16px;
  height: 16px;
}
.verdict-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.verdict-row--old .verdict-label {
  color: var(--g-2a);
}
.verdict-row--old .verdict-q {
  font-size: 16px;
  font-style: italic;
  color: var(--g-44);
}
.verdict-row--new .verdict-label {
  color: var(--g-44);
}
.verdict-row--new .verdict-q {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}
.verdict__btn {
  margin-top: 8px;
}

.flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px 0;
}
.flow__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  flex: 1 1 0;
  padding: 16px 0;
  min-width: 140px;
}
.flow__node svg {
  width: 32px;
  height: 32px;
  color: var(--g-55);
}
.flow__node .top {
  font-size: 12px;
  color: var(--g-66);
}
.flow__node .bot {
  font-size: 12px;
  color: var(--g-44);
}
.flow__arrow {
  font-size: 20px;
  color: var(--bg-1a);
}

/* ---- vision insites ---- */
.vision {
  display: flex;
  background: var(--black);
}
.vision__media {
  flex: 0 0 640px;
  min-height: 560px;
  background: var(--bg-0a);
  background-size: cover;
  background-position: center;
}
.vision__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px 56px;
}
.vision__pre {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g-33);
  text-transform: uppercase;
}
.vision__h {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
}
.vision__sub {
  font-size: 16px;
  color: var(--g-55);
}
.vision__tag {
  font-size: 14px;
  font-style: italic;
  color: var(--g-33);
}
.feature-list {
  display: flex;
  flex-direction: column;
}
.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-0d);
}
.feature::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--white);
  flex: 0 0 6px;
}
.feature span {
  font-size: 14px;
  color: var(--g-66);
}

/* ---- meet chris (image right, content left) ---- */
.chris {
  position: relative;
  min-height: 520px;
  background: var(--bg-0d);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.chris__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 680px;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.chris__media-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 680px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-0d) 100%);
}
.chris__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chris__label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g-55);
  text-transform: uppercase;
}
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cred::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--white);
  flex: 0 0 6px;
}
.cred span {
  font-size: 15px;
  color: var(--g-cc);
}

/* ---- for security companies (full-bleed) ---- */
.forsec {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.forsec__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.forsec__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.67));
}
.forsec__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.forsec__content h2 {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
}
.benefit-list {
  display: flex;
  flex-direction: column;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.benefit::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: var(--bg-1a);
  border: 1px solid var(--g-33);
  flex: 0 0 14px;
}
.benefit span {
  font-size: 14px;
  color: var(--g-66);
}

/* ---- final CTA ---- */
.final {
  text-align: center;
  background: var(--black);
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.final h2 {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 900px;
}
.final__sub {
  font-size: 16px;
  color: var(--g-55);
}

/* ---- footer ---- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--bg-0a);
  border-top: 1px solid var(--bg-1a);
  padding: 24px 80px;
}
.footer span {
  font-size: 12px;
  color: var(--g-44);
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  :root {
    --pad-x: 40px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero__inner {
    padding: 0 40px;
  }
  .split {
    flex-direction: column;
  }
  .split > .split__text {
    flex-basis: auto;
    padding: 56px 40px;
  }
  .split > .split__media {
    min-height: 320px;
  }
  .problem {
    flex-direction: column;
    padding: 56px 40px;
  }
  .problem__left {
    flex-basis: auto;
    padding: 0 0 32px;
  }
  .problem__left h2 {
    font-size: 40px;
  }
  .problem__left .sub {
    font-size: 30px;
  }
  .problem__right {
    padding: 0;
  }
  .verdict {
    flex-direction: column;
  }
  .verdict__head {
    flex-basis: auto;
  }
  .vision {
    flex-direction: column;
  }
  .vision__media {
    flex-basis: auto;
    min-height: 360px;
  }
  .vision__h {
    font-size: 44px;
  }
  .chris__media,
  .chris__media-overlay {
    width: 100%;
  }
  .chris__media-overlay {
    background: linear-gradient(to right, var(--bg-0d) 8%, rgba(13, 13, 13, 0.55) 60%, rgba(13, 13, 13, 0.2) 100%);
  }
  .forsec__content h2 {
    font-size: 40px;
  }
  .final h2 {
    font-size: 48px;
  }
}

/* =========================================================================
   V2 — The Proof  (split hero, insight rows, alternating sections)
   ========================================================================= */
.v2-nav {
  height: 64px;
  background: var(--bg-05);
}
.v2-nav__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-nav__mark {
  width: 28px;
  height: 28px;
  background: var(--white);
}
.v2-nav__name {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.v2-nav__center {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #222;
  border-radius: 2px;
  padding: 5px 12px;
}
.v2-nav__center .lbl {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--g-55);
  text-transform: uppercase;
}
.v2-nav__center .divider {
  width: 1px;
  height: 14px;
  background: var(--g-33);
}
.v2-nav__center .nm {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}

.v2-hero {
  display: flex;
  min-height: 680px;
}
.v2-hero__left {
  flex: 0 0 680px;
  background: var(--black);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.v2-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--g-44);
  text-transform: uppercase;
}
.v2-hero__h {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.95;
  text-transform: uppercase;
}
.v2-hero__h .dim {
  color: var(--g-44);
}
.v2-hero__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--g-66);
  max-width: 520px;
}
.v2-hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.v2-hero__cta .note {
  font-size: 12px;
  color: var(--g-33);
}
.v2-hero__right {
  flex: 1 1 auto;
  position: relative;
  background: var(--bg-11);
  background-size: cover;
  background-position: center;
  min-height: 680px;
}
.v2-hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 200px;
  background: linear-gradient(to right, var(--black), rgba(0, 0, 0, 0));
}

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
  height: 76px;
  padding: 0 80px;
  background: var(--bg-0a);
  border-top: 1px solid var(--bg-1a);
  border-bottom: 1px solid var(--bg-1a);
}
.proof-bar .lbl {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--g-33);
  text-transform: uppercase;
}
.proof-bar .item {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--g-55);
  text-transform: uppercase;
}

.insight-row {
  display: flex;
  min-height: 400px;
  border-bottom: 1px solid #0f0f0f;
}
.insight-row__text {
  flex: 0 0 680px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 60px 64px;
}
.insight-row__text--bordered {
  border-left: 1px solid #0f0f0f;
}
.insight-row__num {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 2px;
  color: #222;
}
.insight-row__h {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.05;
  text-transform: uppercase;
}
.insight-row__h--q {
  font-size: 36px;
  line-height: 1.1;
}
.insight-row__sub {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.05;
  color: var(--g-33);
  text-transform: uppercase;
}
.insight-row__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--g-55);
  max-width: 480px;
}
.insight-row__media {
  flex: 1 1 auto;
  background: var(--bg-0a);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.v2-property {
  display: flex;
  background: var(--black);
}
.v2-property__text {
  flex: 0 0 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px 72px;
}
.v2-property__h {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
}
.v2-property__h2 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
  color: var(--g-33);
  text-transform: uppercase;
}
.v2-property__intro {
  font-size: 14px;
  color: var(--g-55);
}
.v2-property__media {
  flex: 1 1 auto;
  background: var(--bg-0a);
  background-size: cover;
  background-position: center;
  min-height: 600px;
}
.v2-property .q-block .q-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--g-44);
}
.v2-property .q-block .q-text {
  font-size: 22px;
}

.vendors--sm .vendor svg {
  width: 32px;
  height: 32px;
}
.vendors--sm .vendor span {
  font-size: 9px;
}
.vendors--sm .vendors__pre {
  color: var(--g-2a);
}
.vendors--sm .vendors__h {
  font-size: 40px;
}
.vendors--sm .vendors__tag {
  font-size: 20px;
  color: #222;
}

.v2-break {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.v2-break__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.v2-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.27) 50%, rgba(0, 0, 0, 0.8));
}
.v2-break__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 40px;
}
.v2-break__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--g-33);
  text-transform: uppercase;
}
.v2-break__statement {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 900px;
}

.v2-hidden {
  background: var(--black);
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.v2-hidden__h {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
  width: 100%;
}
.v2-verdict {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--black);
  border: 1px solid var(--bg-11);
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v2-verdict .verdict-row {
  width: 100%;
  justify-content: center;
}
.v2-verdict .verdict-row--new .verdict-q {
  font-size: 32px;
}

.v2-chris {
  display: flex;
  background: var(--bg-05);
}
.v2-chris__media {
  flex: 0 0 480px;
  background: var(--bg-11);
  background-size: cover;
  background-position: center top;
  min-height: 540px;
}
.v2-chris__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 60px;
}
.v2-chris__label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--g-33);
  text-transform: uppercase;
}
.v2-chris__h {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.05;
  text-transform: uppercase;
}
.v2-chris__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--g-66);
  max-width: 560px;
}
.creds-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.cred-stat__num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--white);
}
.cred-stat__label {
  font-size: 12px;
  color: var(--g-44);
}

.v2-forsec {
  display: flex;
  background: var(--black);
}
.v2-forsec__text {
  flex: 0 0 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 64px 72px;
}
.v2-forsec__h {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
}
.v2-forsec__h .dim {
  color: var(--g-33);
}
.v2-forsec__body {
  font-size: 14px;
  color: var(--g-44);
}
.v2-forsec__media {
  flex: 1 1 auto;
  background: var(--bg-0a);
  background-size: cover;
  background-position: center;
  min-height: 520px;
}
.benefit--sq::before {
  border-radius: 6px;
  width: 12px;
  height: 12px;
  background: var(--bg-1a);
  border: 1px solid var(--g-2a);
}
.benefit--sq span {
  color: var(--g-55);
  font-size: 13px;
}

/* short final CTA over image (V2) */
.final--compact {
  position: relative;
  min-height: 300px;
  padding: 0 40px;
  overflow: hidden;
}
.final--compact .final__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.final--compact .final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.73);
}
.final--compact > * {
  position: relative;
  z-index: 2;
}
.final--compact h2 {
  font-size: 60px;
}

/* =========================================================================
   V3 — The Intelligence  (centered full-bleed heroes, split content sections)
   ========================================================================= */
.v3-nav {
  height: 60px;
  padding: 0 80px;
  background: var(--black);
}
.v3-nav__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v3-nav__name {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.v3-nav__dot {
  width: 4px;
  height: 4px;
  background: var(--g-33);
}
.v3-nav__partner {
  font-size: 11px;
  color: var(--g-44);
}

/* shared centered full-bleed band */
.v3-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.v3-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.v3-band__overlay {
  position: absolute;
  inset: 0;
}
.v3-band__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 40px;
}
.v3-rule {
  width: 40px;
  height: 1px;
  background: var(--g-33);
  margin: 8px 0;
}

.v3-hero {
  min-height: 800px;
}
.v3-hero .v3-band__overlay {
  background: rgba(0, 0, 0, 0.73);
}
.v3-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--g-44);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.v3-hero__h {
  font-family: var(--display);
  font-size: 96px;
  line-height: 1;
  text-transform: uppercase;
}
.v3-hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--g-66);
  max-width: 700px;
  margin-bottom: 24px;
}

.v3-proof {
  min-height: 480px;
}
.v3-proof .v3-band__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.4));
}
.v3-proof__pre {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--g-88);
  text-transform: uppercase;
  max-width: 800px;
  margin-bottom: 16px;
}
.v3-proof__h {
  font-family: var(--display);
  font-size: 96px;
  line-height: 1;
  text-transform: uppercase;
}
.v3-proof__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--g-77, #777);
  max-width: 560px;
}

/* property: content left over right-anchored image */
.v3-property {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}
.v3-property__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
}
.v3-property__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 30%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0) 75%);
}
.v3-property__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v3-property__h {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1.05;
  text-transform: uppercase;
}
.v3-property__h2 {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.1;
  color: var(--g-33);
  text-transform: uppercase;
}
.v3-property__intro {
  font-size: 15px;
  color: var(--g-55);
}
.v3-property .q-block .q-label {
  text-transform: none;
  letter-spacing: 0;
  color: var(--g-33);
  font-size: 12px;
}
.v3-property .q-block .q-text {
  font-size: 24px;
}

/* tension / hidden-cost statement block */
.v3-statement {
  background: var(--bg-05);
  border-bottom: 1px solid #0f0f0f;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v3-statement__label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g-33);
  text-transform: uppercase;
}
.v3-statement .flow {
  padding: 0;
}
.v3-statement .verdict-body {
  display: flex;
  flex-direction: column;
}
.v3-statement .verdict-row--new .verdict-q {
  font-size: 36px;
}
.v3-statement .verdict__btn {
  align-self: flex-start;
  margin-top: 16px;
}

/* chris cutout, centered */
.v3-chris {
  min-height: 600px;
  background: var(--black);
}
.v3-chris .v3-band__bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.v3-chris .v3-band__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.88));
}
.v3-chris__pre {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--g-44);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v3-chris__name {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  text-transform: uppercase;
}
.v3-chris__title {
  font-size: 14px;
  color: var(--g-55);
  margin-top: 8px;
}
.v3-chris__stats {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 12px 0 20px;
}
.v3-stat__val {
  font-family: var(--display);
  font-size: 32px;
  color: var(--white);
}
.v3-stat__label {
  font-size: 12px;
  color: var(--g-44);
}

/* v3 vendors band */
.v3-vendors {
  background: var(--black);
  border-top: 1px solid #0f0f0f;
  text-align: center;
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.v3-vendors__h {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  max-width: 1000px;
}
.v3-vendors__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  padding: 0 40px;
}
.v3-vendors__tag {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 1px;
  color: #222;
  text-transform: uppercase;
}

/* v3 final */
.v3-final {
  text-align: center;
  background: var(--black);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.v3-final h2 {
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  max-width: 900px;
}
.v3-final__sub {
  font-size: 16px;
  color: var(--g-33);
}
.v3-contact {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.v3-contact a {
  font-size: 13px;
  color: var(--g-33);
}
.v3-contact a:hover {
  color: var(--g-66);
}

/* v3 for-security: content left over right image */
.v3-forsec {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}
.v3-forsec__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
}
.v3-forsec__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 35%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 80%);
}
.v3-forsec__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v3-forsec__h {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
}
.v3-forsec .benefit--sq::before {
  background: var(--bg-0d);
  border-color: var(--bg-1a);
}
.v3-forsec .benefit--sq span {
  color: var(--g-44);
}

@media (max-width: 1024px) {
  .v3-hero__h,
  .v3-proof__h {
    font-size: 60px;
  }
  .v3-chris__name {
    font-size: 56px;
  }
  .v3-final h2 {
    font-size: 56px;
  }
  .v3-property__grad,
  .v3-forsec__grad {
    background: linear-gradient(to right, var(--black) 45%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.2));
  }
  .v3-property__h {
    font-size: 42px;
  }
  .v3-statement {
    padding: 56px 40px;
  }
  .v3-vendors,
  .v3-final,
  .v3-forsec__content {
    padding-left: 40px;
    padding-right: 40px;
  }
  .v2-hero {
    flex-direction: column;
  }
  .v2-hero__left {
    flex-basis: auto;
    padding: 56px 40px;
  }
  .v2-hero__h {
    font-size: 56px;
  }
  .v2-hero__right {
    min-height: 360px;
  }
  .insight-row,
  .insight-row--rev {
    flex-direction: column;
  }
  .insight-row__text {
    flex-basis: auto;
    padding: 48px 40px;
    order: 2;
  }
  .insight-row__media {
    order: 1;
    min-height: 300px;
  }
  .v2-property {
    flex-direction: column;
  }
  .v2-property__text {
    flex-basis: auto;
    padding: 48px 40px;
  }
  .v2-property__media {
    min-height: 360px;
  }
  .v2-chris,
  .v2-forsec {
    flex-direction: column;
  }
  .v2-chris__media {
    flex-basis: auto;
    min-height: 420px;
  }
  .v2-chris__text,
  .v2-forsec__text {
    flex-basis: auto;
    padding: 48px 40px;
  }
  .v2-forsec__media {
    min-height: 320px;
  }
  .v2-break__statement,
  .v2-hidden__h,
  .final--compact h2 {
    font-size: 36px;
  }
  .v2-forsec__h {
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  :root {
    --pad-x: 22px;
  }
  .nav {
    height: auto;
    padding: 16px 22px;
    gap: 12px;
  }
  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero__inner {
    padding: 0 22px;
  }
  .section,
  .vendors,
  .hidden,
  .final {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hidden,
  .final {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .vendors__h {
    font-size: 30px;
  }
  .vendor {
    flex: 1 1 33%;
  }
  .stats {
    padding: 24px 22px;
  }
  .stat {
    flex: 1 1 45%;
  }
  .problem__left h2 {
    font-size: 32px;
  }
  .problem__left .sub {
    font-size: 24px;
  }
  .card-row {
    flex-direction: column;
  }
  .verdict__head,
  .verdict__body {
    padding: 28px 22px;
  }
  .verdict__head h2 {
    font-size: 34px;
  }
  .flow {
    flex-direction: column;
  }
  .flow__arrow {
    transform: rotate(90deg);
  }
  .vision__text,
  .chris__content,
  .forsec__content {
    padding: 48px 22px;
  }
  .vision__h {
    font-size: 38px;
  }
  .forsec__content h2 {
    font-size: 34px;
  }
  .final h2 {
    font-size: 36px;
  }
  .footer {
    padding: 22px;
    flex-direction: column;
    text-align: center;
  }

  /* V2 mobile */
  .v2-nav {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 22px;
    gap: 10px;
  }
  .v2-hero__left {
    padding: 48px 22px;
  }
  .v2-hero__h {
    font-size: 40px;
  }
  .proof-bar {
    height: auto;
    padding: 20px 22px;
    justify-content: flex-start;
  }
  .insight-row__text {
    padding: 40px 22px;
  }
  .insight-row__h {
    font-size: 30px;
  }
  .insight-row__sub {
    font-size: 24px;
  }
  .v2-property__text {
    padding: 40px 22px;
  }
  .v2-property__h {
    font-size: 32px;
  }
  .v2-property__h2 {
    font-size: 24px;
  }
  .v2-hidden {
    padding: 56px 22px;
  }
  .v2-verdict {
    padding: 32px 22px;
  }
  .v2-verdict .verdict-row--new .verdict-q {
    font-size: 24px;
  }
  .v2-break__statement,
  .v2-hidden__h,
  .final--compact h2 {
    font-size: 28px;
  }
  .v2-chris__text,
  .v2-forsec__text {
    padding: 40px 22px;
  }
  .v2-chris__h {
    font-size: 34px;
  }
  .v2-forsec__h {
    font-size: 30px;
  }
  .creds-row {
    gap: 24px;
  }

  /* V3 mobile */
  .v3-nav {
    height: auto;
    flex-wrap: wrap;
    padding: 14px 22px;
    gap: 10px;
  }
  .v3-hero {
    min-height: 620px;
  }
  .v3-hero__h,
  .v3-proof__h {
    font-size: 40px;
  }
  .v3-band__content {
    padding: 56px 22px;
  }
  .v3-property__content,
  .v3-forsec__content {
    padding: 48px 22px;
    max-width: 100%;
  }
  .v3-property__grad,
  .v3-forsec__grad {
    background: linear-gradient(to right, var(--black) 55%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.35));
  }
  .v3-property__h {
    font-size: 34px;
  }
  .v3-property__h2 {
    font-size: 26px;
  }
  .v3-statement {
    padding: 48px 22px;
  }
  .v3-statement .verdict-row--new .verdict-q {
    font-size: 24px;
  }
  .v3-chris__name {
    font-size: 44px;
  }
  .v3-chris__stats {
    gap: 32px;
  }
  .v3-vendors {
    padding: 48px 22px;
  }
  .v3-vendors__h {
    font-size: 26px;
  }
  .v3-vendors__row {
    padding: 0;
  }
  .v3-vendors__row .vendor {
    flex: 1 1 33%;
  }
  .v3-final {
    padding: 56px 22px;
  }
  .v3-final h2 {
    font-size: 40px;
  }
  .v3-forsec__h {
    font-size: 34px;
  }
  .v3-contact {
    gap: 20px;
    flex-direction: column;
  }
}
