/* ── CUSTOM PROPERTIES ── */
:root {
  --forest: #1B3A2D;
  --deep: #0F2419;
  --forest-mid: #244d3b;
  --mid: #4A8C6F;
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --text-green: rgba(245, 240, 232, 0.75);
  --charcoal: #1A1A1A;
  --ease-spring: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  background: var(--forest);
  color: var(--cream);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

blockquote {
  font-style: normal;
}

/* ── NOISE TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── SCROLL REVEAL ── */
.rev {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.rev.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.rev.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTAINER ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── TYPOGRAPHY HELPERS ── */
.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.mid {
  color: var(--mid);
}

.gold {
  color: var(--gold);
}

.cream-text {
  color: var(--cream);
}

.muted-text {
  color: rgba(245, 240, 232, 0.55);
}

.dark-text {
  color: var(--forest);
}

h1,
h2,
h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

h2 em,
h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-top: 0.5rem;
}

.section-intro {
  font-family: 'Outfit', sans-serif;
  color: rgba(27, 58, 45, 0.65);
  margin-top: 0.75rem;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  overflow: hidden;
  transition: background 0.25s var(--ease-spring), transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1.5px solid #F5F0E8;
  color: #F5F0E8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease-spring), background 0.25s;
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.1);
  transform: scale(1.03);
}

.btn-large {
  padding: 16px 40px;
  font-size: 15px;
}

/* ── GOLD DOT ── */
.gold-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1140px;
  width: calc(100% - 40px);
  padding: 0 1.5rem;
  height: 60px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  pointer-events: all;
}

.navbar.scrolled .nav-inner {
  background: rgba(15, 36, 25, 0.92);
  backdrop-filter: blur(16px);
  border-color: rgba(201, 168, 76, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  margin-left: 1rem;
  padding: 8px 16px;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 36, 25, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 5% 3rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-menu a {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.8);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--deep);
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #1B3A2D 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.5;
  top: -100px;
  left: -100px;
  animation: orb1 12s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #244d3b 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.4;
  bottom: -80px;
  right: -80px;
  animation: orb2 15s ease-in-out infinite alternate;
}

.hero-orb3 {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  top: 40%;
  left: 40%;
  animation: orb3 18s ease-in-out infinite alternate;
}

@keyframes orb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(120px, 80px) scale(1.15);
  }
}

@keyframes orb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, -60px) scale(1.1);
  }
}

@keyframes orb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-60px, 40px) scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 468px 5% 48px;
  max-width: 820px;
  width: 100%;
  min-height: calc(100dvh - 80px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--forest);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-line1 {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--cream);
}

.hero-line2 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.gold-accent {
  color: var(--gold);
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(245, 240, 232, 1);
  max-width: 560px;
  margin-bottom: 0.75rem;
}

.hero-secondary {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  position: absolute;
  right: 5%;
  bottom: 120px;
  z-index: 10;
}

/* Trust bar */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46px;
  background: var(--deep);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 3;
}

.trust-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.trust-items {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  padding-right: 2rem;
}

.sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1.25rem;
  opacity: 0.7;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SERVICES ── */
.services-section {
  background: var(--cream);
  padding: 7rem 0;
}

.services-section .section-header h2 {
  color: var(--forest);
}

.services-section .section-header {
  color: var(--forest);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(27, 58, 45, 0.09);
  border-radius: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 12px 40px rgba(27, 58, 45, 0.1);
}

.svc-card h3 {
  color: var(--forest);
}

.svc-card p {
  color: rgba(27, 58, 45, 0.65);
  font-size: 14px;
}

.svc-card--dark {
  background: var(--charcoal);
  border-color: rgba(245, 240, 232, 0.06);
}

.svc-card--dark:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.svc-card--dark p {
  color: rgba(245, 240, 232, 0.5);
}

.svc-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* VSL Stack */
.vsl-stack {
  position: relative;
  min-height: 160px;
  margin-top: 0.5rem;
}

