:root {
  --bg: #0b0c0d;
  --bg2: #111315;
  --panel: #17191b;
  --lhpink: #FDEBF3;
  --line: rgba(255,255,255,.10);
  --text: #f4f4f2;
  --muted: #a4a6a8;
  --pink: #FF87BA;
  --green: #29FF6C;
  --mint: #C7FFDC;
  --max: 1800px;
  --pink-soft: rgba(255, 135, 186, .72);
  --pink-muted: rgba(255, 135, 186, .48);
  --pink-faint: rgba(255, 135, 186, .16);

  --green-soft: rgba(41, 255, 108, .68);
  --green-muted: rgba(41, 255, 108, .42);
  --green-faint: rgba(41, 255, 108, .14);

  --mint-soft: rgba(199, 255, 220, .72);
  --mint-muted: rgba(199, 255, 220, .46);
  --mint-faint: rgba(199, 255, 220, .14);  
 
  
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.wrap {
  width: min(calc(100% - 100px), var(--max));
  margin: auto;
}


/* ==================================================
   FLOATING NAV
================================================== */

.topbar {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: 22px;

  display: flex;
  align-items: center;

  padding: 10px 12px 10px 20px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;

  background: rgba(10,11,12,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 13px;
  font-weight: 700;
  color: #c5c5c5;
}

.topbar nav a {
  white-space: nowrap;
}

.topbar nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: #111;
}

.nav-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 0;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    width .25s ease,
    opacity .25s ease,
    margin-left .25s ease;
}

.nav-mark img {
  display: block;
  width: 38px;
  min-width: 38px;
  height: 38px;
  object-fit: contain;
}

body.is-scrolled .nav-mark {
  width: 38px;
  margin-left: 4px;
  opacity: 1;
}


/* ==================================================
   BRAND
================================================== */

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  letter-spacing: 0;

  white-space: nowrap;
  flex-shrink: 0;
}

.brand {
  font-size: 21px;
}

.brand img {
  width: 34px;
}

.footer-brand {
  font-size: 24px;
}

.footer-brand img {
  width: 42px;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  min-height: 980px;

  display: flex;
  align-items: center;

  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #0b0c0d 0%,
      rgba(11,12,13,.97) 24%,
      rgba(11,12,13,.80) 48%,
      rgba(11,12,13,.44) 72%,
      #0b0c0d 100%
    ),
    linear-gradient(
      180deg,
      #0b0c0d 0%,
      transparent 22%,
      transparent 72%,
      #0b0c0d 100%
    ),
    url("https://www.leadhog.com/images/snout.jpg") center / cover no-repeat;

  filter: saturate(.72) contrast(1.06);
  transform: scale(1.01);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 1060px;
  padding-top: 72px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 30px;

  color: var(--mint);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(64px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;

  white-space: nowrap;
}

.hero-brand img {
  width: clamp(70px, 6vw, 96px);
  height: auto;
}

.eyebrow,
.section-label {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}




