:root {
  --green: #00703a;
  --cream: #fff8e1;
  --ink: #111513;
  --muted: #626a66;
  --line: rgba(17, 21, 19, .14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f3f4f2;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.site-shell { min-height: 100vh; }
.container-ms { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header .inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { width: 210px; max-width: 47vw; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .84rem; font-weight: 650; }
.nav-links a:not(.btn-ms) { opacity: .78; }
.nav-links a:hover { opacity: 1; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}
.btn-ms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 750;
  transition: transform .2s, background .2s, color .2s;
}
.btn-ms:hover { transform: translateY(-2px); background: #005e31; color: #fff; }
.btn-ms.light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.arrow { margin-left: 28px; font-size: 1.25em; }
.section { padding: 96px 0; }
.section-title { font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.045em; }
.kicker { color: var(--green); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 800; }
.copy { color: var(--muted); line-height: 1.75; }
.faq-button {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
}
.faq-answer { display: none; color: var(--muted); padding: 0 0 22px; max-width: 760px; line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .plus { transform: rotate(45deg); }
.plus { transition: transform .2s; }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); font-size: .78rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-grid .brand { width: 175px; }
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  background: #16a85b;
  box-shadow: 0 10px 32px rgba(0,0,0,.24);
  font-weight: 900;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* V1 — cinematic */
.v1 { background: #0c0f0e; color: #f6f6f2; }
.v1 .site-header { color: white; }
.v1 .brand { filter: brightness(0) invert(1); }
.v1 .hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.v1 .hero video { position: absolute; inset: 0 0 0 39%; width: 61%; height: 100%; object-fit: cover; }
.v1 .hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #0c0f0e 0 42%, transparent 65%);
}
.v1 .hero-copy { position: relative; z-index: 2; width: min(660px, 62%); padding-top: 90px; }
.v1 h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(4.2rem, 8.2vw, 8rem);
  line-height: .82; letter-spacing: -.025em; margin: 0 0 26px;
}
.v1 h1 span { color: #00ae5b; }
.v1 .hero p { max-width: 560px; color: #c3cbc6; font-size: 1.07rem; }
.v1 .process { background: #111513; }
.v1 .process-row {
  display: grid; grid-template-columns: 110px 1fr 1.2fr; gap: 38px;
  padding: 48px 0; border-top: 1px solid rgba(255,255,255,.12); align-items: center;
}
.v1 .process-num { font: 800 5.5rem/.8 "Barlow Condensed", sans-serif; color: #00a957; }
.v1 .process h3 { font: 700 2.5rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.v1 .process-img { height: 270px; object-fit: cover; clip-path: polygon(10% 0,100% 0,90% 100%,0 100%); }
.v1 .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 40px; }
.v1 .proof-grid img { height: 290px; object-fit: cover; filter: saturate(.75); }
.v1 .faq-button { color: #fff; border-color: rgba(255,255,255,.14); }
.v1 .faq-answer, .v1 .copy { color: #abb5b0; }
.v1 .final-cta { position: relative; overflow: hidden; background: #131816; }
.v1 .final-cta video { position: absolute; right: 0; top: 0; width: 52%; height: 100%; object-fit: cover; opacity: .64; }
.v1 .final-cta .container-ms { position: relative; z-index: 2; }
.v1 .site-footer { border-color: rgba(255,255,255,.12); }

/* V2 — conversion */
.v2 { background: #f4f3ef; }
.v2 .site-header { position: relative; border-color: var(--line); background: rgba(255,255,255,.85); }
.v2 .hero { padding: 62px 0 78px; }
.v2 .hero-grid { display: grid; grid-template-columns: 1.05fr .74fr .85fr; gap: 28px; align-items: stretch; }
.v2 h1 { font-size: clamp(3.2rem, 5.7vw, 6.2rem); letter-spacing: -.065em; line-height: .93; margin: 42px 0 24px; }
.v2 .hero-media { min-height: 610px; position: relative; overflow: hidden; border-radius: 8px; }
.v2 .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.v2 .intake { background: #fff; padding: 30px; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(0,0,0,.06); }
.v2 .intake h2 { font-size: 1.55rem; letter-spacing: -.03em; }
.v2 .field { margin-top: 15px; }
.v2 .field label { display: block; font-size: .75rem; font-weight: 800; margin-bottom: 7px; }
.v2 .field input, .v2 .field select, .v2 .field textarea { width: 100%; border: 1px solid var(--line); padding: 12px; background: #fbfbf9; }
.v2 .benefit { display: grid; grid-template-columns: .35fr .75fr 1.4fr; background: white; border-top: 1px solid var(--line); min-height: 290px; }
.v2 .benefit > * { padding: 38px; }
.v2 .benefit .n { font-size: clamp(4rem, 8vw, 8rem); color: var(--green); font-weight: 300; }
.v2 .benefit h3 { font-size: 2.1rem; letter-spacing: -.04em; }
.v2 .benefit img { padding: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .evidence { background: var(--cream); border: 1px solid #eadcaa; padding: 34px; }
.v2 .evidence-grid { display: grid; grid-template-columns: .7fr repeat(3, 1fr); gap: 12px; align-items: center; }
.v2 .evidence img { height: 150px; object-fit: cover; }
.v2 .final-cta { background: var(--cream); }

/* V3 — blueprint */
.v3 {
  background-color: #f2f4f3;
  background-image: linear-gradient(rgba(0,112,58,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(0,112,58,.055) 1px,transparent 1px);
  background-size: 40px 40px;
}
.v3 .site-header { color: var(--ink); border-color: var(--line); }
.v3 .hero { min-height: 780px; padding-top: 120px; position: relative; overflow: hidden; }
.v3 h1 { font-size: clamp(4rem, 7.8vw, 8.6rem); line-height: .82; letter-spacing: -.075em; max-width: 900px; margin: 20px 0; }
.v3 h1 span { color: var(--green); }
.v3 .video-band { height: 200px; margin: 34px calc((100vw - min(100vw - 32px,var(--container))) / -2); }
.v3 .video-band video { height: 100%; object-fit: cover; }
.v3 .spec-rail { border-block: 1px solid var(--line); padding: 16px 0; display: flex; justify-content: space-between; font: .68rem "Space Mono", monospace; }
.v3 .chapter {
  display: grid; grid-template-columns: 100px 1fr 1fr; gap: 50px; align-items: center;
  padding: 54px 0; border-bottom: 1px solid var(--line);
}
.v3 .chapter .n { font-size: 4rem; color: var(--green); font-weight: 800; }
.v3 .chapter img { height: 270px; object-fit: cover; filter: grayscale(1); mix-blend-mode: multiply; }
.v3 .chapter h3 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 2.6rem; }
.v3 .filmstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; background: #101412; padding: 14px; }
.v3 .filmstrip img { height: 200px; object-fit: cover; }
.v3 .faq-layout { display: grid; grid-template-columns: .45fr 1fr; gap: 70px; }
.v3 .final-cta { background: var(--green); color: white; }

/* V4 — editorial */
.v4 { background: #fff; }
.v4 .site-header { position: relative; border-color: var(--line); }
.v4 .hero { padding: 44px 0 84px; }
.v4 .hero-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; }
.v4 h1, .v4 .section-title, .v4 h3, .v4 .faq-button { font-family: "Cormorant Garamond", Georgia, serif; }
.v4 h1 { font-size: clamp(4rem, 7vw, 7.4rem); font-weight: 500; line-height: .86; letter-spacing: -.055em; }
.v4 .hero video { height: 650px; object-fit: cover; }
.v4 .essay { padding: 105px 0; }
.v4 .essay:nth-child(odd) { background: var(--cream); }
.v4 .essay-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.v4 .essay.reverse .essay-grid { grid-template-columns: 1.25fr .75fr; }
.v4 .essay.reverse .essay-copy { order: 2; }
.v4 .essay h3 { font-size: clamp(3rem, 5vw, 5rem); line-height: .93; font-weight: 500; }
.v4 .essay img { height: 470px; object-fit: cover; }
.v4 .testimonial { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.v4 blockquote { font: 500 clamp(2rem, 3vw, 3.4rem)/1.08 "Cormorant Garamond", serif; margin: 0; }
.v4 .faq-button { font-size: 1.65rem; font-weight: 600; }
.v4 .final-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.v4 .final-grid img { height: 380px; object-fit: cover; }

/* V5 — operations */
.v5 { background: #0d100f; color: #f4f5f2; }
.v5 .site-header { color: white; }
.v5 .brand { filter: brightness(0) invert(1); }
.v5 .hero { min-height: 750px; display: grid; grid-template-columns: 53% 47%; }
.v5 .hero-media video { height: 100%; object-fit: cover; }
.v5 .hero-panel { padding: 150px 8vw 70px 6vw; display: flex; flex-direction: column; justify-content: center; }
.v5 h1, .v5 .section-title, .v5 h3 { font-family: "Barlow Condensed", Impact, sans-serif; text-transform: uppercase; }
.v5 h1 { font-size: clamp(4rem, 6.8vw, 7.2rem); line-height: .87; }
.v5 h1 span { color: #00a957; }
.v5 .timeline-section { background: #e9e9e5; color: var(--ink); }
.v5 .timeline { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; margin-top: 55px; }
.v5 .timeline::before { content:""; position:absolute; top: 25px; left: 5%; right: 5%; height: 12px; background: #151918; }
.v5 .timeline-item { position: relative; padding: 80px 30px 20px 0; }
.v5 .timeline-item .n { position: absolute; top: 0; background: var(--green); padding: 12px 18px; color: #fff; font: 800 1.4rem "Barlow Condensed"; }
.v5 .sequence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.v5 .sequence figure { margin: 0; position: relative; }
.v5 .sequence img { height: 280px; object-fit: cover; }
.v5 .sequence figcaption { position: absolute; bottom: 0; left: 0; background: #0b0e0d; padding: 12px 18px; font-weight: 800; text-transform: uppercase; }
.v5 .faq-button { color: white; background: #1a1e1c; margin-bottom: 8px; padding: 19px 22px; border: 1px solid rgba(255,255,255,.1); }
.v5 .faq-answer { padding-inline: 22px; color: #b3bbb6; }
.v5 .final-cta { background: var(--cream); color: var(--ink); margin: 0 20px 70px; clip-path: polygon(2% 0,98% 0,100% 12%,100% 88%,98% 100%,2% 100%,0 88%,0 12%); }
.v5 .site-footer { border-color: rgba(255,255,255,.12); }

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .site-header .inner { min-height: 68px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0; padding: 24px 16px;
    background: #0d100f; color: white; flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .v1 .hero { min-height: 760px; }
  .v1 .hero video { inset: 0; width: 100%; opacity: .44; }
  .v1 .hero::after { background: linear-gradient(0deg,#0c0f0e 5%,rgba(12,15,14,.1) 100%); }
  .v1 .hero-copy { width: 100%; padding-top: 190px; }
  .v1 .process-row { grid-template-columns: 70px 1fr; }
  .v1 .process-img { grid-column: 1/-1; }
  .proof-grid, .v1 .proof-grid { grid-template-columns: 1fr; }
  .v2 .hero-grid { grid-template-columns: 1fr; }
  .v2 .hero-media { min-height: 420px; }
  .v2 .benefit { grid-template-columns: 90px 1fr; }
  .v2 .benefit img { grid-column: 1/-1; height: 260px; }
  .v2 .benefit > * { padding: 24px; }
  .v2 .evidence-grid { grid-template-columns: 1fr 1fr; }
  .v3 .chapter { grid-template-columns: 68px 1fr; gap: 24px; }
  .v3 .chapter img { grid-column: 1/-1; }
  .v3 .filmstrip { grid-template-columns: 1fr 1fr; }
  .v3 .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .v4 .hero-grid, .v4 .essay-grid, .v4 .essay.reverse .essay-grid, .v4 .testimonial, .v4 .final-grid { grid-template-columns: 1fr; gap: 40px; }
  .v4 .essay.reverse .essay-copy { order: 0; }
  .v4 .hero video { height: 500px; }
  .v5 .hero { grid-template-columns: 1fr; }
  .v5 .hero-media { height: 420px; }
  .v5 .hero-panel { padding: 56px 24px; }
  .v5 .timeline, .v5 .sequence { grid-template-columns: 1fr; }
  .v5 .timeline::before { display: none; }
}

@media (max-width: 580px) {
  .container-ms { width: min(calc(100% - 24px), var(--container)); }
  .brand { width: 170px; }
  .btn-ms { width: 100%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .v1 h1 { font-size: 4rem; }
  .v1 .process-row { grid-template-columns: 1fr; }
  .v1 .process-num { font-size: 4rem; }
  .v2 h1 { font-size: 3.5rem; }
  .v2 .benefit { grid-template-columns: 1fr; }
  .v2 .benefit .n { font-size: 4rem; }
  .v2 .evidence-grid, .v3 .filmstrip { grid-template-columns: 1fr; }
  .v3 h1 { font-size: 3.8rem; }
  .v3 .video-band { height: 150px; }
  .v3 .spec-rail { gap: 18px; overflow-x: auto; justify-content: flex-start; }
  .v3 .chapter { grid-template-columns: 1fr; }
  .v4 h1 { font-size: 4.1rem; }
  .v4 .hero video { height: 430px; }
  .v4 .essay, .v4 .section { padding: 68px 0; }
  .v5 h1 { font-size: 4.2rem; }
  .v5 .final-cta { margin-inline: 8px; clip-path: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* V1 refinement — selected campaign version */
.v1 {
  background:
    radial-gradient(circle at 70% 0, rgba(0,112,58,.26), transparent 34rem),
    linear-gradient(180deg, #070908 0%, #101412 48%, #090b0a 100%);
  color: #f6f6f2;
}
.v1 .site-header {
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,0));
}
.v1 .brand { filter: brightness(0) invert(1); }
.v1 .nav-links a:not(.btn-ms) { color: rgba(255,255,255,.78); }
.v1 .btn-ms {
  background: var(--green);
  border-color: #14985b;
  box-shadow: 0 18px 44px rgba(0,112,58,.28);
}
.v1 .btn-ms:hover { background: #008a48; }
.v1 .hero {
  min-height: 820px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 122px 0 92px;
}
.v1 .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #080a09 0 39%, rgba(8,10,9,.86) 47%, rgba(8,10,9,.18) 76%, #080a09 100%),
    linear-gradient(0deg, #080a09 0, rgba(8,10,9,0) 34%);
}
.v1 .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0 54%, transparent 82%);
}
.v1 .hero-media {
  position: absolute;
  inset: 0 0 0 35%;
  z-index: -2;
  clip-path: polygon(9% 0,100% 0,100% 100%,0 100%);
}
.v1 .hero-media video {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.06);
}
.v1 .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 335px;
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}
.v1 .hero-copy {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 735px;
  padding-top: 28px;
}
.v1 .hero .reveal {
  opacity: 1;
  transform: none;
}
.v1 h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(4.6rem, 9.2vw, 9.8rem);
  line-height: .76;
  letter-spacing: -.035em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.v1 .hero p {
  max-width: 650px;
  color: #d8ded9;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}
.v1 .hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.v1 .hero-contact {
  max-width: 240px;
  color: #aeb8b2;
  font-size: .82rem;
  line-height: 1.45;
}
.v1 .hero-panel {
  background: rgba(11, 15, 13, .72);
  border: 1px solid rgba(255,255,255,.16);
  border-left: 5px solid var(--green);
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
}
.v1 .hero-panel span,
.v1 .kicker {
  color: #62d596;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 850;
}
.v1 .hero-panel strong {
  display: block;
  margin-top: 18px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: .98;
  text-transform: uppercase;
}
.v1 .hero-panel ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  color: #c3cbc6;
  font-size: .92rem;
}
.v1 .hero-panel li {
  padding: 12px 0 12px 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.v1 .hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  background: var(--green);
}
.v1 .signal-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  color: #111513;
  box-shadow: 0 -24px 70px rgba(0,0,0,.38);
}
.v1 .signal-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px 22px;
  border-right: 1px solid rgba(17,21,19,.15);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .76rem;
  text-align: center;
}
.v1 .signal-strip span:last-child { border-right: 0; }
.v1 .real-video-section {
  background:
    linear-gradient(180deg, #080a09 0, #101412 100%);
  padding-top: 112px;
}
.v1 .real-video-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.v1 .real-video-copy .section-title {
  margin: 14px 0 24px;
}
.v1 .hero-video-link {
  color: #fff8e1;
  border-bottom: 1px solid rgba(255,248,225,.62);
  font-weight: 800;
  letter-spacing: .02em;
  padding-bottom: 4px;
}
.v1 .hero-video-link:hover {
  color: #fff;
  border-color: #fff;
}
.v1 .real-video-frame {
  position: relative;
  background: #050706;
  border: 1px solid rgba(255,255,255,.16);
  border-left: 6px solid var(--green);
  padding: 14px;
  box-shadow: 0 34px 90px rgba(0,0,0,.44);
}
.v1 .real-video-frame::before {
  content: "";
  position: absolute;
  inset: 30px -18px -18px 34px;
  z-index: 0;
  border: 1px solid rgba(98,213,150,.32);
  clip-path: polygon(5% 0,100% 0,95% 100%,0 100%);
}
.v1 .real-video-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  object-fit: cover;
  background: #000;
}
.v1 .real-video-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 4px 2px;
  color: #c5d0ca;
  font-size: .82rem;
}
.v1 .real-video-caption strong {
  color: #fff8e1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.v1 .section { position: relative; }
.v1 .section-intro {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 28px;
}
.v1 .section-title {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
}
.v1 .copy { color: #abb5b0; }
.v1 .process {
  background: linear-gradient(180deg, #101412, #151a18);
  padding-top: 122px;
}
.v1 .process-row {
  display: grid;
  grid-template-columns: 116px minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 42px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: center;
}
.v1 .process-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.v1 .process-num {
  font: 900 clamp(4.4rem, 8vw, 7.4rem)/.76 "Barlow Condensed", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1.3px #25b66c;
}
.v1 .process h3 {
  font: 800 clamp(2.2rem, 4.4vw, 4.35rem)/.88 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.v1 .process-media {
  margin: 0;
  position: relative;
  min-height: 306px;
}
.v1 .process-media::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 14px;
  border: 1px solid rgba(98,213,150,.42);
  clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
}
.v1 .process-img {
  position: relative;
  height: 306px;
  object-fit: cover;
  clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
  filter: saturate(.84) contrast(1.05);
}
.v1 .proof-section {
  background: #0b0e0d;
  overflow: hidden;
}
.v1 .proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.v1 .proof-copy .section-title { margin-bottom: 28px; }
.v1 .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.v1 .service-list span {
  border: 1px solid rgba(255,255,255,.16);
  color: #e5ece8;
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.v1 .proof-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 310px 210px;
  gap: 10px;
}
.v1 .proof-stack img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.86);
}
.v1 .proof-stack img:first-child {
  grid-column: 1 / -1;
  clip-path: polygon(4% 0,100% 0,96% 100%,0 100%);
}
.v1 .proof-note {
  background: var(--cream);
  color: #111513;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v1 .proof-note strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: .96;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.v1 .proof-note span {
  color: #424944;
  line-height: 1.55;
  font-size: .92rem;
}
.v1 .faq-section {
  background: #131816;
}
.v1 .faq-layout-v1 {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 6vw, 82px);
}
.v1 .faq-button {
  color: #fff;
  border-color: rgba(255,255,255,.14);
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -.01em;
}
.v1 .faq-answer { color: #abb5b0; }
.v1 .final-cta {
  position: relative;
  overflow: hidden;
  background: #080a09;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.v1 .final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080a09 0 45%, rgba(8,10,9,.52) 72%, #080a09 100%);
}
.v1 .final-cta video {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}
.v1 .final-cta .container-ms {
  position: relative;
  z-index: 2;
}
.v1 .final-cta-card {
  max-width: 690px;
  background: rgba(14,18,16,.74);
  border: 1px solid rgba(255,255,255,.14);
  border-left: 6px solid var(--green);
  padding: clamp(28px, 5vw, 54px);
  backdrop-filter: blur(12px);
}
.v1 .final-cta-card .section-title { margin-bottom: 22px; }
.v1 .site-footer {
  color: #c6cec9;
  background: #080a09;
  border-color: rgba(255,255,255,.12);
}

@media (max-width: 900px) {
  .v1 .hero {
    min-height: auto;
    padding: 112px 0 0;
  }
  .v1 .hero::before {
    background:
      linear-gradient(180deg, rgba(8,10,9,.56) 0, #080a09 62%, #080a09 100%),
      linear-gradient(90deg, rgba(8,10,9,.88), rgba(8,10,9,.28));
  }
  .v1 .hero-media {
    inset: 0;
    height: 58%;
    clip-path: none;
  }
  .v1 .hero-media video {
    opacity: .62;
  }
  .v1 .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .v1 .hero-copy {
    width: 100%;
    padding-top: 82px;
  }
  .v1 .hero-panel {
    margin-bottom: 34px;
  }
  .v1 .signal-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-template-columns: 1fr 1fr;
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
  }
  .v1 .section-intro,
  .v1 .real-video-layout,
  .v1 .faq-layout-v1,
  .v1 .proof-layout {
    grid-template-columns: 1fr;
  }
  .v1 .real-video-section {
    padding-top: 76px;
  }
  .v1 .real-video-frame video {
    max-height: 520px;
  }
  .v1 .process {
    padding-top: 72px;
  }
  .v1 .process-row {
    grid-template-columns: 74px 1fr;
  }
  .v1 .process-media {
    grid-column: 1 / -1;
    min-height: 260px;
  }
  .v1 .process-img {
    height: 260px;
  }
  .v1 .proof-layout {
    gap: 38px;
  }
  .v1 .proof-stack {
    grid-template-rows: 260px 190px;
  }
}

@media (max-width: 580px) {
  .v1 h1 {
    font-size: clamp(4rem, 19vw, 5.1rem);
  }
  .v1 .hero {
    padding-top: 92px;
  }
  .v1 .hero-copy {
    padding-top: 88px;
  }
  .v1 .hero-actions,
  .v1 .hero-actions .btn-ms {
    width: 100%;
  }
  .v1 .hero-video-link {
    width: 100%;
    text-align: center;
  }
  .v1 .hero-contact {
    max-width: none;
  }
  .v1 .signal-strip {
    grid-template-columns: 1fr;
  }
  .v1 .signal-strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid rgba(17,21,19,.15);
  }
  .v1 .process-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v1 .process-num {
    font-size: 4.2rem;
  }
  .v1 .process-media::before,
  .v1 .real-video-frame::before,
  .v1 .process-img,
  .v1 .proof-stack img:first-child {
    clip-path: none;
  }
  .v1 .real-video-frame {
    padding: 10px;
  }
  .v1 .real-video-caption {
    display: block;
  }
  .v1 .real-video-caption span {
    display: block;
    margin-top: 5px;
  }
  .v1 .proof-stack {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 250px auto;
  }
  .v1 .final-cta {
    min-height: auto;
    padding-block: 76px;
  }
  .v1 .final-cta::after {
    background: rgba(8,10,9,.72);
  }
  .v1 .final-cta video {
    width: 100%;
    opacity: .42;
  }
}