.vsl-card {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(27, 58, 45, 0.08);
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vsl-card.front {
  bottom: 0;
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

.vsl-card.mid-card {
  bottom: 14px;
  opacity: 0.62;
  transform: scale(0.97);
  z-index: 2;
}

.vsl-card.back-card {
  bottom: 28px;
  opacity: 0.35;
  transform: scale(0.94);
  z-index: 1;
}

.vsl-component {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.vsl-card p {
  color: rgba(27, 58, 45, 0.7);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Pulse dot */
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

/* Typewriter feed */
.typewriter-feed {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 0.75rem;
  padding: 1rem;
  height: 130px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.tw-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tw-line {
  white-space: pre-wrap;
  word-break: break-word;
}

.tw-line.gold {
  color: var(--gold);
}

.tw-line.green {
  color: #4ADE80;
}

.tw-line.muted {
  color: rgba(245, 240, 232, 0.6);
}

.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: var(--gold);
  vertical-align: middle;
  animation: blink 0.9s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Calendar */
.cal-wrap {
  margin-top: 0.5rem;
}

.cal-grid {
  width: 100%;
}

.cal-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}

.cal-headers span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 3px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(27, 58, 45, 0.06);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(27, 58, 45, 0.3);
  transition: background 0.4s, color 0.4s;
  position: relative;
}

.cal-day.empty {
  background: transparent;
}

.cal-day.scheduled {
  background: var(--gold);
  color: var(--forest);
  font-weight: 600;
}

.cal-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(27, 58, 45, 0.5);
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

#calNext {
  color: var(--mid);
  font-weight: 500;
}

/* ── MANIFESTO ── */
.manifesto {
  position: relative;
  background: #1A1A1A;
  padding: 11rem 5%;
  overflow: hidden;
  text-align: center;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2669&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  will-change: transform;
}

.manifesto-content {
  position: relative;
  z-index: 1;
}

.manifesto-content .label {
  text-align: center;
  display: block;
  margin-bottom: 2.5rem;
}

.manifesto-contrast {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(245, 240, 232, 0.35);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.manifesto-statement {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
}

.gold-underline {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── DELIVERABLES ── */
.deliverables-section {
  background: var(--cream);
  padding: 7rem 0;
}

.deliverables-section h2 {
  color: var(--forest);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.del-card {
  background: var(--cream-dark);
  border: 1px solid rgba(27, 58, 45, 0.08);
  border-radius: 2rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.del-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(27, 58, 45, 0.1);
}

.del-card h3 {
  color: var(--forest);
  margin: 0;
}

.del-card p {
  color: rgba(27, 58, 45, 0.65);
  font-size: 14px;
}

.del-icon {
  margin-bottom: 0.25rem;
}

.del-num {
  font-size: 10px;
  letter-spacing: 2px;
}

.mono-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.mono-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(27, 58, 45, 0.6);
  letter-spacing: 0.3px;
}

/* CTA Strip */
.del-cta-strip {
  background: var(--forest);
  border-radius: 2rem;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.del-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.del-cta-copy p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 14px;
}

/* ── PROCESS ── */
.process-section {
  background: var(--forest);
}

.process-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 7rem 0;
}

.proc-card {
  border-radius: 3rem;
  padding: 4.25rem 0;
  overflow: hidden;
}

.proc-card--forest {
  background: var(--forest);
  border: 1px solid rgba(245, 240, 232, 0.07);
}

.proc-card--charcoal {
  background: var(--charcoal);
}

.proc-card--gold {
  background: var(--gold);
}

.proc-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 2rem;
}

.proc-content h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--cream);
  margin-bottom: 1rem;
}

.proc-content p {
  color: var(--text-green);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
}

.proc-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  display: block;
  margin-bottom: 1rem;
}

.proc-label--dark {
  color: rgba(27, 58, 45, 0.55);
}

.proc-card--gold .proc-content h2,
.proc-card--gold .proc-content p {
  color: var(--forest);
}

.proc-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EKG path (dashoffset set by JS) */
.ekg-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

/* ── PAIN POINTS ── */
.pain-section {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.pain-section h2 {
  color: var(--forest);
}

.pain-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.pain-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}

.pain-card {
  background: var(--cream);
  border: 1px solid rgba(27, 58, 45, 0.08);
  border-radius: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 58, 45, 0.09);
}

.pain-icon {
  margin-bottom: 0.25rem;
}

.pain-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--forest);
  line-height: 1.5;
  position: relative;
}

.open-quote {
  color: var(--gold);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}

