:root {
  --ink: #101d1a;
  --muted: #5d6b67;
  --paper: #f5f3ed;
  --white: #fff;
  --accent: #d9ff43;
  --line: #d9ded9;
  --error: #a52b2b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.topbar {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; gap: 10px; align-items: center; text-decoration: none; font-family: "Instrument Sans", system-ui, sans-serif; font-weight: 700; letter-spacing: -.035em; }
.brand-mark { color: var(--accent); -webkit-text-stroke: 1px var(--ink); }
[data-company] { font-family: "Instrument Sans", system-ui, sans-serif; font-weight: 700; letter-spacing: -.035em; }
.top-cta { font-size: 14px; font-weight: 800; text-underline-offset: 5px; }
.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 620px;
  padding: 68px 0 76px;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.eyebrow { margin: 0 0 20px; font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 820px; margin: 0; font-size: clamp(52px, 7.3vw, 104px); line-height: .92; letter-spacing: -.065em; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 54px); line-height: 1; letter-spacing: -.045em; }
.lead { max-width: 690px; margin: 30px 0 28px; font-size: clamp(18px, 2vw, 24px); line-height: 1.45; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.chips span { padding: 9px 13px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 700; }
.primary-btn, .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 278px;
  padding: 19px 22px;
  border: 1px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.primary-btn:hover, .submit-btn:hover { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 var(--ink); }
.microcopy { margin: 14px 0 0; font-size: 12px; color: var(--muted); }

.hero-card { padding: 34px; background: var(--ink); color: var(--white); box-shadow: 16px 16px 0 var(--accent); }
.hero-card h2 { margin: 10px 0; font-size: 23px; letter-spacing: -.03em; }
.hero-card p { margin: 0; color: #b8c2bf; font-size: 14px; line-height: 1.6; }
.card-number { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.divider { height: 1px; margin: 30px 0; background: #34413d; }

.details { padding: 110px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; border-top: 1px solid var(--line); }
.check-list, .feature-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 18px 0 18px 38px; border-bottom: 1px solid var(--line); font-size: 17px; line-height: 1.5; }
.check-list li:first-child { border-top: 1px solid var(--line); }
.check-list li::before { content: "↗"; position: absolute; left: 4px; color: #6d7b11; font-weight: 800; }

.split { display: grid; grid-template-columns: 1fr 1fr; }
.panel { min-height: 540px; padding: 68px; }
.dark-panel { background: var(--ink); color: var(--white); }
.outline-panel { border: 1px solid var(--ink); border-left: 0; }
.light { color: var(--accent); }
.feature-list { margin-top: 50px; }
.feature-list li { padding: 18px 0; border-bottom: 1px solid #34413d; font-size: 17px; }
.compact { margin-top: 50px; }

.apply-section { padding: 120px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.apply-copy > p:not(.eyebrow) { max-width: 440px; margin: 26px 0; color: var(--muted); line-height: 1.65; }
.privacy-note { margin-top: 42px; padding: 18px 0 18px 20px; border-left: 3px solid var(--accent); display: grid; gap: 4px; font-size: 13px; }
.privacy-note span { color: var(--muted); }
.application-form { padding: 42px; background: var(--white); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; margin-bottom: 20px; font-size: 13px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid #c8d0cc;
  border-radius: 0;
  background: #fbfcfa;
  color: var(--ink);
  padding: 15px 16px;
  font: inherit;
  font-size: 15px;
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 2px var(--accent); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--error); }
.field-hint, .optional { color: var(--muted); font-size: 11px; font-weight: 500; }
.consent { grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 500; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.honeypot { position: absolute; left: -9999px; }
.submit-btn { width: 100%; }
.submit-btn:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 22px; margin: 14px 0 0; font-size: 13px; font-weight: 700; }
.form-status.error { color: var(--error); }
.form-status.success { color: #346000; }

footer { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 32px 0 48px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

@media (max-width: 800px) {
  .topbar, .section, footer { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding: 52px 0 80px; grid-template-columns: 1fr; gap: 48px; }
  h1 { font-size: clamp(48px, 15vw, 74px); }
  .hero-card { box-shadow: 8px 8px 0 var(--accent); }
  .details, .apply-section { padding: 78px 0; grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; }
  .panel { min-height: auto; padding: 48px 28px; }
  .outline-panel { border-left: 1px solid var(--ink); border-top: 0; }
  .application-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { gap: 20px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
