:root {
  --owg-black: #000000;
  --owg-charcoal: #241f1c;
  --owg-yellow: #ffdd55;
  --owg-red: #d40000;
  --owg-white: #ffffff;
  --owg-paper: #f4f2ee;
  --owg-muted: #9f9991;
  --owg-line: rgba(255, 255, 255, 0.14);
  --owg-line-strong: rgba(255, 255, 255, 0.28);
  --owg-dark-line: rgba(0, 0, 0, 0.12);
  --owg-dark-line-strong: rgba(0, 0, 0, 0.24);
  --font-display: 'Space Grotesk', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --radius: 2px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--owg-black);
  color: var(--owg-white);
  font-family: var(--font-body);
  line-height: 1.48;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lock-scroll {
  overflow: hidden;
}

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

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

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

p,
ul,
ol {
  margin-top: 0;
}

::selection {
  background: var(--owg-yellow);
  color: var(--owg-black);
}

.page-shell {
  background: var(--owg-black);
  min-height: 100vh;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--owg-line);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}

.mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.08em;
  font-size: 34px;
  line-height: 1;
  border: 2px solid var(--owg-white);
  padding: 4px 8px 5px;
  transform: skewX(-8deg);
}

.brand-name {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--owg-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.nav-links a:hover {
  color: var(--owg-white);
}

.nav-cta {
  border: 1px solid var(--owg-white);
  padding: 12px 18px;
  color: var(--owg-white) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--owg-white);
  color: var(--owg-black) !important;
}

/* HERO */
.hero {
  min-height: 780px;
  display: grid;
  align-items: stretch;
  background: linear-gradient(
    90deg,
    var(--owg-black) 0%,
    var(--owg-black) 55%,
    var(--owg-yellow) 55%,
    var(--owg-yellow) 100%
  );
  border-bottom: 1px solid var(--owg-line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  min-height: 780px;
}

.hero-copy {
  padding: 108px 56px 88px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.kicker,
.section-kicker {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  color: var(--owg-yellow);
  font-size: 13px;
  letter-spacing: 0.13em;
  margin: 0 0 24px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 770px;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 700;
}

.hero-sub {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 2vw, 22px);
  margin: 34px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

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

.button-secondary {
  color: var(--owg-white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button-secondary:hover {
  border-color: var(--owg-white);
}

.button-yellow {
  background: var(--owg-yellow);
  color: var(--owg-black);
  border-color: var(--owg-yellow);
}

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

.hero-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  max-width: 560px;
  margin-top: 44px;
}

.thesis-panel {
  color: var(--owg-black);
  padding: 110px 0 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 30px;
}

.panel-question {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
  font-size: clamp(46px, 5vw, 78px);
  max-width: 430px;
}

.panel-copy {
  max-width: 420px;
  font-size: 19px;
  line-height: 1.34;
  margin-top: 32px;
}

.panel-list {
  margin-top: 50px;
  border-top: 2px solid rgba(0, 0, 0, 0.24);
}

.panel-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* LONG-FORM LETTER */
.letter {
  background: var(--owg-paper);
  color: var(--owg-black);
  padding: 100px 0;
}

.letter-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 720px);
  gap: 80px;
  align-items: start;
}

.side-rail {
  position: sticky;
  top: 108px;
  border-left: 4px solid var(--owg-red);
  padding-left: 20px;
}

.side-rail .rail-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.side-rail p {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
}

.rail-nav {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rail-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--owg-dark-line);
  color: rgba(0, 0, 0, 0.72);
}

.rail-nav a:hover {
  color: var(--owg-black);
}

.content-section,
.section {
  padding: 0 0 78px;
  border-bottom: 1px solid var(--owg-dark-line);
  margin-bottom: 78px;
}

.content-section:last-child,
.section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.kicker {
  color: var(--owg-red);
  margin-bottom: 18px;
}

.content-section h2,
.section h2 {
  font-size: clamp(38px, 4.5vw, 62px);
  max-width: 770px;
  margin-bottom: 28px;
}

.content-section h3,
.section h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 34px 0 18px;
}

.content-section p,
.section p {
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.78);
}

.content-section p.lead,
.section p.lead {
  font-size: 26px;
  line-height: 1.35;
  color: var(--owg-black);
  margin-bottom: 34px;
}

.tight-lines {
  margin: 32px 0;
  border-top: 1px solid var(--owg-dark-line);
  border-bottom: 1px solid var(--owg-dark-line);
}

.tight-lines p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--owg-dark-line);
  font-size: 22px;
  color: var(--owg-black);
}

.tight-lines p:last-child {
  border-bottom: 0;
}

.question-card {
  margin: 38px 0;
  background: var(--owg-black);
  color: var(--owg-white);
  padding: 34px;
  border-radius: var(--radius);
}

.question-card.yellow {
  background: var(--owg-yellow);
  color: var(--owg-black);
}

.question-card .small {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  opacity: 0.72;
}