.pain-divider {
  width: 2rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.pain-answer {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(27, 58, 45, 0.7);
  line-height: 1.7;
}

.pain-answer strong {
  color: var(--forest);
  font-weight: 600;
}

/* ── ABOUT ── */
.about-section {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.about-logo {
  width: clamp(140px, 14vw, 200px);
  height: clamp(140px, 14vw, 200px);
  object-fit: cover;
  border-radius: 50%;
}

.about-gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.about-est {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-header {
  margin-bottom: 2rem;
}

.about-header h2 {
  color: var(--forest);
  margin-top: 0.5rem;
}

.about-lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-body {
  font-family: 'Outfit', sans-serif;
  color: #3d5546;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.principles-card {
  background: rgba(27, 58, 45, 0.05);
  border: 1px solid rgba(27, 58, 45, 0.1);
  border-radius: 1.5rem;
  padding: 1.75rem;
  margin-top: 1rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-spring);
}

.principles-card:hover {
  background: rgba(27, 58, 45, 0.1);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-3px);
}

.principles-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.principles-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #3d5546;
  line-height: 1.6;
}

.principles-card .gold-dot {
  margin-top: 5px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--forest);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Concentric circles decoration */
.cta-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
}

.cta-circles::before,
.cta-circles::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.cta-circles::before {
  width: 600px;
  height: 600px;
}

.cta-circles::after {
  width: 400px;
  height: 400px;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--cream);
  font-weight: 400;
  max-width: 680px;
  line-height: 1.3;
  margin: 0.75rem 0 1rem;
}

.final-cta-body {
  font-family: 'Outfit', sans-serif;
  color: rgba(245, 240, 232, 0.7);
  max-width: 480px;
  margin-bottom: 2rem;
  font-size: 14px;
}

.trust-cards-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.trust-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 260px;
  text-align: left;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-spring);
}

.trust-card:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-3px);
}

.trust-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.6;
}

.trust-card .gold-dot {
  margin-top: 4px;
  flex-shrink: 0;
}

.response-note {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
}

/* ── FOOTER ── */
.footer-wrap {
  background: var(--deep);
}

footer {
  background: var(--deep);
  border-radius: 3rem 3rem 0 0;
  padding: 1.5rem 0 0;
  position: relative;
  margin-top: -2px;
}

footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 44px;
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--cream);
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.35);
  max-width: 270px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: rgba(245, 240, 232, 0.12);
  border-color: rgba(245, 240, 232, 0.2);
  transform: translateY(-1px);
}

.footer-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  display: block;
  margin-bottom: 1rem;
}

.footer-nav-col ul,
.footer-legal-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col a,
.footer-legal-col a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  transition: color 0.2s;
}

.footer-nav-col a:hover,
.footer-legal-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.2);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s ease-in-out infinite;
}

.status-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    height: auto;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-content {
    padding: 100px 5% 20px;
    max-width: 100%;
    width: 100%;
    min-height: auto;
  }

  .hero-badge {
    margin-top: 0;
  }

  .hero-line1 {
    font-size: clamp(20px, 6vw, 32px);
  }

  .hero-line2 {
    font-size: clamp(32px, 9vw, 56px);
  }

  .hero-cta-wrap {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 0 5%;
    width: 100%;
    z-index: 10;
  }

  .trust-bar {
    position: relative;
    width: 100%;
    margin-top: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .proc-inner {
    grid-template-columns: 1fr;
  }

  .proc-visual {
    display: none;
  }

  .proc-card {
    padding: 3rem 0;
    border-radius: 2rem;
  }

  .pain-top-row {
    grid-template-columns: 1fr;
  }

  .pain-bottom-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-left {
    position: static;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .del-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  footer {
    border-radius: 2rem 2rem 0 0;
  }

  .trust-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .trust-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .manifesto {
    padding: 6rem 5%;
  }

  .final-cta {
    padding: 6rem 5%;
  }

  .hero-cta-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── PHILOSOPHY SECTION ── */
.philosophy-section {
  position: relative;
  background: var(--charcoal);
  padding: 9rem 0;
  overflow: hidden;
  text-align: center;
}

.manifesto-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: left;
}

.contrast-block {
  padding: 2rem;
  border-radius: 1.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-spring);
}

.contrast-them {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
}

.contrast-them:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.18);
  transform: translateY(-3px);
}

