:root {
  --ink: #181816;
  --paper: #f3efe5;
  --paper-light: #faf8f2;
  --orange: #ff5d38;
  --lime: #d7ff45;
  --blue: #4659ff;
  --line: rgba(24, 24, 22, 0.2);
  --light-line: rgba(255, 255, 255, 0.18);
  --muted: #716f68;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .05em; }

.site-header {
  width: min(1440px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 229, .94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; text-decoration: none; letter-spacing: -.03em; }
.brand-mark { width: 38px; aspect-ratio: 1; display: grid; place-items: center; color: var(--paper-light); background: var(--ink); font: 800 15px/1 ui-monospace, monospace; transform: rotate(-3deg); }
.brand-mark span { color: var(--orange); }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.site-header nav a { color: #4d4c47; font-size: 14px; font-weight: 700; text-decoration: none; }
.site-header nav a:hover { color: var(--orange); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  color: var(--paper-light);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; font-size: 14px; }
.button-primary { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; text-underline-offset: 5px; }
.text-link span { color: var(--orange); font-size: 24px; }

.hero {
  width: min(1440px, 100%);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 118px) clamp(20px, 5vw, 80px) clamp(46px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -210px;
  top: -210px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(24,24,22,.025), 0 0 0 140px rgba(24,24,22,.018);
}
.eyebrow { margin: 0 0 20px; color: var(--orange); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero .eyebrow { display: flex; align-items: center; gap: 10px; color: #55534d; }
.hero .eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,93,56,.14); }
.hero h1, .section h2, .manifesto h2, .pilot h2, .apply h2 {
  margin: 0;
  font-size: clamp(52px, 6.7vw, 108px);
  line-height: .91;
  letter-spacing: -.075em;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 760px; margin: 34px 0 0; color: #4d4c47; font-size: clamp(19px, 1.7vw, 25px); line-height: 1.45; letter-spacing: -.02em; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 68px; border-top: 1px solid var(--line); }
.hero-facts div { padding: 20px 14px 0 0; }
.hero-facts div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -.05em; }
.hero-facts span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.3; }

.profile-card { padding: 28px; color: var(--paper-light); background: var(--ink); border-radius: var(--radius); box-shadow: 22px 22px 0 var(--orange); transform: rotate(1deg); position: relative; z-index: 1; }
.profile-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; margin-bottom: 30px; }
.profile-head .mono { color: #9c9b93; font-size: 11px; }
.profile-head h2 { margin: 6px 0 0; font-size: 28px; letter-spacing: -.045em; }
.profile-status { padding: 7px 10px; color: var(--ink); background: var(--lime); border-radius: 100px; font: 700 10px/1 ui-monospace, monospace; }
.profile-item { padding: 15px 0; border-top: 1px solid var(--light-line); }
.profile-item > div:first-child { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; }
.profile-item span { color: #77766f; font: 12px/1 ui-monospace, monospace; }
.profile-item strong { font-size: 14px; }
.profile-item em { color: var(--lime); font: 700 12px/1 ui-monospace, monospace; font-style: normal; }
.meter { height: 5px; margin: 10px 0 0 37px; background: rgba(255,255,255,.12); overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--orange); }
.meter .level-25 { width: 25%; }
.meter .level-50 { width: 50%; }
.meter .level-75 { width: 75%; }
.profile-note { margin-top: 18px; padding: 18px; color: var(--ink); background: var(--paper-light); border-radius: 12px; }
.profile-note span { color: var(--orange); font: 800 10px/1 ui-monospace, monospace; text-transform: uppercase; }
.profile-note p { margin: 8px 0 0; font-size: 14px; font-weight: 750; line-height: 1.35; }

.section { width: min(1440px, 100%); margin: 0 auto; padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 80px); }
.section-dark { color: var(--paper-light); background: var(--ink); }
.manifesto { width: min(1440px, 100%); margin: 0 auto; padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 80px); display: grid; grid-template-columns: .25fr 1.25fr .5fr; gap: clamp(30px, 6vw, 90px); }
.manifesto-index { color: #77766f; font-size: 12px; }
.manifesto h2 { font-size: clamp(42px, 5vw, 76px); }
.manifesto > div p { max-width: 820px; margin: 30px 0 0; color: #bdbbb2; font-size: clamp(18px, 1.5vw, 23px); }
.manifesto aside { align-self: end; padding: 24px; border: 1px solid var(--light-line); border-radius: 16px; }
.manifesto aside > span { color: #8f8e87; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.manifesto ul { padding: 0; margin: 18px 0 24px; list-style: none; }
.manifesto li { padding: 7px 0; color: #bdbbb2; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.manifesto aside strong { color: var(--lime); }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { max-width: 850px; font-size: clamp(42px, 5.3vw, 78px); }
.section-heading > p { margin: 0; color: var(--muted); font-size: 19px; }
.skill-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.skill-card { grid-column: span 2; min-height: 350px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--paper-light); }
.skill-card:nth-child(4), .skill-card:nth-child(5) { grid-column: span 3; }
.skill-primary { background: var(--orange); }
.skill-dark { color: var(--paper-light); background: var(--blue); border-color: var(--blue); }
.skill-id { font-size: 11px; font-weight: 700; }
.skill-number { margin: 22px 0 auto; color: rgba(24,24,22,.18); font-size: 90px; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.skill-dark .skill-number { color: rgba(255,255,255,.18); }
.skill-card h3 { max-width: 360px; margin: 28px 0 10px; font-size: 27px; line-height: 1.04; letter-spacing: -.045em; }
.skill-card p { margin: 0; color: #5f5d57; font-size: 15px; }
.skill-dark p { color: rgba(255,255,255,.75); }
.skill-card footer { margin-top: 30px; padding-top: 16px; display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid currentColor; font-size: 11px; text-transform: uppercase; }
.skill-card footer span { opacity: .58; }
.skills-cta { margin-top: 30px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--paper-light); background: var(--ink); border-radius: 16px; }
.skills-cta p { margin: 0; color: #aaa89f; font-size: 13px; }

.method { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); }
.method-title { position: sticky; top: 130px; align-self: start; }
.method-title h2 { font-size: clamp(58px, 7vw, 104px); }
.method-steps article { min-height: 150px; padding: 25px 0; display: grid; grid-template-columns: 50px 1fr auto; gap: 24px; align-items: start; border-top: 1px solid var(--line); }
.method-steps article > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--paper-light); background: var(--ink); border-radius: 50%; font: 700 12px/1 ui-monospace, monospace; }
.method-steps h3 { margin: 0 0 8px; font-size: 27px; letter-spacing: -.04em; }
.method-steps p { max-width: 600px; margin: 0; color: var(--muted); }
.method-steps em { color: var(--orange); font: 700 11px/1 ui-monospace, monospace; font-style: normal; text-transform: uppercase; }

.pilot { width: min(1440px, 100%); margin: 0 auto; padding: clamp(80px, 10vw, 145px) clamp(20px, 5vw, 80px); }
.section-heading.light > p { color: #aaa89f; }
.pilot-track { counter-reset: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--light-line); border-radius: var(--radius); list-style: none; overflow: hidden; }
.pilot-track li { min-height: 290px; padding: 26px; display: flex; flex-direction: column; }
.pilot-track li + li { border-left: 1px solid var(--light-line); }
.pilot-track li > span { color: var(--lime); font: 700 12px/1 ui-monospace, monospace; }
.pilot-track li div { margin-top: auto; }
.pilot-track h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.05; letter-spacing: -.04em; }
.pilot-track p { margin: 0; color: #a7a59e; font-size: 14px; }
.pilot-result { margin-top: 30px; padding: 24px 28px; display: grid; grid-template-columns: 130px 1fr; gap: 28px; align-items: center; color: var(--ink); background: var(--lime); border-radius: 16px; }
.pilot-result span { font-size: 12px; }
.pilot-result p { max-width: 860px; margin: 0; font-size: 20px; font-weight: 750; }

.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-card { min-height: 480px; padding: clamp(30px, 4vw, 56px); border: 1px solid var(--ink); border-radius: var(--radius); }
.fit-yes { background: var(--paper-light); }
.fit-no { color: var(--paper-light); background: var(--blue); border-color: var(--blue); }
.fit-card h2 { max-width: 530px; font-size: clamp(42px, 4.4vw, 68px); }
.fit-card ul { margin: 48px 0 0; padding: 0; list-style: none; }
.fit-card li { padding: 13px 0 13px 30px; border-top: 1px solid currentColor; position: relative; }
.fit-card li::before { content: "+"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.fit-no li::before { content: "×"; color: var(--lime); }

.about { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.about-mark { width: min(440px, 100%); aspect-ratio: 1; display: grid; place-items: center; color: var(--paper-light); background: var(--orange); border-radius: 50%; font-size: clamp(90px, 12vw, 180px); font-weight: 950; letter-spacing: -.12em; transform: rotate(-6deg); box-shadow: 28px 16px 0 var(--ink); }
.about h2 { font-size: clamp(44px, 5vw, 76px); }
.about p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 19px; }
.about .text-link { margin-top: 16px; }

.apply { width: min(1440px, 100%); margin: 0 auto; padding: clamp(80px, 10vw, 145px) clamp(20px, 5vw, 80px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); }
.apply-copy { align-self: start; position: sticky; top: 130px; }
.apply h2 { font-size: clamp(50px, 5.5vw, 84px); }
.apply-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0; color: #aaa89f; font-size: 19px; }
.direct-contact { margin-top: 42px; display: grid; gap: 8px; }
.direct-contact span { margin-bottom: 4px; color: #77766f; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.direct-contact a { width: fit-content; color: var(--lime); font-weight: 750; text-underline-offset: 4px; }
.apply-form { padding: clamp(26px, 4vw, 48px); color: var(--ink); background: var(--paper-light); border-radius: var(--radius); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.apply-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 800; }
.apply-form input, .apply-form textarea, .apply-form select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bdb9af; border-radius: 10px; color: var(--ink); background: #fff; outline: none; }
.apply-form textarea { resize: vertical; }
.apply-form input:focus, .apply-form textarea:focus, .apply-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(70,89,255,.12); }
.consent { grid-template-columns: 20px 1fr; align-items: start; font-weight: 500 !important; line-height: 1.35; }
.consent input { width: 18px; min-height: 18px; margin: 1px 0 0; }
.form-submit { width: 100%; margin-top: 6px; border-color: var(--ink); }
.form-submit:disabled { opacity: .65; cursor: progress; transform: none; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-status { display: none; margin-bottom: 18px; padding: 14px 16px; border-radius: 10px; background: #e7f8ca; font-weight: 700; }
.form-status.visible { display: block; }
.form-status.error { background: #ffe0d8; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.site-footer { width: min(1440px, 100%); margin: 0 auto; padding: 32px clamp(20px, 5vw, 80px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); }
.site-footer > p { color: var(--muted); text-align: center; }
.site-footer > div { display: flex; justify-content: flex-end; gap: 22px; color: var(--muted); font-size: 13px; }

.simple-page { min-height: 100vh; padding: 40px 20px 90px; }
.simple-shell { width: min(800px, 100%); margin: 0 auto; }
.simple-shell .brand { margin-bottom: 70px; }
.simple-shell h1 { margin: 0 0 28px; font-size: clamp(46px, 8vw, 82px); line-height: .95; letter-spacing: -.065em; }
.simple-shell h2 { margin-top: 44px; font-size: 26px; letter-spacing: -.035em; }
.simple-shell p, .simple-shell li { color: #55534d; }
.simple-actions { margin-top: 36px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .profile-card { max-width: 680px; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto aside { max-width: 520px; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .skill-card { grid-column: span 3; }
  .skill-card:nth-child(5) { grid-column: 2 / span 4; }
  .method { grid-template-columns: 1fr; }
  .method-title, .apply-copy { position: static; }
  .pilot-track { grid-template-columns: 1fr 1fr; }
  .pilot-track li:nth-child(3) { border-left: 0; border-top: 1px solid var(--light-line); }
  .pilot-track li:nth-child(4) { border-top: 1px solid var(--light-line); }
  .apply { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { min-height: 68px; padding-top: 10px; padding-bottom: 10px; }
  .brand-mark { width: 34px; }
  .site-header > .button { min-height: 38px; padding: 0 16px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div, .hero-facts div + div { padding: 14px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .profile-card { padding: 20px; box-shadow: 10px 12px 0 var(--orange); }
  .profile-head { flex-direction: column; }
  .manifesto h2, .section-heading h2, .method-title h2, .fit-card h2, .about h2, .apply h2 { font-size: clamp(42px, 13vw, 62px); }
  .skill-grid { grid-template-columns: 1fr; }
  .skill-card, .skill-card:nth-child(4), .skill-card:nth-child(5) { grid-column: auto; min-height: 320px; }
  .skills-cta { align-items: flex-start; flex-direction: column; }
  .method-steps article { grid-template-columns: 44px 1fr; }
  .method-steps em { grid-column: 2; }
  .pilot-track { grid-template-columns: 1fr; }
  .pilot-track li + li { border-left: 0; border-top: 1px solid var(--light-line); }
  .pilot-result { grid-template-columns: 1fr; }
  .fit { grid-template-columns: 1fr; }
  .fit-card { min-height: 0; }
  .about { grid-template-columns: 1fr; }
  .about-mark { max-width: 280px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .site-footer > p { text-align: left; }
  .site-footer > div { justify-content: flex-start; flex-wrap: wrap; }
}

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