.question-card .big {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 610px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.box {
  border: 1px solid var(--owg-dark-line);
  padding: 26px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
}

.box h3 {
  margin: 0 0 18px;
  font-size: 30px;
}

.box ul,
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.box li,
.checklist li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--owg-dark-line);
  font-size: 17px;
  color: rgba(0, 0, 0, 0.78);
}

.box li:last-child,
.checklist li:last-child {
  border-bottom: 0;
}

.box li::before,
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 9px;
  height: 9px;
  background: var(--owg-black);
}

.box.bad li::before {
  background: var(--owg-red);
}

.box.good li::before {
  background: var(--owg-yellow);
  border: 1px solid var(--owg-black);
}

.inspect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--owg-dark-line);
  margin-top: 34px;
  border: 1px solid var(--owg-dark-line);
}

.inspect-item {
  background: var(--owg-paper);
  padding: 24px;
  min-height: 140px;
}

.inspect-item strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 18px;
}

.inspect-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.quote-strip {
  margin: 42px 0;
  padding: 36px 0;
  border-top: 4px solid var(--owg-black);
  border-bottom: 1px solid var(--owg-dark-line);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  font-size: clamp(34px, 5vw, 64px);
}

/* OREN BOUNDARY SECTION */
.boundary-section {
  position: relative;
  background: var(--owg-charcoal);
  color: var(--owg-white);
  padding: 64px;
  margin: 0 0 78px;
  border-bottom: 0;
  border-top: 8px solid var(--owg-yellow);
  border-radius: var(--radius);
}

.boundary-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.boundary-section .section-kicker,
.boundary-section .kicker {
  color: var(--owg-yellow);
  margin-bottom: 22px;
}

.boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.boundary-main h2,
.boundary-section h2 {
  color: var(--owg-white);
  max-width: 780px;
}

.boundary-main p,
.boundary-section p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

.boundary-main p.lead,
.boundary-section p.lead {
  color: var(--owg-white);
}

.boundary-card {
  position: sticky;
  top: 110px;
  background: var(--owg-yellow);
  color: var(--owg-black);
  padding: 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
}

.boundary-card-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boundary-card-statement {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin: 0;
  color: var(--owg-black) !important;
}

.no-list-wrap,
.separate-process {
  margin-top: 56px;
  max-width: 980px;
}

.no-list-wrap h3,
.separate-process h3 {
  color: var(--owg-white);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  margin: 0 0 24px;
}

.no-list,
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.no-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
}

.no-list li,
.process-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.no-list li::before {
  content: "NO";
  display: inline-block;
  color: var(--owg-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-right: 12px;
}

.process-list li::before {
  content: "—";
  color: var(--owg-yellow);
  margin-right: 12px;
}

.final-line {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px) !important;
  line-height: 1 !important;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--owg-white) !important;
  max-width: 820px !important;
}

/* PUBLIC INFORMATION / OPTIONAL DISCLOSURE BLOCK */
.info-boundary,
.public-info-box {
  margin: 38px 0;
  padding: 32px;
  background: rgba(0, 0, 0, 0.04);
  border-left: 6px solid var(--owg-yellow);
  border-top: 1px solid var(--owg-dark-line);
  border-bottom: 1px solid var(--owg-dark-line);
}

.info-boundary h3,
.public-info-box h3 {
  margin-top: 0;
}

/* FORM */
.form-section {
  background: var(--owg-black);
  color: var(--owg-white);
  padding: 100px 0;
  border-top: 1px solid var(--owg-line);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.form-copy h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  margin-bottom: 28px;
}

.form-copy p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

form {
  background: var(--owg-charcoal);
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.74);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b0b0b;
  color: var(--owg-white);
  min-height: 52px;
  padding: 14px 14px;
  font: 16px var(--font-body);
  border-radius: var(--radius);
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--owg-yellow);
}

.field {
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.microcopy {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  max-width: 330px;
  margin: 0;
}

.checkbox-field,
.acknowledgement {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 24px 0 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
}

.checkbox-field input[type="checkbox"],
.acknowledgement input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--owg-yellow);
}