.contrast-us {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.contrast-us:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.contrast-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 0.75rem;
}

.contrast-us .contrast-label {
  color: rgba(201, 168, 76, 0.7);
}

.contrast-block p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.65;
}

.contrast-us p {
  color: var(--cream);
}

.philosophy-body {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.philosophy-body p {
  font-family: 'Outfit', sans-serif;
  color: rgba(245, 240, 232, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.philosophy-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .philosophy-contrast {
    grid-template-columns: 1fr;
  }
}

/* ── FIT SECTION ── */
.fit-section {
  background: var(--cream-dark);
  padding: 8rem 0;
}

.fit-section .section-header h2 {
  color: var(--forest);
}

.fit-section .section-header h2 em {
  color: var(--forest);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.fit-grid {
  margin-top: 2rem;
}

.fit-copy p {
  font-family: 'Outfit', sans-serif;
  color: rgba(27, 58, 45, 0.8);
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.fit-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid rgba(27, 58, 45, 0.07);
  border-radius: 8px;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--forest);
  transition: border-color 0.2s, transform 0.2s;
}

.fit-list li:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

.fit-list .gold-dot {
  margin-top: 5px;
  flex-shrink: 0;
}

.fit-close {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  color: var(--mid);
  font-size: 14px;
}

/* ── MID CTA SECTION ── */
.mid-cta-section {
  background: var(--deep);
  padding: 5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mid-cta-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--cream);
  max-width: 560px;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .mid-cta-inner {
    flex-direction: column;
  }
}

/* ── HOW IT WORKS SECTION ── */
.hiw-section {
  background: var(--cream);
  padding: 5rem 0 7rem;
}

.hiw-section .section-header {
  margin-bottom: 0;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(27, 58, 45, 0.1);
}

.hiw-step:last-child {
  border-bottom: none;
}

.hiw-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(27, 58, 45, 0.1);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}

.hiw-step:hover .hiw-num {
  color: rgba(201, 168, 76, 0.3);
}

.hiw-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  font-style: normal;
}

.hiw-content p {
  font-family: 'Outfit', sans-serif;
  color: rgba(27, 58, 45, 0.7);
  max-width: 560px;
  margin-bottom: 1.25rem;
  font-size: 15px;
}

.hiw-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hiw-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(27, 58, 45, 0.65);
}

.hiw-bullets .gold-dot {
  margin-top: 5px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hiw-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hiw-num {
    font-size: 36px;
  }
}

/* ── SERVICES AND PACKAGES SECTION ── */
.packages-section {
  background: var(--forest);
  padding: 8rem 0;
}

.packages-section .section-header .label {
  color: rgba(201, 168, 76, 0.6);
}

.packages-section .section-header h2 {
  color: var(--cream);
}

.packages-section .section-intro {
  color: var(--text-green);
}

.packages-group-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 2rem;
  margin-top: 3rem;
  font-weight: 400;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.package-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.package-item:last-child {
  border-bottom: none;
}

.package-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(245, 240, 232, 0.1);
  line-height: 1;
}

.package-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.package-content p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-green);
  font-size: 15px;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.package-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
}

.package-bullets .gold-dot {
  margin-top: 5px;
  flex-shrink: 0;
}

.bundle-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.bundle-card:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.12);
}

.bundle-star {
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}

.bundle-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.bundle-content p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-green);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.packages-close {
  text-align: center;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.packages-close p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-green);
  font-size: 16px;
}

@media (max-width: 960px) {
  .package-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .package-num {
    font-size: 28px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
  }
}
/* ── HERO CTA WRAP ── */
.hero-cta-wrap {
  position: absolute;
  right: 70px;
  bottom: 80px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.cta-gold {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #C9A84C;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  border: none;
  opacity: 1;
  filter: none;
  backdrop-filter: none;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-gold:hover {
  background: #E2C47A;
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: transparent;
  color: #F5F0E8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  border: 1.5px solid #F5F0E8;
  opacity: 1;
  filter: none;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-btn-secondary:hover {
  background: rgba(245,240,232,0.1);
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .hero-cta-wrap {
    position: static;
    margin-top: 2rem;
    align-items: flex-start;
    padding: 0 5%;
  }
}

/* ── HERO VSL EMBED ── */
.hero-vsl-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.hero-vsl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
