:root {
  --navy-950: #07131f;
  --navy-900: #0b1b2a;
  --navy-800: #12283a;
  --slate-600: #526371;
  --slate-300: #b8c0c6;
  --steel-100: #e8ebeb;
  --paper: #f7f5ef;
  --white: #ffffff;
  --orange: #ff6a13;
  --orange-dark: #c84700;
  --ink: #0c151c;
  --line: rgba(12, 21, 28, 0.16);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 64px);
  color: var(--white);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-family: var(--display);
  text-transform: uppercase;
}

.logo-mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.logo-mark img {
  width: 64px;
  max-width: none;
  height: 64px;
  transform: translate(-12px, -10px);
}

.wordmark-name {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.wordmark-rule {
  width: 30px;
  height: 4px;
  background: var(--orange);
}

.wordmark-descriptor {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-cta {
  justify-self: end;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  border-color: var(--orange);
  background: rgba(255, 106, 19, 0.1);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 1200px;
  padding: 152px 20px 170px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 106, 19, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 86px 86px,
    var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1180px, 100%);
  padding: 0;
  text-align: center;
}

.kicker,
.section-label {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.kicker span {
  width: 26px;
  height: 3px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 1160px;
  margin-bottom: 28px;
  font-size: clamp(4.5rem, 8vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-summary {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  text-align: center;
}

.hero-actions {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 700;
}

.button-primary {
  background: var(--orange);
  color: var(--navy-950);
  box-shadow: inset 0 0 0 0 var(--white);
  transition: box-shadow 200ms ease;
}

.button-primary:hover {
  box-shadow: inset 280px 0 0 0 var(--white);
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 600;
}

.text-link:hover {
  border-color: var(--orange);
  color: var(--white);
}

.hero-vsl {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(1000px, calc(100% - 40px));
  aspect-ratio: 16 / 9;
  margin: 38px 0 0;
  padding: 22px;
  border: 8px solid rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(rgba(7, 19, 31, 0.72), rgba(7, 19, 31, 0.8)),
    url("assets/warehouse-pest-control.jpg") center 56% / cover;
  box-shadow: 20px 20px 0 rgba(255, 106, 19, 0.86), 0 24px 80px rgba(0, 0, 0, 0.38);
  color: var(--white);
  backdrop-filter: blur(2px);
}

.hero-vsl-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-vsl button {
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: clamp(70px, 7vw, 92px);
  height: clamp(70px, 7vw, 92px);
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: rgba(7, 19, 31, 0.68);
}

.hero-vsl button span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--orange);
}

.hero-vsl-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.hero-vsl-copy strong {
  max-width: 330px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-vsl-copy span {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.commitment-card {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: min(660px, calc(100% - 40px));
  margin: 64px auto 0;
  padding: 24px 28px 22px;
  border-top: 8px solid var(--orange);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 25px 70px rgba(3, 10, 16, 0.26);
}

.commitment-topline,
.docket-header,
.proof-board-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: var(--slate-600);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commitment-numbers {
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.commitment-numbers strong {
  font-family: var(--display);
  font-size: clamp(3.8rem, 6.4vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.commitment-numbers span {
  color: var(--slate-600);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.commitment-numbers i {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 700;
}

.commitment-card > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.78rem;
}

.draft-flag {
  margin: 16px -28px -22px;
  padding: 8px 28px;
  background: #fff0e7;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 4vw, 60px);
  min-height: 88px;
  padding: 18px max(20px, calc((100vw - 1380px) / 2));
  background: var(--orange);
  color: var(--navy-950);
}

.signal-bar p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.signal-bar span {
  width: 5px;
  height: 5px;
  background: var(--navy-950);
  transform: rotate(45deg);
}

.section {
  padding: clamp(90px, 11vw, 160px) clamp(20px, 6vw, 100px);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.proof-heading h2,
.booking-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.proof-heading > p:last-child,
.booking-copy > p:last-child {
  max-width: 620px;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.qualified {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding-top: clamp(170px, 18vw, 240px);
}

.qualification-docket {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--steel-100);
}

.docket-header {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.qualification-docket ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualification-docket li {
  display: grid;
  grid-template-columns: 90px 1fr 42px;
  gap: 20px;
  align-items: center;
  min-height: 142px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.gate-number {
  align-self: start;
  color: var(--orange-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qualification-docket h3 {
  margin-bottom: 5px;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.qualification-docket li p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.check {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--orange);
  color: var(--orange-dark);
  font-weight: 700;
}

.docket-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.docket-footer p {
  margin: 0;
}

.process {
  background: var(--navy-950);
  color: var(--white);
}

.section-heading.light {
  margin-bottom: 60px;
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
  position: relative;
  min-height: 420px;
  padding: 28px clamp(22px, 3vw, 44px) 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  border-right: 0;
}

.step-meta {
  margin-bottom: 90px;
  color: var(--orange);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-index {
  position: absolute;
  top: 14px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  max-width: 280px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.process-step > p:last-child {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.proof-board {
  border: 1px solid var(--line);
  background: var(--white);
}

.proof-board-header {
  align-items: center;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.sample-pill {
  padding: 6px 8px;
  background: #fff0e7;
  color: var(--orange-dark);
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proof-metrics div {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-metrics div:nth-child(even) {
  border-right: 0;
}

.proof-metrics div:nth-child(n + 3) {
  border-bottom: 0;
}

.proof-metrics span {
  display: block;
  color: var(--slate-600);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.proof-metrics strong {
  display: block;
  margin-top: 22px;
  color: var(--slate-300);
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 1;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 0.7fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 86px 86px,
    var(--navy-950);
  color: var(--white);
}

.booking-copy > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.calendar-placeholder {
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 16px 16px 0 var(--orange);
}

.calendar-topbar {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.calendar-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--navy-950);
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
}

.calendar-topbar strong,
.calendar-topbar span {
  display: block;
}

.calendar-topbar span {
  margin-top: 2px;
  color: var(--slate-600);
  font-size: 0.78rem;
}

.cal-embed {
  width: 100%;
  min-height: 680px;
  margin-top: 16px;
  overflow: hidden;
}

.cal-embed iframe {
  width: 100%;
  min-height: 680px;
  border: 0;
}

.calendar-fallback {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 12px;
  color: var(--slate-600);
  font-size: 0.72rem;
}

.calendar-fallback a {
  color: var(--navy-950);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button-disabled {
  width: 100%;
  background: var(--steel-100);
  color: var(--slate-600);
  cursor: not-allowed;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.site-footer .wordmark {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .qualified,
  .proof {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .proof-heading {
    max-width: 760px;
  }

  .booking {
    grid-template-columns: 1fr 0.8fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 18px;
  }

  .wordmark-rule {
    width: 20px;
  }

  .logo-mark {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .logo-mark img {
    width: 55px;
    height: 55px;
    transform: translate(-10px, -9px);
  }

  .wordmark-descriptor {
    max-width: 75px;
    line-height: 1.05;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 116px 20px 88px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
    line-height: 0.83;
  }

  .hero-summary {
    max-width: 94%;
    margin-bottom: 0;
  }

  .hero-actions {
    align-self: center;
    margin: 30px 0 0;
  }

  .hero-vsl {
    width: 100%;
    margin: 30px 0 0;
    padding: 13px;
    border-width: 6px;
    box-shadow: 10px 10px 0 rgba(255, 106, 19, 0.86);
  }

  .hero-vsl-topline span:last-child,
  .hero-vsl-copy span {
    display: none;
  }

  .hero-vsl-copy strong {
    max-width: 250px;
    font-size: 1.55rem;
  }

  .commitment-card {
    width: 100%;
    margin: 48px 0 0;
  }

  .commitment-numbers {
    grid-template-columns: auto 1fr auto auto 1fr;
  }

  .commitment-numbers strong {
    font-size: 4rem;
  }

  .signal-bar {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 23px 20px;
  }

  .signal-bar p {
    font-size: 0.9rem;
  }

  .section {
    padding: 84px 20px;
  }

  .qualified {
    padding-top: 100px;
  }

  .section-heading h2,
  .proof-heading h2,
  .booking-copy h2 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .qualification-docket li {
    grid-template-columns: 1fr 38px;
    gap: 8px 14px;
    padding: 20px;
  }

  .gate-number {
    grid-column: 1 / -1;
  }

  .docket-footer {
    display: block;
  }

  .docket-footer p + p {
    margin-top: 4px;
  }

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

  .process-step,
  .process-step:first-child {
    min-height: 340px;
    padding: 28px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-meta {
    margin-bottom: 70px;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-metrics div,
  .proof-metrics div:nth-child(even),
  .proof-metrics div:nth-child(n + 3) {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-metrics div:last-child {
    border-bottom: 0;
  }

  .proof-metrics strong {
    margin-top: 8px;
    font-size: 3rem;
  }

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

  .calendar-placeholder {
    box-shadow: 9px 9px 0 var(--orange);
  }

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

  .site-footer p {
    text-align: left;
  }

  .site-footer > a:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
