@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Alternates";
  src: url("/fonts/MontserratAlternates-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050606;
  --bg-soft: #0a0d0e;
  --panel: rgba(15, 18, 19, 0.88);
  --panel-strong: rgba(22, 25, 25, 0.96);
  --ink: #fff7e7;
  --muted: #c9c0ad;
  --soft: #978e7d;
  --line: rgba(255, 247, 231, 0.14);
  --line-strong: rgba(255, 191, 77, 0.38);
  --gold: #ffd43b;
  --orange: #ff7a1a;
  --ember: #e83f18;
  --red: #a81818;
  --teal: #38d8c5;
  --steel: #9aa6a3;
  --shadow: rgba(0, 0, 0, 0.38);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 72px),
    linear-gradient(140deg, #030404 0%, #0b0e0f 46%, #050606 100%);
  -webkit-font-smoothing: antialiased;
}

body.modalOpen {
  overflow: hidden;
}

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

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

img {
  height: auto;
}

::selection {
  background: rgba(255, 122, 26, 0.36);
  color: #fff7e7;
}

sup {
  font-size: 0.36em;
  line-height: 0;
  vertical-align: super;
  margin-left: 0.12em;
  font-weight: 900;
  color: var(--gold);
}

.siteCanvas {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 46px;
}

.siteHeader {
  position: sticky;
  top: 12px;
  z-index: 20;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 247, 231, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 13, 14, 0.9), rgba(20, 24, 24, 0.78)),
    rgba(8, 9, 10, 0.86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brandMark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 212, 59, 0.3);
  border-radius: 8px;
  background: #020202;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.18);
  flex: 0 0 auto;
  overflow: hidden;
  padding: 3px;
}

.brandMark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brandName {
  min-width: 0;
  font-family: "Montserrat Alternates", "Montserrat", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.navLinks {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.navLink,
.headerCta,
.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.navLink {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
  border: 1px solid transparent;
}

.navLink:hover,
.navLinkActive {
  color: var(--ink);
  border-color: rgba(255, 212, 59, 0.26);
  background: rgba(255, 247, 231, 0.07);
}

.headerCta {
  justify-self: end;
  padding: 9px 13px;
  color: #0b0b07;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: 1px solid rgba(255, 212, 59, 0.3);
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.2);
}

.headerCta:hover,
.primaryButton:hover,
.secondaryButton:hover {
  transform: translateY(-1px);
}

.icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.siteMain {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  margin-top: 18px;
  padding: 72px 54px;
  border: 1px solid rgba(255, 247, 231, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #070909;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 231, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.34);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.08), rgba(5, 6, 6, 0.18) 38%, rgba(5, 6, 6, 0.82) 73%, rgba(5, 6, 6, 0.96)),
    linear-gradient(180deg, rgba(5, 6, 6, 0.05), rgba(5, 6, 6, 0.78));
}

.hero::after {
  z-index: 2;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 6, 0.28) 100%);
}

.heroImage {
  position: absolute;
  inset: 0;
}

.heroImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 50%;
  transform: scale(1.02) translate3d(-280px, 0, 0);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.heroCopy {
  position: relative;
  z-index: 3;
  width: min(600px, 100%);
  margin-left: auto;
  margin-right: -30px;
  min-width: 0;
}

.eyebrow,
.sectionKicker,
.cardEyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.pageHero h1,
.sectionTitle,
.serviceCard h3,
.packageCard h3,
.pipelineItem h3,
.detailPanel h2,
.contactPanel h2,
.intakeBox h3,
.cta h2,
.privacyHeader h2 {
  margin: 0;
  font-family: "Montserrat Alternates", "Montserrat", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 {
  margin-top: 13px;
  font-size: 58px;
  line-height: 0.98;
  max-width: 12ch;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.48);
}

.heroLead,
.panelLead,
.pageHero p,
.cta p,
.contactPanel p,
.detailPanel p,
.packageCard p,
.serviceCard p,
.pipelineItem p {
  color: var(--muted);
  line-height: 1.65;
}

