:root {
  --ink: #10272c;
  --black: #061214;
  --muted: #536669;
  --paper: #fbf4e6;
  --panel: #fffaf0;
  --line: #e6d9c2;
  --teal: #168f98;
  --teal-dark: #0b5c63;
  --orange: #f36b18;
  --green: #5c934e;
  --yellow: #e4a928;
  --shadow: 0 22px 60px rgba(16, 39, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(22, 143, 152, 0.08) 1px, transparent 1.5px) 0 0 / 24px 24px,
    linear-gradient(180deg, #fff9ed 0%, var(--paper) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
.desktop-nav,
.hero-actions,
.site-footer,
.lead-magnet {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  object-fit: cover;
}

.desktop-nav {
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: rgba(243, 107, 24, 0.12);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 92px;
  left: 50%;
  display: none;
  width: min(1160px, calc(100% - 32px));
  padding: 10px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.mobile-nav.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 104px 24px 42px;
  border-bottom: 3px solid var(--orange);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 244, 230, 0.98) 0%, rgba(251, 244, 230, 0.9) 48%, rgba(251, 244, 230, 0.2) 100%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(22, 143, 152, 0.1) 38px 40px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(243, 107, 24, 0.08) 38px 40px);
  content: "";
}

.hero::after {
  position: absolute;
  top: 142px;
  right: max(18px, calc((100% - 1160px) / 2));
  width: min(40vw, 480px);
  height: 44%;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  opacity: 0.75;
  content: "";
}

.hero-emblem {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100% - 1160px) / 2));
  bottom: 64px;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  border: 3px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.stat strong,
.process-row strong {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  color: var(--black);
  font-size: clamp(3.1rem, 5.6vw, 5.2rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.75rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #23383b;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  font-weight: 700;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--black);
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.button.primary {
  background: var(--orange);
  color: var(--black);
}

.button.primary:hover {
  background: #ff812f;
}

.button.secondary {
  background: var(--panel);
  color: var(--teal-dark);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 22px;
}

.hero-metrics span {
  min-height: 54px;
  padding: 10px 12px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  color: var(--teal-dark);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  color: var(--orange);
}

.band {
  background: var(--panel);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

.stat {
  min-height: 154px;
  padding: 34px clamp(20px, 5vw, 56px);
  border-right: 1px solid var(--line);
  background: var(--panel);
}

.stat strong {
  display: block;
  color: var(--teal);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.stat span {
  color: var(--muted);
  font-weight: 900;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.muted,
.intro-grid p,
.poster-card p,
.lane-card p,
.service-item p,
.process-row p,
.lead-magnet p {
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 64px);
  max-width: 1000px;
}

.intro-grid p {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 700;
}

.showcase {
  padding: 92px max(16px, calc((100% - 1160px) / 2));
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.video-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(243, 107, 24, 0.1), rgba(22, 143, 152, 0.1)),
    var(--panel);
  box-shadow: var(--shadow);
}

.video-tile {
  display: grid;
  gap: 10px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--black);
  aspect-ratio: 16 / 9;
}

.video-frame::before {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 16px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  pointer-events: none;
  content: "";
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-tile span {
  color: var(--teal-dark);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.poster-card,
.lane-card,
.service-item,
.process-row article {
  position: relative;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--panel);
}

.poster-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) 1fr;
  gap: 20px;
  min-height: 350px;
  overflow: hidden;
  padding: 18px;
}

.poster-card::before,
.lane-card::before,
.service-item::before,
.process-row article::before {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 56px;
  height: 20px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  content: "";
}

.poster-card img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  border: 2px solid var(--orange);
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
}

.poster-card > div {
  align-self: end;
  padding: 8px 4px;
}

.tag {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 7px 10px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: rgba(243, 107, 24, 0.11);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.alt {
  border-color: var(--teal);
  background: rgba(22, 143, 152, 0.12);
  color: var(--teal-dark);
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.lane-card {
  min-height: 260px;
  padding: 24px;
}

.lane-card > span,
.service-item > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--black);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.lane-card p,
.service-item p,
.process-row p {
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  min-height: 158px;
  align-items: start;
  padding: 24px;
}

.service-item > span {
  margin-bottom: 0;
}

.service-item.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.process {
  padding: 92px max(16px, calc((100% - 1160px) / 2));
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-row article {
  min-height: 200px;
  padding: 28px;
}

.process-row strong {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 2.2rem;
}

.lead-magnet {
  justify-content: space-between;
  gap: 32px;
}

.lead-magnet > div {
  max-width: 760px;
}

.contact {
  padding: 92px max(16px, calc((100% - 1160px) / 2));
  border-top: 2px solid var(--orange);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

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

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 107, 24, 0.16);
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(16px, calc((100% - 1160px) / 2));
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: none;
}

@media (max-width: 1020px) {
  .hero-emblem {
    opacity: 0.24;
  }

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

  .poster-card {
    grid-template-columns: 1fr;
  }

  .poster-card img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 84vh;
    padding-top: 110px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 244, 230, 0.98) 0%, rgba(251, 244, 230, 0.9) 63%, rgba(251, 244, 230, 0.58) 100%),
      repeating-linear-gradient(90deg, transparent 0 34px, rgba(22, 143, 152, 0.09) 34px 36px),
      repeating-linear-gradient(0deg, transparent 0 34px, rgba(243, 107, 24, 0.07) 34px 36px);
  }

  .hero::after {
    display: none;
  }

  .hero-emblem {
    right: -84px;
    bottom: 70px;
    width: 310px;
    opacity: 0.16;
  }

  .proof,
  .intro-grid,
  .video-ribbon,
  .poster-grid,
  .lane-grid,
  .split,
  .process-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

  .lead-magnet {
    align-items: flex-start;
    flex-direction: column;
  }

  .full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 0 12px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand {
    max-width: calc(100% - 54px);
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.05rem);
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 34px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .hero-metrics span {
    min-height: 46px;
    padding: 8px;
    font-size: 0.78rem;
    line-height: 1.05;
  }

  .section,
  .showcase,
  .process,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .poster-card,
  .lane-card,
  .service-item,
  .process-row article {
    padding: 20px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

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