.hero-title {
  position: relative;
  display: inline-block;

  margin: 26px 0 30px;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 5.1vw, 86px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-intro {
  max-width: 900px;
  margin: 0;

  color: #d6d7d8;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.55;
}

.hero-lead {
  color: var(--green);
  font-size: 1.1em;
  font-weight: 700;
}

.hero-answer {
  margin-left: 5px;
  color: var(--lhpink);
  font-size: 1.1em;
}

.hero-lead,
.hero-answer {
  white-space: nowrap;
}

.hero-intro-break {
  display: none;
}

.hero-direct {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}


/* ==================================================
   BUTTONS
================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 16px 22px;
  border-radius: 999px;
}

.btn-primary {
  background: var(--lhpink);
  color: #111;
  box-shadow:
    0 0 0 1px rgba(255,135,186,.25),
    0 12px 34px rgba(255,135,186,.11);
}

.btn:hover {
  transform: translateY(-1px);
}

.subtle-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.34);

  color: #ddd;
  font-size: 14px;
  font-weight: 800;
}


/* ==================================================
   SHARED SECTION HEADING STYLE
================================================== */

.about h2,
.story h2,
.services h2,
.success-band h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.dark-section {
  position: relative;
  background: var(--bg);
}


/* ==================================================
   ABOUT
================================================== */

.about {
  padding: 130px 0 150px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 100px;
  margin-top: 36px;
}

.about h2 {
  max-width: 930px;

  font-size: clamp(48px, 5.8vw, 94px);
  line-height: .94;
}

.about-copy {
  max-width: 760px;

  color: #b8b9bb;
  font-size: 20px;
  line-height: 1.7;
}

.about-copy p {
  margin-top: 0;
  margin-bottom: 26px;
}

.accent-line {
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 900;
  line-height: 1.35 !important;
}


/* ==================================================
   STORY
================================================== */

.story-band {
  position: relative;

  width: min(100%, var(--max));
  min-height: 900px;
  margin: auto;

  overflow: hidden;
  background: var(--bg);
}

.story-image {
  position: absolute;
  inset: 0;

  background:
    url("https://www.leadhog.com/images/boss-hog.jpg")
    center / cover no-repeat;

  filter: saturate(.72) brightness(.78);
}

.story-vignette {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #0b0c0d 0%,
      rgba(11,12,13,.92) 12%,
      rgba(11,12,13,.70) 28%,
      rgba(11,12,13,.32) 45%,
      rgba(11,12,13,.08) 62%,
      rgba(11,12,13,.02) calc(100% - 70px),
      rgba(11,12,13,.35) calc(100% - 45px),
      rgba(11,12,13,.82) calc(100% - 20px),
      #0b0c0d 100%
    ),
    linear-gradient(
      180deg,
      rgba(11,12,13,.55) 0%,
      transparent 12%,
      transparent 86%,
      rgba(11,12,13,.55) 100%
    );
}

.story-inner {
  position: relative;
  z-index: 2;

  min-height: 900px;

  display: flex;
  align-items: center;
}

/* ==================================================
   STORY TYPOGRAPHY
================================================== */

.story-copy {
  width: 52%;
  max-width: 900px;
  padding-left: 4px;
}


/* Main statement */

