:root {
  --ink: #10100e;
  --muted: #5b574d;
  --paper: #f4eddc;
  --paper-strong: #fff7e8;
  --lime: #a7ff16;
  --orange: #ff970d;
  --red: #ff4e3f;
  --blue: #22c7ef;
  --line: #1a1916;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

body.is-locked {
  overflow: hidden;
}

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

button,
.cta-band a,
.button-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  background: var(--orange);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--line);
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.03em;
}

button:hover,
.cta-band a:hover,
.button-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--line);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

textarea {
  resize: vertical;
  line-height: 1.35;
}

input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-height: auto;
  accent-color: var(--lime);
}

.page-shell {
  min-height: 100vh;
}

.is-locked .stack-details,
.is-locked .audit-section,
.is-locked .launch-plan,
.is-locked .cta-band {
  display: none;
}

.email-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 16, 14, 0.72);
}

.email-gate[hidden] {
  display: none;
}

.gate-panel {
  width: min(100%, 540px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(18px, 4vw, 30px);
  background: var(--paper-strong);
  border: 5px solid var(--line);
  box-shadow: 12px 12px 0 var(--line);
  display: grid;
  gap: 14px;
}

.gate-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gate-panel p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
}

.gate-panel label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 56px);
  min-height: 92vh;
  background:
    radial-gradient(circle at 25% 20%, rgba(167, 255, 22, 0.16), transparent 28%),
    linear-gradient(135deg, #f8f0dd 0%, #f2e6cd 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 12px;
  background: var(--lime);
  border: 3px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.83;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 660px;
  margin: 22px 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.45;
  font-weight: 800;
}

.unlock-banner {
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--paper-strong);
  border: 3px solid var(--line);
  box-shadow: 7px 7px 0 var(--line);
}

.unlock-banner span {
  display: block;
  margin-bottom: 4px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0 var(--line);
}

.unlock-banner p,
.fine-print {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 800;
}

.poster-wrap {
  margin: 0;
}

.poster-wrap img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 5px solid var(--line);
  box-shadow: 12px 12px 0 var(--line);
  background: var(--paper);
}

.stack-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 5px solid var(--line);
  border-bottom: 5px solid var(--line);
}

.stack-strip article {
  min-height: 180px;
  padding: 20px;
  border-right: 4px solid var(--line);
}

.stack-strip article:nth-child(1),
.stack-strip article:nth-child(5) {
  background: var(--lime);
}

.stack-strip article:nth-child(2) {
  background: var(--orange);
}

.stack-strip article:nth-child(3) {
  background: var(--red);
}

.stack-strip article:nth-child(4) {
  background: var(--blue);
}

.stack-strip span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.stack-strip h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.stack-strip p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
}

.stack-details,
.audit-section,
.launch-plan,
.cta-band {
  padding: clamp(30px, 5vw, 68px) clamp(20px, 4vw, 56px);
}

.stack-details:focus {
  outline: none;
}

.section-head {
  max-width: 900px;
  margin-bottom: 26px;
}

.section-head h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.cta-band p {
  max-width: 760px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.45;
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  border: 5px solid var(--line);
}

.detail-card {
  min-height: 520px;
  padding: 22px;
  border-right: 4px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-card:last-child {
  border-right: 0;
}

.detail-card span {
  font-size: 1rem;
}

.detail-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.detail-card p,
.detail-card li,
.detail-card strong,
.audit-list label,
.launch-plan li {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.detail-lede {
  margin: 0;
  color: var(--line);
  font-size: 1rem;
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
}

.detail-card li {
  margin: 0 0 10px;
  line-height: 1.35;
}

.detail-card strong {
  margin-top: auto;
  line-height: 1.35;
}

.accent-lime {
  background: var(--lime);
}

.accent-orange {
  background: var(--orange);
}

.accent-red {
  background: var(--red);
}

.accent-blue {
  background: var(--blue);
}

.audit-section {
  background: var(--paper-strong);
  border-top: 5px solid var(--line);
  border-bottom: 5px solid var(--line);
}

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

.audit-list label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 3px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  line-height: 1.35;
}

.launch-plan {
  background: var(--paper);
}

.launch-plan ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 5px solid var(--line);
}

.launch-plan li {
  min-width: 0;
  min-height: 230px;
  padding: 18px;
  border-right: 4px solid var(--line);
  background: var(--paper-strong);
  line-height: 1.35;
}

.launch-plan li:nth-child(2n) {
  background: var(--blue);
}

.launch-plan li:nth-child(3n) {
  background: var(--orange);
}

.launch-plan li:last-child {
  border-right: 0;
  background: var(--lime);
}

.launch-plan span {
  display: block;
  margin-bottom: 12px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-band .eyebrow {
  color: var(--ink);
}

.cta-band p {
  color: #efe7d4;
}

.cta-band a {
  width: fit-content;
  margin-top: 8px;
  padding: 0 18px;
  background: var(--lime);
}

.for-hire-page {
  overflow-x: hidden;
}

.for-hire-shell {
  min-height: 100vh;
  background:
    linear-gradient(rgba(16, 16, 14, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 14, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px;
}

.for-hire-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: 92vh;
  padding: clamp(24px, 5vw, 64px);
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 199, 239, 0.22), transparent 24%),
    linear-gradient(135deg, #f8f0dd 0%, #f2e6cd 100%);
  border-bottom: 5px solid var(--line);
}

.for-hire-copy h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(3.4rem, 10vw, 9rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hire-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hire-signal-box {
  width: min(100%, 620px);
  margin-top: 24px;
  padding: 18px;
  background: var(--paper-strong);
  border: 4px solid var(--line);
  box-shadow: 8px 8px 0 var(--blue);
}

.hire-signal-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hire-signal-box p,
.packages-disclaimer,
.pricing-notes p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.4;
}

.button-link {
  padding: 0 18px;
}

.button-lime {
  background: var(--lime);
}

.button-paper {
  background: var(--paper-strong);
}

.hire-poster {
  margin: 0;
}

.hire-poster img {
  display: block;
  width: 100%;
  border: 5px solid var(--line);
  box-shadow: 12px 12px 0 var(--line);
  background: var(--paper);
}

.hire-marquee {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 5px solid var(--line);
}

.hire-marquee span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 4px solid var(--line);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  line-height: 0.9;
}