.heroLead {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 18px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primaryButton,
.secondaryButton {
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.primaryButton {
  color: #090907;
  background: linear-gradient(135deg, var(--gold), var(--orange) 68%, var(--ember));
  border-color: rgba(255, 212, 59, 0.32);
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.22);
}

.secondaryButton {
  color: var(--ink);
  background: rgba(255, 247, 231, 0.08);
  border-color: rgba(255, 247, 231, 0.17);
}

.secondaryButton:hover {
  border-color: rgba(56, 216, 197, 0.42);
  background: rgba(255, 247, 231, 0.12);
}

.primaryButton:disabled,
.secondaryButton:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

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

.signalItem,
.serviceCard,
.packageCard,
.pipelineItem,
.detailPanel,
.contactPanel,
.proofPanel,
.cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 247, 231, 0.045), rgba(255, 247, 231, 0.015)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 231, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.signalItem {
  min-height: 104px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.signalItem strong {
  font-size: 23px;
  line-height: 1.05;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.signalItem span {
  color: var(--soft);
  line-height: 1.35;
}

.sectionBlock {
  padding-top: 68px;
}

.sectionIntro {
  display: grid;
  gap: 10px;
  max-width: 920px;
  min-width: 0;
}

.sectionTitle {
  font-size: 38px;
  line-height: 1.08;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

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

.serviceCard,
.packageCard {
  position: relative;
  min-height: 292px;
  padding: 22px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.serviceCard::before,
.packageCard::before,
.pipelineItem::before,
.detailPanel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.serviceCard:nth-child(2)::before,
.packageCard:nth-child(2)::before,
.detailPanel:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), var(--ember));
}

.serviceCard:nth-child(3)::before,
.packageCard:nth-child(3)::before,
.detailPanel:nth-child(3)::before {
  background: linear-gradient(90deg, var(--teal), var(--steel));
}

.serviceCard:nth-child(4)::before,
.packageCard:nth-child(4)::before,
.detailPanel:nth-child(4)::before {
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.serviceCard:hover,
.packageCard:hover,
.pipelineItem:hover,
.detailPanel:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 231, 0.08),
    0 24px 52px rgba(0, 0, 0, 0.32);
}

.serviceCard h3 {
  margin-top: 11px;
  font-size: 25px;
  line-height: 1.12;
}

.serviceCard p {
  margin: 13px 0 0;
}

.serviceCard ul,
.detailPanel ul,
.signalList,
.intakeBox ul {
  list-style: none;
  margin: 17px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.serviceCard li,
.detailPanel li,
.signalList li,
.intakeBox li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #d8cfbd;
  line-height: 1.45;
}

.checkIcon {
  width: 20px;
  height: 20px;
  fill: var(--teal);
  flex: 0 0 auto;
}