.story-title {
  margin: 22px 0 34px;

  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.story-title-main {
  display: block;

  color: #fff;

  font-size: clamp(42px, 3.7vw, 68px);
  line-height: .92;
}

.story-title-secondary {
  display: block;

  max-width: 760px;
  margin-top: 12px;

  color: var(--mint-muted);

  font-size: clamp(25px, 2.2vw, 38px);
  line-height: 1.02;
  letter-spacing: -.035em;
}


/* Opening paragraph */

.story-intro {
  max-width: 720px;
  margin: 0 0 30px;

  color: #b7b9bb;

  font-size: 18px;
  line-height: 1.65;

  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}

.story-intro strong {
  color: #fff;
  font-weight: 800;
}


/* Evolution of Lead Hog */

.story-evolution {
  max-width: 790px;
  margin: 0 0 14px;

  color: #d8d9da;

  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.025em;

  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

.story-evolution span {
  color: #fff;
  font-weight: 700;
}

.story-evolution strong {
  color: var(--green-muted);
  font-weight: 800;
}


/* Pivot */

.story-turn {
  margin: 0 0 10px;

  color: #aaa;

  font-size: 22px;
  line-height: 1.5;
}

.story-turn leadin {
  margin: 0 0 10px;

  color: #aaa;

  font-size: 26px;
  line-height: 1.5;
}

.story-turn strong {
  color: var(--lhpink);
}


/* The actual business philosophy */

.story-promise {
  max-width: 760px;
  margin: 0 0 18px;

  color: var(--pink-muted) !important;

  font-size: clamp(24px, 2vw, 32px) !important;
  font-weight: 800;
  line-height: 1.25 !important;
  letter-spacing: -.025em;

  text-shadow:
    0 2px 8px rgba(0,0,0,.85),
    0 0 24px rgba(0,0,0,.4);
}


/* Boss Hog signature */

.signature {
  display: inline-block;

  margin-top: 8px;

  color: var(--mint-soft);

  font-family: "Permanent Marker", cursive;
  font-size: 42px;

  transform: rotate(-3deg);

  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}



/* ==================================================
   LEAD HOG MANIFESTO
================================================== */

.hog-manifesto {
  max-width: 920px;
}


/* Opening */

.hog-opening {
  max-width: 760px;
  margin: 0 0 18px;

  color: #b9bbbd;

  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.5;
}

.hog-opening strong {
  color: #fff;
  font-weight: 800;
}


/* Serious proposition */

.hog-purpose {
  max-width: 820px;
  margin: 0 0 48px;

  color: #d1d2d3;

  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.5;
  letter-spacing: -.02em;
}

.hog-purpose strong {
  color: var(--green);
}


/* We want to hog them */

.hog-escalation {
  margin: 0 0 12px;
}

.hog-escalation > span {
  display: block;

  margin-bottom: 4px;

  color: #9b9da0;

  font-size: 18px;
  font-weight: 600;
}

.hog-escalation strong {
  display: block;

  color: #fff;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;

  text-transform: uppercase;
}

.hog-escalation em {
  display: inline-block;

  margin-top: 8px;

  color: var(--pink);

  font-family: "Permanent Marker", cursive;
  font-size: 73px;
  font-style: normal;

  transform: rotate(-2deg);
}


/* Competitors */

.hog-competitors {
  margin: 30px 0 65px;

  color: #8f9295;

  font-size: 17px;
}

.hog-competitors span {
  color: var(--mint);
  font-weight: 800;
}


/* Trough */

.hog-trough {
  padding: 30px 0;
  margin-bottom: 58px;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hog-trough > span {
  color: #8f9295;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;

  text-transform: uppercase;
}

.hog-trough > strong {
  display: block;

  margin: 5px 0 12px;

  color: var(--pink);

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -.05em;
}

.hog-trough p {
  margin: 0;

  color: #b8babc;

  font-size: 20px;
  line-height: 1.5;
}

.hog-trough b {
  color: #fff;
}


/* Experience */

.hog-experience {
  max-width: 800px;
  margin-bottom: 60px;
}

.hog-kicker {
  display: block;

  margin-bottom: 18px;

  color: var(--green);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;

  text-transform: uppercase;
}

.hog-experience p {
  margin: 0 0 18px;

  color: #b7b9bb;

  font-size: 18px;
  line-height: 1.65;
}

.hog-experience em {
  color: #fff;

  font-family: "Permanent Marker", cursive;
  font-size: 1.15em;
  font-style: normal;
}


/* More leads / more business */

.hog-equation {
  margin: 20px 0 65px;
}

.hog-equation span,
.hog-equation strong {
  display: block;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(46px, 5.8vw, 88px);
  font-weight: 400;
  line-height: .87;
  letter-spacing: -.06em;

  text-transform: uppercase;
}

.hog-equation span {
  color: var(--green);
}

.hog-equation i {
  display: block;

  margin: 10px 0;

  color: #8c8f91;

  font-family: "Permanent Marker", cursive;
  font-size: 22px;
  font-style: normal;
}

.hog-equation strong {
  color: var(--pink);
}


/* Finale */

.hog-finale {
  max-width: 790px;
  margin-bottom: 34px;

  color: #b7b9bb;

  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.6;
}

.hog-finale span {
  color: var(--mint);
  font-weight: 800;
}


/* Last word */

.hog-last-word {
  color: #fff;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;

  text-transform: uppercase;
}

.hog-last-word span {
  display: block;

  margin-top: 8px;

  color: var(--pink);

  font-family: "Permanent Marker", cursive;
  font-size: .65em;
  font-weight: 400;
  letter-spacing: 0;

  text-transform: none;

  transform: rotate(-2deg);
  transform-origin: left center;
}

.hog-modal-backdrop {
  position: fixed;
  z-index: 230;
  inset: 0;

  display: grid;
  place-items: center;

  padding: 30px;

  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);

  opacity: 0;
  visibility: hidden;
  transition: .22s ease;
}

.hog-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.hog-modal {
  position: relative;

  width: min(1100px, 100%);
  max-height: calc(100svh - 60px);

  overflow-y: auto;

  padding: clamp(34px, 5vw, 72px);

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255,135,186,.10),
      transparent 28%
    ),
    #111315;

  box-shadow: 0 50px 140px rgba(0,0,0,.65);
}