.checkbox-field label,
.acknowledgement label {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

/* FOOTER */
.footer {
  background: var(--owg-charcoal);
  color: rgba(255, 255, 255, 0.64);
  padding: 46px 0;
  border-top: 1px solid var(--owg-line);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.footer strong {
  color: var(--owg-white);
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer p {
  margin: 0;
  max-width: 850px;
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--owg-yellow);
  outline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    background: var(--owg-black);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 76px 0 64px;
  }

  .thesis-panel {
    background: var(--owg-yellow);
    padding: 52px 32px;
    margin: 0 -20px;
  }

  .letter-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .side-rail {
    position: static;
  }

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

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

  .boundary-section {
    padding: 48px 32px;
  }

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

  .boundary-card {
    position: static;
    min-height: 220px;
  }
}

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

  .nav-inner {
    height: 68px;
  }

  .brand {
    min-width: auto;
  }

  .mark {
    font-size: 28px;
  }

  .brand-name {
    font-size: 10px;
  }

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

  h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .letter,
  .form-section {
    padding: 70px 0;
  }

  .content-section,
  .section {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }

  .content-section p,
  .section p {
    font-size: 18px;
  }

  .content-section p.lead,
  .section p.lead {
    font-size: 22px;
  }

  .two-col,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .boundary-section {
    padding: 36px 22px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .no-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  form {
    padding: 24px;
  }
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--owg-white, #ffffff);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  background: var(--owg-yellow, #ffdd55);
  color: var(--owg-black, #000000);
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* HEADER CTA — APPLY TO JOIN */
.nav .top-nav a.nav-cta,
.nav .top-nav a.nav-cta:link,
.nav .top-nav a.nav-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;

  background: #d40000 !important;
  border: 1px solid #d40000 !important;
  color: #ffffff !important;

  font-family: var(--font-body, Inter, sans-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav .top-nav a.nav-cta:hover,
.nav .top-nav a.nav-cta:focus {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
}

@media (max-width: 640px) {
  .nav .top-nav a.nav-cta {
    min-height: 36px;
    padding: 0 14px;
    font-size: 11px;
  }
}

.form-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin: 28px 0 32px;
  padding: 20px;
  background: rgba(255, 221, 85, 0.10);
  border: 1px solid rgba(255, 221, 85, 0.45);
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--owg-red, #d40000);
  cursor: pointer;
}

.form-check label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--owg-white, #ffffff);
  cursor: pointer;
}

.form-check label strong {
  color: var(--owg-yellow, #ffdd55);
}

@media (max-width: 640px) {
  .form-check {
    grid-template-columns: 20px 1fr;
    padding: 18px;
  }

  .form-check label {
    font-size: 13px;
  }
}

/* APPLICATION SECTION — TWO COLUMN LAYOUT */
.apply-section {
  background: var(--owg-black, #000000);
  color: var(--owg-white, #ffffff);
}

.apply-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.apply-copy {
  max-width: 560px;
  position: sticky;
  top: 120px;
}

.apply-copy h2 {
  margin: 0 0 24px;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.apply-copy .lead {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  margin-bottom: 24px;
}

.application-form {
  background: var(--owg-charcoal, #241f1c);
  border-top: 8px solid var(--owg-yellow, #ffdd55);
  padding: clamp(24px, 4vw, 48px);
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--owg-yellow, #ffdd55);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 14px 16px;
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 16px;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--owg-yellow, #ffdd55);
  outline-offset: 2px;
  border-color: var(--owg-yellow, #ffdd55);
}

.form-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin: 28px 0 32px;
  padding: 20px;
  background: rgba(255, 221, 85, 0.10);
  border: 1px solid rgba(255, 221, 85, 0.45);
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--owg-red, #d40000);
  cursor: pointer;
}

.form-check label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--owg-white, #ffffff);
  cursor: pointer;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  background: var(--owg-red, #d40000);
  border: 1px solid var(--owg-red, #d40000);
  color: #ffffff;
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-button:hover,
.submit-button:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.72;
}

/* MOBILE STACK */
@media (max-width: 860px) {
  .apply-grid {
    grid-template-columns: 1fr !important;
  }

  .apply-copy {
    position: static;
    max-width: none;
  }

  .application-form {
    padding: 24px;
  }


/* HERO YELLOW PANEL — INSPECTION LIST */
.hero-panel .inspection-list,
.panel-list.inspection-list {
  display: grid;
  gap: 0;
  margin-top: clamp(48px, 10vw, 140px);
  border-top: 1px solid rgba(0, 0, 0, 0.24);
}

.hero-panel .inspection-list div,
.panel-list.inspection-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.hero-panel .inspection-list span:first-child,
.panel-list.inspection-list span:first-child {
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel .inspection-list span:last-child,
.panel-list.inspection-list span:last-child {
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.thesis-panel {
  justify-content: flex-start !important;
  gap: 34px;
}

.thesis-panel .inspection-list {
  margin-top: 0 !important;
}

/* FIX HERO THESIS PANEL SPACING */
.hero .thesis-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 34px !important;
}

.hero .thesis-panel > div:first-child {
  margin-bottom: 0 !important;
}

.hero .thesis-panel .panel-copy {
  margin-bottom: 0 !important;
}

.hero .thesis-panel .panel-list,
.hero .thesis-panel .inspection-list,
.hero .thesis-panel .panel-list.inspection-list {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* TIGHTEN SPACE BETWEEN HERO PARAGRAPH AND INSPECTION LIST */
.thesis-panel .panel-copy {
  margin-bottom: 22px !important;
  line-height: 1.22 !important;
}

.thesis-panel .panel-list.inspection-list {
  margin-top: 0 !important;
}