.proofPanel {
  margin-top: 68px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.panelLead {
  margin: 15px 0 0;
}

.signalList {
  margin-top: 0;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pipelineItem {
  position: relative;
  min-height: 228px;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pipelineItem span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  color: #080805;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 6px;
  font-weight: 900;
}

.pipelineItem h3 {
  font-size: 21px;
  line-height: 1.15;
}

.pipelineItem p,
.packageCard p {
  margin: 10px 0 0;
}

.cta {
  width: min(780px, 100%);
  margin-top: 68px;
  padding: 30px;
  display: grid;
  gap: 14px;
}

.cta h2 {
  font-size: 32px;
  line-height: 1.12;
}

.cta p {
  margin: 0;
}

.pageHero {
  max-width: 840px;
  padding: 76px 0 22px;
}

.pageHero h1 {
  margin-top: 13px;
  font-size: 54px;
  line-height: 1.02;
}

.pageHero p:not(.eyebrow) {
  margin: 17px 0 0;
  max-width: 68ch;
  font-size: 18px;
}

.detailStack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.detailPanel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 30px;
  padding: 26px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.detailPanel h2 {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.1;
}

.detailPanel p {
  margin: 13px 0 0;
}

.packageBand {
  padding-top: 68px;
}

.packageCard {
  min-height: 180px;
}

.packageCard h3 {
  font-size: 22px;
  line-height: 1.15;
}

.processPageSection {
  padding-top: 28px;
}

.contactPanel {
  margin-top: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.contactPanel h2 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.12;
}

.contactPanel p {
  margin: 13px 0 20px;
}

.contactDirect {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.contactDirect a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.intakeBox {
  border-left: 1px solid rgba(255, 247, 231, 0.14);
  padding-left: 24px;
}

.compactIntake {
  margin-top: 26px;
}

.intakeBox h3 {
  font-size: 22px;
}

.contactFormPanel {
  align-items: stretch;
}

.contactForm {
  display: grid;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(255, 247, 231, 0.13);
  border-radius: 8px;
  background: rgba(5, 6, 6, 0.48);
}

.formField {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.formField input,
.formField select,
.formField textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 231, 0.18);
  border-radius: 8px;
  background: rgba(255, 247, 231, 0.08);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.formField select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 54%,
    calc(100% - 12px) 54%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.formField input:focus,
.formField select:focus,
.formField textarea:focus {
  border-color: rgba(255, 212, 59, 0.68);
  background: rgba(255, 247, 231, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.13);
}

.formField small,
.fieldError {
  color: #ff8d8d;
  font-weight: 900;
}

.fieldError[hidden],
.clientNotice[hidden] {
  display: none;
}

.fieldMeta {
  justify-self: end;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.formField.fieldInvalid > span,
.checkboxField.fieldInvalid span {
  color: #ffb6a8;
}

.formField.fieldInvalid input,
.formField.fieldInvalid select,
.formField.fieldInvalid textarea {
  border-color: rgba(255, 96, 96, 0.66);
  background: rgba(86, 14, 14, 0.2);
  box-shadow: 0 0 0 4px rgba(232, 63, 24, 0.11);
}

.checkboxField {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.checkboxField input {
  margin-top: 4px;
  accent-color: var(--orange);
}

.checkboxField.fieldInvalid input {
  outline: 3px solid rgba(255, 96, 96, 0.18);
  outline-offset: 2px;
}

.formNotice {
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 900;
}

.formNotice p {
  margin: 0;
}

.formNotice p + p {
  margin-top: 6px;
}

.formNotice.success {
  color: #0f201d;
  background: rgba(56, 216, 197, 0.72);
  border: 1px solid rgba(56, 216, 197, 0.58);
}

.formNotice.error {
  color: #ffe0dc;
  background: rgba(168, 24, 24, 0.24);
  border: 1px solid rgba(255, 96, 96, 0.26);
}

.contactForm.isSubmitting {
  opacity: 0.82;
}

.submitButton {
  justify-self: start;
}

.turnstileWrap {
  min-height: 65px;
}

.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacyOverlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.privacyOverlay[hidden] {
  display: none;
}

.privacyDialog {
  width: min(760px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 247, 231, 0.18);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #111414, #080909);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.privacyHeader {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 24px 24px 0;
}

.privacyHeader h2 {
  margin-top: 8px;
  font-size: 30px;
}

.iconButton {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #090907;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  flex: 0 0 auto;
}

.iconButton svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.privacyBody {
  display: grid;
  gap: 14px;
  padding: 22px 24px 26px;
}

.privacyBody p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacyBody a {
  color: var(--gold);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 247, 231, 0.12);
  color: var(--soft);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.footer a {
  color: var(--gold);
  font-weight: 900;
}

.siteHeader {
  animation: boardEnter 520ms ease both;
}

.hero {
  animation: boardEnter 620ms ease 80ms both;
}

.jsReveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.jsReveal.isVisible {
  opacity: 1;
  transform: translateY(0);
}

.jsReveal.isVisible.serviceCard:hover,
.jsReveal.isVisible.packageCard:hover,
.jsReveal.isVisible.pipelineItem:hover,
.jsReveal.isVisible.detailPanel:hover {
  transform: translateY(-3px);
}

@keyframes boardEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(-290px, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-264px, -4px, 0);
  }
}

@keyframes heroDriftMobile {
  from {
    transform: scale(1.02) translate3d(-8px, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(8px, -4px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1040px) {
  .siteHeader {
    grid-template-columns: 1fr auto;
  }

  .navLinks {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    justify-content: flex-start;
  }

  .hero {
    min-height: 570px;
    padding: 58px 36px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.22), rgba(5, 6, 6, 0.56) 44%, rgba(5, 6, 6, 0.94)),
      linear-gradient(180deg, rgba(5, 6, 6, 0.05), rgba(5, 6, 6, 0.74));
  }

  .hero h1 {
    font-size: 48px;
  }

  .heroCopy {
    margin-right: 0;
  }

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

  .proofPanel,
  .detailPanel,
  .contactPanel {
    grid-template-columns: 1fr;
  }

  .intakeBox {
    border-left: 0;
    border-top: 1px solid rgba(255, 247, 231, 0.14);
    padding-left: 0;
    padding-top: 22px;
  }
}

@media (max-width: 720px) {
  .siteCanvas {
    width: 100%;
    padding: 0 0 34px;
  }

  .siteHeader {
    top: 0;
    display: block;
    min-height: 116px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 14px 16px;
  }

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

  .brandName {
    font-size: 20px;
  }

  .headerCta {
    position: absolute;
    top: 14px;
    right: 16px;
    min-height: 38px;
  }

  .navLinks {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    margin-top: 14px;
  }

  .navLink {
    white-space: nowrap;
    min-height: 38px;
    padding: 7px 10px;
  }

  .siteMain,
  .footer {
    padding-inline: 16px;
  }

  .hero {
    min-height: 540px;
    margin-top: 14px;
    padding: 32px 20px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.18), rgba(5, 6, 6, 0.88) 58%, rgba(5, 6, 6, 0.98)),
      linear-gradient(90deg, rgba(5, 6, 6, 0.1), rgba(5, 6, 6, 0.22));
  }

  .heroImage {
    inset: 0;
  }

  .heroImage img {
    animation-name: heroDriftMobile;
    object-position: 42% 38%;
  }

  .heroCopy {
    margin-left: 0;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 41px;
    line-height: 1;
  }

  .heroLead,
  .pageHero p:not(.eyebrow) {
    font-size: 16px;
  }

  .heroActions {
    gap: 10px;
    margin-top: 22px;
  }

  .heroActions .primaryButton,
  .heroActions .secondaryButton {
    width: 100%;
    justify-content: space-between;
  }

  .signalBand,
  .serviceGrid,
  .pipeline,
  .packageGrid {
    grid-template-columns: 1fr;
  }

  .signalBand {
    margin-top: 12px;
  }

  .sectionBlock,
  .packageBand {
    padding-top: 54px;
  }

  .sectionTitle {
    font-size: 30px;
  }

  .pageHero {
    padding: 52px 0 16px;
  }

  .pageHero h1 {
    font-size: 38px;
  }

  .serviceCard,
  .packageCard,
  .pipelineItem,
  .detailPanel,
  .contactPanel,
  .proofPanel,
  .cta,
  .contactForm {
    padding: 18px;
  }

  .proofPanel,
  .cta {
    margin-top: 54px;
  }

  .contactPanel h2 {
    font-size: 29px;
  }

  .footer {
    flex-direction: column;
    margin-top: 44px;
  }

  .footerLinks {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .siteMain,
  .footer {
    padding-inline: 12px;
  }

  .hero {
    min-height: 560px;
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .brandName {
    font-size: 18px;
  }

  .brandMark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