.hog-modal-inner {
  max-width: 900px;
}

.hog-modal-close {
  position: sticky;
  float: right;
  top: 0;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 50%;

  background: #202326;
  color: #fff;

  font-size: 24px;
  cursor: pointer;
}





/* ==================================================
   CAPABILITIES
================================================== */

.services {
  position: relative;
  overflow: hidden;

  padding: 150px 0 170px;

  background:
    linear-gradient(
      90deg,
      rgba(11,12,13,.94) 0%,
      rgba(11,12,13,.72) 16%,
      rgba(11,12,13,.42) 38%,
      rgba(11,12,13,.30) 52%,
      rgba(11,12,13,.42) 68%,
      rgba(11,12,13,.72) 84%,
      rgba(11,12,13,.94) 100%
    ),
    linear-gradient(
      180deg,
      #0b0c0d 0%,
      rgba(11,12,13,.22) 16%,
      rgba(11,12,13,.12) 50%,
      rgba(11,12,13,.22) 84%,
      #0b0c0d 100%
    ),
    url("https://www.leadhog.com/images/truffles.jpg")
    center center / cover no-repeat;
}


/* ==================================================
   CAPABILITIES HEADER
================================================== */

.services-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
  
  margin-top: 26px;
}

.services h2 {
  margin: 0;

  font-family: "Archivo Black", sans-serif;
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 400;
  line-height: .90;
  letter-spacing: -.05em;

  text-transform: uppercase;

  text-shadow:
    0 3px 12px rgba(0,0,0,.72),
    0 0 26px rgba(0,0,0,.35);
}

.services-head > p {
  max-width: 620px;
  margin: 0;

  color: #c0c2c4;

  font-size: 20px;
  line-height: 1.6;

  text-shadow:
    0 2px 8px rgba(0,0,0,.78),
    0 0 20px rgba(0,0,0,.35);
}


/* ==================================================
   CAPABILITIES GRID
================================================== */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;

  margin-top: 80px;

  border: 1px solid rgba(255,255,255,.10);

  background: rgba(255,255,255,.10);
}


/* ==================================================
   CAPABILITY CARD
================================================== */

.capability-card {
  position: relative;

  min-height: 310px;
  padding: 34px 32px 48px;

  background: rgba(10,12,13,.78);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  transition:
    background .22s ease,
    transform .22s ease;
}

.capability-card:hover {
  z-index: 2;

  background: rgba(16,18,20,.92);
}


/* Capability number */

.capability-number {
  display: block;

  margin-bottom: 52px;

  color: rgba(255,255,255,.34);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}


/* Capability title */

.capability-card h3 {
  max-width: 360px;
  margin: 0 0 18px;

  color: #fff;

  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;

  text-shadow:
    0 2px 8px rgba(0,0,0,.65);
}


/* Capability description */

.capability-card p {
  max-width: 390px;
  margin: 0;

  color: #a8abad;

  font-size: 16px;
  line-height: 1.65;

  text-shadow:
    0 2px 6px rgba(0,0,0,.6);
}