.hire-marquee span:nth-child(1),
.hire-marquee span:nth-child(5) {
  background: var(--lime);
}

.hire-marquee span:nth-child(2) {
  background: var(--orange);
}

.hire-marquee span:nth-child(3) {
  background: var(--red);
}

.hire-marquee span:nth-child(4) {
  background: var(--blue);
}

.hire-proof,
.hire-packages,
.hire-form-section {
  padding: clamp(30px, 5vw, 68px) clamp(20px, 4vw, 56px);
}

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

.trust-strip article,
.pricing-notes article {
  padding: 18px;
  background: #fff;
  border: 4px solid var(--line);
  box-shadow: 7px 7px 0 var(--line);
}

.trust-strip strong,
.pricing-notes h3,
.package-kicker {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.35;
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 5px solid var(--line);
}

.hire-card {
  min-height: 360px;
  padding: 22px;
  border-right: 4px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hire-card:last-child {
  border-right: 0;
}

.hire-card span,
.package-grid h3 {
  font-size: 1rem;
}

.hire-card h3,
.package-grid h3,
.hire-split h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.9;
}

.hire-card h3 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.hire-card p,
.hire-list p,
.package-grid p,
.hire-form label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.35;
}

.hire-card p {
  margin: auto 0 0;
  font-size: 1rem;
}

.hire-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(30px, 5vw, 68px) clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper);
  border-top: 5px solid var(--line);
  border-bottom: 5px solid var(--line);
}

.hire-split .eyebrow {
  color: var(--ink);
}

.hire-split h2 {
  max-width: 850px;
  font-size: clamp(2.8rem, 8vw, 7rem);
}

.hire-list {
  display: grid;
  gap: 14px;
}

.hire-list p {
  margin: 0;
  padding: 18px;
  background: var(--paper-strong);
  color: var(--ink);
  border: 3px solid var(--line);
  box-shadow: 6px 6px 0 var(--lime);
}

.hire-pricing,
.hire-packages {
  background: var(--paper-strong);
}

.hire-pricing {
  padding: clamp(30px, 5vw, 68px) clamp(20px, 4vw, 56px);
  border-bottom: 5px solid var(--line);
}

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

.pricing-notes h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 0.95;
}

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

.package-grid article {
  padding: 22px;
  background: #fff;
  border: 4px solid var(--line);
  box-shadow: 8px 8px 0 var(--line);
}

.package-grid article:nth-child(2) {
  box-shadow: 8px 8px 0 var(--orange);
}

.package-grid article:nth-child(3) {
  box-shadow: 8px 8px 0 var(--blue);
}

.package-grid h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.package-kicker {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.package-grid p {
  margin: 16px 0 0;
}

.package-note {
  padding-top: 10px;
  border-top: 2px solid var(--line);
}

.packages-disclaimer {
  margin-top: 18px;
  max-width: 760px;
}

.hire-form-section {
  background: var(--ink);
  color: var(--paper);
}

.hire-form-section .eyebrow {
  color: var(--ink);
}

.hire-form-section .section-head p:not(.eyebrow) {
  color: #efe7d4;
}

.hire-form {
  width: min(100%, 760px);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 30px);
  background: var(--paper-strong);
  color: var(--ink);
  border: 5px solid var(--line);
  box-shadow: 12px 12px 0 var(--lime);
}

.hire-form label {
  display: grid;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hire-form button {
  width: fit-content;
  min-width: 180px;
  background: var(--orange);
}

.hire-form .fine-print {
  color: var(--muted);
}

@media (max-width: 1200px) {
  .detail-grid,
  .launch-plan ol,
  .hire-grid,
  .trust-strip,
  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .launch-plan li,
  .hire-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 4px solid var(--line);
  }

  .detail-card:last-child,
  .launch-plan li:last-child,
  .hire-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .hero,
  .for-hire-hero,
  .hire-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .poster-wrap {
    order: -1;
  }

  .poster-wrap img {
    max-height: none;
  }

  .stack-strip,
  .audit-list,
  .hire-marquee,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .stack-strip article,
  .hire-marquee span {
    min-height: auto;
    border-right: 0;
    border-bottom: 4px solid var(--line);
  }

  .hire-poster {
    order: -1;
  }
}

@media (max-width: 520px) {
  .hero,
  .for-hire-hero,
  .stack-details,
  .audit-section,
  .launch-plan,
  .cta-band,
  .hire-proof,
  .hire-split,
  .hire-packages,
  .hire-form-section {
    padding-inline: 20px;
  }

  h1,
  .for-hire-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4.6rem);
  }

  .section-head h2,
  .cta-band h2,
  .gate-panel h2,
  .hire-split h2 {
    font-size: clamp(2rem, 13vw, 3.5rem);
  }

  .hire-actions {
    display: grid;
  }

  .button-link,
  .hire-form button {
    width: 100%;
  }
}
