:root {
  --bg: #fbfbfc;
  --bg-muted: #f6f7f9;
  --ink: #14161a;
  --ink-soft: #5a6069;
  --ink-faint: #8a9099;
  --ink-ghost: #9aa0a8;
  --line: rgba(20, 22, 26, 0.09);
  --line-strong: rgba(20, 22, 26, 0.16);
  --surface: #ffffff;
  --surface-dark: #14161a;
  --surface-dark-raised: #191b20;
  --text-on-dark: #f2f3f5;
  --muted-on-dark: #a7adb6;
  --faint-on-dark: #c7ccd3;
  --accent: #3457d5;
  --accent-soft: #d7deff;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 7px;
  --radius-lg: 12px;
  --max: 1200px;
  --pad: clamp(20px, 4vw, 32px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 480px at 12% -10%, rgba(52, 87, 213, 0.07), transparent 60%),
    radial-gradient(900px 420px at 92% 8%, rgba(20, 22, 26, 0.04), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent);
}

::selection {
  background: var(--accent-soft);
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
}

h1,
h2 {
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

.lead {
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  color: inherit;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: #23262c;
  color: var(--bg);
}

.btn-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-accent {
  background: var(--accent);
  color: #0b0c0f;
}

.btn-accent:hover {
  background: #2c4bc0;
  color: #0b0c0f;
}

.btn-ghost-light {
  border-color: rgba(242, 243, 245, 0.25);
  color: var(--text-on-dark);
  background: transparent;
}

.btn-ghost-light:hover {
  border-color: rgba(242, 243, 245, 0.55);
  color: var(--text-on-dark);
}

.btn-sm {
  font-size: 14px;
  padding: 11px 22px;
}

.btn-nav {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
}

.btn-nav:hover {
  background: #23262c;
  color: var(--bg);
}

/* —— Brand mark —— */
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: 9px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 8px 10px;
  gap: 4px;
  flex-shrink: 0;
}

.brand-mark > .chevron {
  color: var(--text-on-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.brand-mark > .cursor {
  width: 10px;
  height: 2.5px;
  background: var(--accent);
  animation: blink 1.2s steps(1) infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: 19px;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  text-transform: uppercase;
  line-height: 1;
}

.brand-text:has(.brand-name:only-child) {
  justify-content: center;
}

.brand-sm .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  padding: 0 6px 8px;
  gap: 3px;
}

.brand-sm .brand-mark > .chevron {
  font-size: 11px;
}

.brand-sm .brand-mark > .cursor {
  width: 8px;
  height: 2px;
}

.brand-sm .brand-name {
  font-size: 15px;
}

.brand-sm .brand-sub {
  letter-spacing: 0.14em;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0.2;
  }
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.btn-nav) {
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a:not(.btn-nav):hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

/* —— Hero —— */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 72px;
}

.hero h1 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lead {
  font-size: 19px;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-signals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 520px;
}

.hero-signals li {
  padding: 16px 18px 0 0;
}

.hero-signals li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-signals strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}

.hero-signals span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.console {
  border: 1px solid rgba(20, 22, 26, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(20, 22, 26, 0.08);
  overflow: hidden;
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(20, 22, 26, 0.08);
  background: var(--bg-muted);
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6d9de;
}

.console-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-left: 8px;
}

.console-body {
  padding: 20px;
}

.console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.console-head strong {
  font-size: 13px;
  font-weight: 600;
}

.console-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}

.sprint {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.sprint i {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(20, 22, 26, 0.1);
}

.sprint i.done {
  background: var(--accent);
}

.task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(20, 22, 26, 0.07);
}

.task-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
}

.task-check.filled {
  background: var(--accent);
}

.task-check.open {
  border-color: rgba(20, 22, 26, 0.25);
}

.task-name {
  font-size: 13px;
  flex: 1;
}

.task-name.muted {
  color: var(--ink-faint);
}

.task-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
}

.mentor-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--bg-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mentor-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.mentor-note strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.mentor-note p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* —— Logo strip —— */
.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-muted);
}

.logo-strip .wrap {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.logo-strip-names {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: center;
}

.logo-strip-names span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-ghost);
}

/* —— Sections —— */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-intro h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-intro .lead {
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(20, 22, 26, 0.1);
  border: 1px solid rgba(20, 22, 26, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  background: var(--bg);
  padding: 30px 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
}

.step h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* —— Tracks —— */
.tracks {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

.tracks-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}

.tracks-head .section-intro {
  margin-bottom: 0;
  max-width: 600px;
}

.tracks-head h2 {
  margin-bottom: 0;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.track {
  border: 1px solid rgba(242, 243, 245, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface-dark-raised);
}

.track-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 20px;
}

.track h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.track > p {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.6;
  margin: 0 0 22px;
}

.track-items {
  border-top: 1px solid rgba(242, 243, 245, 0.12);
  padding-top: 16px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.track-items li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--faint-on-dark);
}

.track-items li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* —— Features —— */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  display: block;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* —— Portfolio —— */
.portfolio-empty {
  max-width: 640px;
  padding: 36px 0 8px;
  border-top: 1px solid var(--line);
}