.services-instinct {
  margin: 0 0 4px;

  color: #fff;

  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.services-dna {
  margin: 0 0 24px;

  color: var(--mint-soft);

  font-family: "Permanent Marker", cursive;
  font-size: 54px;
  line-height: 1.35;
}

.services-context {
  max-width: 620px;
  margin: 26px 0 0;

  color: #c0c2c4;

  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
}

/* ==================================================
   CARD ACCENT LINES
================================================== */

.capability-card::after {
  content: "";

  position: absolute;
  left: 32px;
  bottom: 25px;

  width: 24px;
  height: 2px;

  opacity: .38;

  transition:
    width .22s ease,
    opacity .22s ease;
}

.capability-card:hover::after {
  width: 48px;
  opacity: .75;
}


/* Muted brand accents */

.capability-card:nth-child(3n + 1)::after {
  background: rgba(41,255,108,.55);
}

.capability-card:nth-child(3n + 2)::after {
  background: rgba(255,135,186,.55);
}

.capability-card:nth-child(3n + 3)::after {
  background: rgba(199,255,220,.55);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 980px) {

  .services-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 720px) {

  .services {
    padding: 100px 0 120px;

    background:
      linear-gradient(
        180deg,
        rgba(11,12,13,.90) 0%,
        rgba(11,12,13,.50) 25%,
        rgba(11,12,13,.45) 60%,
        rgba(11,12,13,.92) 100%
      ),
      url("https://www.leadhog.com/images/truffles.jpg")
      center center / cover no-repeat;
  }

  .services-head {
    gap: 26px;
  }

  .services h2 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .services-head > p {
    font-size: 17px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;

    margin-top: 52px;
  }

  .capability-card {
    min-height: auto;

    padding: 28px 24px 54px;

    background: rgba(10,12,13,.84);
  }

  .capability-number {
    margin-bottom: 30px;
  }

  .capability-card::after {
    left: 24px;
  }

}










/* Keep section content above the image */

.services > .wrap {
  position: relative;
  z-index: 1;
}

.hog-story-trigger {
  appearance: none;
  -webkit-appearance: none;

  display: inline-flex;
  align-items: center;

  margin: 0;
  padding: 0;

  border: 0;
  background: none;
  color: inherit;

  font: inherit;
  text-align: inherit;

  cursor: pointer;
}



.site-logo {
  position: fixed;
  z-index: 101;

  top: 26px;
  left: 60px;

  display: inline-flex;
  align-items: center;
  gap: 16px;

  margin: 0;
  padding: 0;

  border: 0;
  background: none;

  color: var(--mint);

  font-family: "Permanent Marker", cursive;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;

  cursor: pointer;

  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;
}

.site-logo img {
  width: 72px;
  height: auto;
}


/* Logo hands off to navigation logo */

body.is-scrolled .site-logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
}




/* ==================================================
   LEAD ACQUISITION SYSTEM
================================================== */

.lead-system {
  position: sticky;
  top: 110px;

  padding: 22px;

  overflow: visible;

  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;

  background: linear-gradient(180deg, #1a1c1f, #121416);
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.system-top {
  display: flex;
  justify-content: space-between;

  color: #9a9da0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.status {
  color: #b8ffc8;
}

.status i {
  display: inline-block;

  width: 7px;
  height: 7px;
  margin-right: 6px;

  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.system-snout {
  height: 320px;

  display: grid;
  place-items: center;
}

.system-snout img {
  width: 190px;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.4));
}

.system-row {
  display: flex;
  justify-content: space-between;

  padding: 16px 2px;
  border-top: 1px solid var(--line);

  font-weight: 800;
}

.system-row strong {
  color: var(--green);
  font-size: 24px;
}

.system-row:last-of-type strong {
  color: var(--pink);
}

.postit {
  position: absolute;
  right: -24px;
  bottom: 34px;

  padding: 14px 18px;

  background: #f0e7b9;
  color: #1a1a1a;

  font-family: "Permanent Marker", cursive;
  font-size: 17px;

  box-shadow: 0 14px 28px rgba(0,0,0,.32);
  transform: rotate(5deg);
}


/* ==================================================
   SUCCESS / LAMBO
================================================== */

.success-band {
  position: relative;

  width: min(100%, var(--max));
  min-height: 900px;
  margin: auto;

  overflow: hidden;
  background: #0b0c0d;
}

.success-image {
  position: absolute;
  inset: 0;

  background:
    url("https://www.leadhog.com/images/lambo.jpg")
    center / cover no-repeat;

  filter:
    saturate(.68)
    brightness(.62)
    contrast(1.05);
}

.success-overlay {
  position: absolute;
  inset: 0;

  /*
    Keep the photo visible through the middle.
    Darken the right side for the copy and blend both
    outer edges into the section background.
  */
  background:
    linear-gradient(
      90deg,
      #0b0c0d 0%,
      rgba(11,12,13,.20) 10%,
      rgba(11,12,13,.05) 34%,
      rgba(11,12,13,.12) 54%,
      rgba(11,12,13,.48) 72%,
      rgba(11,12,13,.80) 88%,
      #0b0c0d 100%
    ),
    linear-gradient(
      180deg,
      #0b0c0d 0%,
      transparent 20%,
      transparent 76%,
      #0b0c0d 100%
    );
}

.success-inner {
  position: relative;
  z-index: 2;

  min-height: 900px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.success-copy {
  /*
    IMPORTANT:
    Do not set width:100% here. That was what made the
    block feel much narrower/different than the original.
    We only position the existing copy block on the right.
  */
  max-width: 880px;
  margin-left: auto;
  padding-right: clamp(0px, 2vw, 36px);

  text-align: left;
}

.success-copy h2 {
  margin: 24px 0;

  font-size: clamp(54px, 6.3vw, 102px);
  line-height: .92;

  text-shadow:
    0 3px 10px rgba(0,0,0,.75),
    0 0 30px rgba(0,0,0,.4);
}

.success-copy h2 span {
  color: var(--pink);
}

.success-copy > p {
  max-width: 700px;

  color: #b9bbbd;
  font-size: 20px;
  line-height: 1.6;

  text-shadow:
    0 2px 6px rgba(0,0,0,.8),
    0 0 18px rgba(0,0,0,.45);
}

.bacon {
  display: inline-block;

  margin: 34px 0 26px;

  color: var(--mint);
  font-family: "Permanent Marker", cursive;
  font-size: 28px;

  text-shadow: 0 2px 8px rgba(0,0,0,.65);
  transform: rotate(-2deg);
}


/* ==================================================
   FOOTER
================================================== */

.footer {
  padding: 80px 0 34px;

  border-top: 1px solid var(--line);

  background:
    linear-gradient(
      180deg,
      #0b0c0d 0%,
      #08090a 100%
    );
}


.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(60px, 8vw, 140px);

  padding-bottom: 68px;
}


.footer-brand-block {
  max-width: 480px;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  border: 0;
  padding: 0;
  background: none;

  color: var(--mint);

  font-family: "Permanent Marker", cursive;
  font-size: 30px;
  line-height: 1;

  cursor: pointer;
}


.footer-brand img {
  width: 50px;
  height: auto;
}


.footer-brand-block p {
  max-width: 430px;
  margin: 0;

  color: #85888b;

  font-size: 15px;
  line-height: 1.7;
}


/* Link groups */

.footer-links {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
}


.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}


.footer-heading {
  margin-bottom: 7px;

  color: #5f6265;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;

  text-transform: uppercase;
}


.footer-group a,
.footer-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0;
  padding: 0;

  border: 0;
  background: none;

  color: #b6b8ba;

  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;

  cursor: pointer;

  transition:
    color .18s ease,
    transform .18s ease;
}


.footer-group a span {
  color: #666a6d;

  font-size: 11px;

  transition:
    color .18s ease,
    transform .18s ease;
}


.footer-group a:hover,
.footer-link-button:hover {
  color: #fff;
}


.footer-group a:hover span {
  color: var(--pink);
  transform: translate(2px, -2px);
}