.portfolio-empty p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.portfolio-empty a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portfolio-empty a:hover {
  color: var(--ink);
}

/* —— Careers —— */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.careers-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.careers-copy h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.careers-copy > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.careers-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.careers-points li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.careers-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 720px) {
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* —— Evaluation —— */
.eval-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.eval-card {
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.eval-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eval-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.eval-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.eval-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.eval-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink);
}

.eval-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .eval-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Outcomes —— */
.outcomes {
  border-top: 1px solid var(--line);
  background: var(--bg-muted);
}

.outcomes .wrap {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.outcomes h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.outcomes .lead {
  font-size: 16px;
  line-height: 1.6;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(20, 22, 26, 0.1);
  border: 1px solid rgba(20, 22, 26, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-cell {
  background: var(--bg);
  padding: 30px 28px;
}

.stat-cell strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--accent);
}

.stat-cell span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* —— Quote —— */
.quote {
  max-width: 1000px;
  margin: 0 auto;
  padding: 96px var(--pad);
  text-align: center;
}

.quote blockquote {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 32px;
  text-wrap: balance;
}

.quote-person {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8ebf2, #cfd5e0);
}

.quote-person strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.quote-person span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: left;
}

/* —— FAQ —— */
.faq {
  border-top: 1px solid var(--line);
}

.faq .wrap {
  max-width: 900px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.faq h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 44px;
}

.faq-item {
  border-top: 1px solid rgba(20, 22, 26, 0.1);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(20, 22, 26, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.faq-q span:first-child {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-sign {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.faq-a {
  display: none;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 660px;
}

.faq-item.open .faq-a {
  display: block;
}

/* —— CTA / Apply form —— */
.cta {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

.cta .wrap {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cta-intro {
  text-align: center;
  margin-bottom: 48px;
}

.cta .eyebrow {
  margin-bottom: 22px;
}

.cta h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 auto 22px;
  max-width: 820px;
}

.cta .lead {
  font-size: 18px;
  color: var(--muted-on-dark);
  margin: 0 auto;
  max-width: 560px;
}

.apply-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row .field {
  margin-bottom: 0;
}

.field span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text-on-dark);
  background: rgba(242, 243, 245, 0.06);
  border: 1px solid rgba(242, 243, 245, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(242, 243, 245, 0.35);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted-on-dark) 50%),
    linear-gradient(135deg, var(--muted-on-dark) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.field select option {
  color: var(--ink);
  background: var(--bg);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(242, 243, 245, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(52, 87, 213, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.form-alert[hidden] {
  display: none;
}

.form-alert.success {
  background: rgba(46, 160, 110, 0.18);
  border: 1px solid rgba(46, 160, 110, 0.4);
  color: #b8f0d2;
}

.form-alert.error {
  background: rgba(200, 70, 70, 0.18);
  border: 1px solid rgba(200, 70, 70, 0.4);
  color: #f3b4b4;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.careers-forms {
  margin-top: 56px;
  display: grid;
  gap: 48px;
}

.careers-forms h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  scroll-margin-top: 88px;
}

/* —— Modals —— */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--pad);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 26, 0.55);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(20, 22, 26, 0.28);
  padding: 32px 28px 28px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
}

.modal-close:hover {
  color: var(--ink);
  background: rgba(20, 22, 26, 0.06);
}

.modal-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.modal-dialog .apply-form {
  max-width: none;
  margin: 0;
}

.modal-dialog .apply-form h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 36px 22px 0;
}

body.modal-open {
  overflow: hidden;
}

.apply-form.form-light .field span {
  color: var(--ink-faint);
}

.apply-form.form-light .field input,
.apply-form.form-light .field select,
.apply-form.form-light .field textarea {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(20, 22, 26, 0.14);
}

.apply-form.form-light .field input::placeholder,
.apply-form.form-light .field textarea::placeholder {
  color: var(--ink-ghost);
}

.apply-form.form-light .field input:hover,
.apply-form.form-light .field select:hover,
.apply-form.form-light .field textarea:hover {
  border-color: rgba(20, 22, 26, 0.28);
}

.apply-form.form-light .field input:focus,
.apply-form.form-light .field select:focus,
.apply-form.form-light .field textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

.apply-form.form-light .form-alert.success {
  background: rgba(46, 160, 110, 0.1);
  border: 1px solid rgba(46, 160, 110, 0.28);
  color: #1a6b45;
}

.apply-form.form-light .form-alert.error {
  background: rgba(200, 70, 70, 0.08);
  border: 1px solid rgba(200, 70, 70, 0.28);
  color: #8f2a2a;
}

/* —— Footer —— */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.console {
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 180ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  animation: rise 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 251, 252, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .nav-links .btn-nav {
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .track-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .outcomes .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 720px) {
  .steps,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-signals {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-signals li {
    padding: 14px 0 0;
  }

  .hero-signals li + li {
    padding-left: 0;
    padding-top: 14px;
    margin-top: 14px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .brand-sub {
    max-width: 160px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cta .wrap {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .console,
  .hero-copy,
  .brand-mark > .cursor,
  .btn {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