/* Bottom bar */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding-top: 28px;

  border-top: 1px solid rgba(255,255,255,.07);

  color: #66696c;

  font-size: 12px;
}


.footer-tagline {
  color: #8e9194;

  font-weight: 700;
  letter-spacing: .04em;
}


/* ==================================================
   FOOTER — MOBILE
================================================== */

@media (max-width: 800px) {

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}


@media (max-width: 520px) {

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

}

/* ==================================================
   CONTACT MODAL
================================================== */

.modal-backdrop {
  position: fixed;
  z-index: 220;
  inset: 0;

  display: grid;
  place-items: center;

  padding: 22px;

  visibility: hidden;
  opacity: 0;

  background: rgba(0,0,0,.82);
  backdrop-filter: blur(14px);

  transition: .2s;
}

.modal-backdrop.open {
  visibility: visible;
  opacity: 1;
}

.contact-modal {
  width: min(760px, 100%);
  max-height: calc(100svh - 44px);

  padding: 30px;
  overflow: auto;

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;

  background: #121416;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.modal-head h2 {
  margin: 8px 0 12px;

  font-family: "Archivo Black", sans-serif;
  font-size: 46px;
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.modal-head p {
  margin: 0 0 24px;
  color: #9da0a2;
}

.modal-close {
  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;

  background: #202326;
  color: #fff;

  font-size: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #999;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  padding: 15px;

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;

  outline: none;
  background: #0c0d0e;
  color: #fff;

  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,135,186,.12);
}

.hp-field {
  position: absolute;
  left: -10000px;
}

.form-footer {
  grid-column: 1 / -1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-top: 8px;
}

.form-note {
  max-width: 330px;

  color: #7f8285;
  font-size: 12px;
}

.form-status {
  grid-column: 1 / -1;

  font-size: 13px;
  font-weight: 800;
}


/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 980px) {
  .about-grid,
  .services-head,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .story-copy {
    width: 62%;
  }

  .lead-system {
    position: relative;
    top: auto;

    max-width: 600px;
  }

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


/* ==================================================
   RESPONSIVE — HERO INTRO
================================================== */

@media (max-width: 900px) {
  .hero-intro-break {
    display: block;
  }

  .hero-answer {
    margin-left: 0;
  }
}


/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .topbar nav a:not(.nav-mark) {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(11,12,13,.9) 0%,
        rgba(11,12,13,.76) 40%,
        #0b0c0d 100%
      ),
      url("https://www.leadhog.com/images/snout.jpg")
      58% center / cover no-repeat;
  }

  .hero-copy {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 68px);
  }

  .about {
    padding: 90px 0 110px;
  }

  .about-grid {
    gap: 36px;
  }

  .story-band,
  .story-inner {
    min-height: 900px;
  }

  .story-image {
    background-position: 62% center;
  }

  .story-vignette {
    background:
      linear-gradient(
        180deg,
        #0b0c0d 0%,
        rgba(11,12,13,.88) 44%,
        rgba(11,12,13,.45) 72%,
        #0b0c0d 100%
      );
  }

  .story-copy {
    width: 100%;
    align-self: flex-start;
    padding-top: 92px;
  }

  .services {
    padding: 100px 0 120px;
  }

  .services-layout {
    gap: 50px;
  }

  .system-snout {
    height: 240px;
  }

  .success-band,
  .success-inner {
    min-height: 820px;
  }

  .success-inner {
    justify-content: flex-start;
    align-items: flex-end;

    padding-bottom: 70px;
  }

  .success-copy {
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .success-copy h2 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .success-copy > p {
    font-size: 17px;
  }

  .success-overlay {
    background:
      linear-gradient(
        180deg,
        #0b0c0d 0%,
        rgba(11,12,13,.18) 24%,
        rgba(11,12,13,.48) 58%,
        rgba(11,12,13,.92) 82%,
        #0b0c0d 100%
      );
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full,
  .form-footer,
  .form-status {
    grid-column: 1;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
