:root {
  color-scheme: light;
  --white: #fff;
  --ink: #172125;
  --muted: #586368;
  --blue: #1976f3;
  --blue-action: #146deb;
  --blue-dark: #1261ca;
  --teal: #087f76;
  --border: #dfe6e8;
  --surface: #f6f8f9;
  --mint: #f0f7f5;
  --radius: 6px;
  --content-width: 1120px;
  --section-space: 100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.6; letter-spacing: 0; -webkit-font-smoothing: antialiased; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p, h1, h2, h3, h4 { margin: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
button, a { touch-action: manipulation; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; border-radius: 3px; }
[hidden] { display: none !important; }
.container { width: min(var(--content-width), calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 20px; background: var(--ink); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--border); background: var(--white); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-block; flex-shrink: 0; }
.brand img { width: 155px; }
.navigation { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; }
.navigation > a:not(.button), .footer-nav a { transition: color 160ms; }
.navigation > a:not(.button):hover, .footer-nav a:hover { color: var(--blue-dark); }
.navigation > .button { margin-left: 12px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 28px; padding: 12px 24px; background: var(--blue-action); border: 1px solid transparent; border-radius: var(--radius); color: white; font-size: 15px; font-weight: 600; line-height: 1.4; transition: background 180ms, box-shadow 180ms, transform 180ms; }
.button:hover { background: var(--blue-dark); box-shadow: 0 4px 12px #1976f31a; transform: translateY(-2px); }
.button span, .text-link span { font-size: 20px; line-height: 1; }
.button-small { min-height: 42px; padding: 10px 17px; gap: 22px; font-size: 14px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 16px; font-size: 14px; font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link:hover { color: var(--blue-dark); text-decoration: underline; }
.menu-toggle { display: none; }

.hero { padding: 64px 0 46px; }
.hero-inner { text-align: center; }
.status-label { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 12px; color: var(--muted); }
.status-dot { width: 6px; height: 6px; display: inline-block; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
h1 { margin-top: 25px; font-size: 62px; line-height: 1.13; font-weight: 650; }
h1 > span { color: var(--blue); }
.hero-description { max-width: 545px; margin: 23px auto 0; font-size: 17px; line-height: 1.75; color: var(--muted); }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 28px; }
.hero-journey { position: relative; max-width: 840px; margin: 48px auto 0; }
.hero-stages { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); padding: 0; margin: 0; list-style: none; }
.hero-stages li { position: relative; min-width: 0; --node-delay: 0s; --line-delay: .85s; }
.hero-stages li:nth-child(2) { --node-delay: 1.35s; --line-delay: 2.6s; }
.hero-stages li:nth-child(3) { --node-delay: 3.1s; --line-delay: 5.15s; }
.hero-stages li:nth-child(4) { --node-delay: 5.65s; --line-delay: 6.65s; }
.hero-stages li:nth-child(5) { --node-delay: 7.15s; }
.stage-node { display: flex; flex-direction: column; align-items: center; transform-origin: center 28px; }
.stage-symbol { position: relative; width: 56px; height: 56px; display: grid; place-items: center; background: #f0f6ff; border: 1px solid #dbe8fb; border-radius: 8px; color: var(--blue-dark); }
.stage-symbol svg, .journey-micro svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.stage-symbol-final { color: var(--teal); background: #edf7f3; border-color: #d5e9e1; }
.stage-name { margin-top: 13px; font-size: 14px; font-weight: 600; }
.journey-connector { position: absolute; top: 27px; left: calc(50% + 38px); width: calc(100% - 76px); height: 2px; overflow: visible; color: var(--blue); }
/* The 100-unit SVG cross-axis maps to 2px, keeping these strokes 1.25px thin. */
.journey-connector path { fill: none; stroke: currentColor; stroke-width: 62.5; stroke-dasharray: 1; stroke-dashoffset: 0; }
.journey-connector .connector-vertical { display: none; }
.hero-stages li:nth-child(4) .journey-connector { color: var(--teal); }
.journey-context { position: relative; height: 132px; margin-top: 13px; pointer-events: none; }
.journey-micro { --micro-x: -50%; position: absolute; top: 0; left: var(--micro-left); z-index: 2; visibility: hidden; opacity: 0; transform: translate(var(--micro-x), 0); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 3px 12px #17212508; color: var(--ink); text-align: left; }
.journey-micro svg { width: 16px; height: 16px; flex-shrink: 0; }
.journey-status { display: flex; align-items: center; gap: 8px; width: max-content; padding: 8px 11px; color: var(--teal); font-size: 11px; font-weight: 600; }
.applied-status { --micro-left: 10%; }
.invitation-card { --micro-left: 30%; width: 194px; padding: 12px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.schedule-card { --micro-left: 50%; width: 220px; min-height: 120px; padding: 12px; color: var(--muted); font-size: 11px; }
.interview-card { --micro-left: 70%; width: 190px; padding: 12px; color: var(--muted); font-size: 11px; }
.decision-status { --micro-left: 90%; }
.micro-heading { display: flex; align-items: center; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 600; }
.micro-team { margin-top: 9px; color: var(--ink); font-weight: 600; }
.micro-link { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; padding-top: 8px; border-top: 1px solid var(--border); color: var(--blue-dark); font-weight: 600; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 12px; }
.time-slot { padding: 7px 3px; border: 1px solid var(--border); border-radius: 4px; background: #f8fafb; color: var(--muted); font-size: 9px; text-align: center; white-space: nowrap; }
.schedule-confirmed { position: absolute; inset: 12px; opacity: 0; }
.schedule-confirmed > p { margin-top: 13px; color: var(--ink); font-size: 13px; font-weight: 600; }
.confirmed-label { display: inline-flex; margin-top: 11px; padding: 4px 7px; border-radius: 4px; background: #edf7f3; color: var(--teal); font-size: 10px; font-weight: 600; }
.interview-time { margin-top: 3px; color: var(--muted); font-size: 11px; }
.interview-join { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; min-height: 30px; margin-top: 10px; padding: 5px 7px; border: 1px solid #dbe8fb; border-radius: 4px; background: #f0f6ff; color: var(--blue-dark); font-size: 11px; font-weight: 600; line-height: 1.4; }
.interview-join svg { width: 15px; height: 15px; flex-shrink: 0; }
.journey-message { color: var(--muted); font-size: 12px; }

/* Animation changes only opacity, transforms, and stroke length, never layout. */
@media (prefers-reduced-motion: no-preference) {
  .journey-animated .stage-node { animation: journey-node-in .35s cubic-bezier(.2,.7,.3,1) var(--node-delay) both paused; }
  .journey-animated .journey-connector path { animation: journey-line-draw .5s linear var(--line-delay) both paused; }
  .journey-animated .applied-status { animation: journey-micro-in-out .65s ease .35s both paused; }
  .journey-animated .invitation-card { animation: journey-micro-in-out .9s ease 1.65s both paused; }
  .journey-animated .schedule-card { animation: journey-micro-in-out 1.75s ease 3.4s both paused; }
  .journey-animated .interview-card { animation: journey-micro-in-out .8s ease 5.95s both paused; }
  .journey-animated .decision-status { animation: journey-micro-in-out .6s ease 7.45s both paused; }
  .journey-animated .time-slot-selected { animation: journey-time-selected .18s ease 4.25s both paused; }
  .journey-animated .schedule-options { animation: journey-state-out .2s ease 4.58s both paused; }
  .journey-animated .schedule-confirmed { animation: journey-state-in .2s ease 4.62s both paused; }
  .journey-animated .journey-message { animation: journey-detail-in .35s ease-out 7.95s both paused; }
  .journey-playing :is(.stage-node, .journey-connector path, .journey-micro, .time-slot-selected, .schedule-options, .schedule-confirmed, .journey-message) { animation-play-state: running; }
}

@keyframes journey-node-in {
  0% { opacity: 0; transform: scale(.92); }
  75% { opacity: 1; transform: scale(1.015); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes journey-line-draw {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}
@keyframes journey-detail-in {
  from { opacity: 0; transform: translateY(5px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes journey-micro-in-out {
  0% { visibility: visible; opacity: 0; transform: translate(var(--micro-x), 5px) scale(.98); }
  14%, 76% { visibility: visible; opacity: 1; transform: translate(var(--micro-x), 0) scale(1); }
  100% { visibility: hidden; opacity: 0; transform: translate(var(--micro-x), -3px) scale(.99); }
}
@keyframes journey-time-selected {
  from { border-color: var(--border); background: #f8fafb; color: var(--muted); }
  to { border-color: #b8d3fa; background: #f0f6ff; color: var(--blue-dark); }
}
@keyframes journey-state-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-3px); }
}
@keyframes journey-state-in {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .hero-stages { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; text-align: left; }
  .hero-stages li:not(:last-child) { padding-bottom: 34px; }
  .stage-node { flex-direction: row; gap: 18px; transform-origin: 28px 28px; }
  .stage-symbol { flex-shrink: 0; }
  .stage-name { margin-top: 0; }
  .journey-connector { top: 64px; left: 27px; width: 2px; height: calc(100% - 70px); }
  .journey-connector .connector-horizontal { display: none; }
  .journey-connector .connector-vertical { display: block; }
  .journey-context { position: absolute; inset: 0 0 auto; height: 416px; margin-top: 0; }
  .journey-micro { --micro-x: 0%; left: 74px; width: min(220px, calc(100% - 86px)); }
  .applied-status { top: 40px; width: max-content; }
  .invitation-card { top: 116px; }
  .schedule-card { top: 206px; }
  .interview-card { top: 296px; width: min(190px, calc(100% - 86px)); }
  .decision-status { top: 400px; width: max-content; }
  .journey-message { margin-top: 24px; font-size: 11px; }
}

.problem { background: var(--surface); border-block: 1px solid var(--border); padding-block: 66px; }
.problem-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 80px; }
.eyebrow { color: var(--blue-dark); font-size: 11px; font-weight: 650; margin-bottom: 18px; }
h2 { font-size: 38px; font-weight: 600; line-height: 1.23; }
.problem h2 { font-size: 32px; }
.problem-copy { color: var(--muted); font-size: 15px; }
.problem-copy p + p { margin-top: 16px; }
.section-heading { max-width: 640px; }
.section-heading > p:last-child { color: var(--muted); margin-top: 20px; max-width: 540px; }
.process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; padding: 0; margin: 52px 0 0; list-style: none; }
.process-list li { border-top: 1px solid var(--border); padding-top: 18px; }
.process-top { display: flex; align-items: center; justify-content: space-between; }
.step-number { color: var(--blue-dark); font-size: 12px; font-variant-numeric: tabular-nums; }
.process-arrow { font-size: 22px; color: #7d8e96; line-height: 1; }
.process-end { color: var(--teal); font-size: 18px; line-height: 1; }
.process-list h3 { margin-top: 24px; font-size: 19px; font-weight: 600; }
.process-list p { margin-top: 10px; font-size: 14px; color: var(--muted); }
.development-note { margin-top: 38px; padding-left: 12px; border-left: 2px solid var(--border); font-size: 12px; color: var(--muted); }

.ecosystem { background: var(--mint); border-block: 1px solid #dfeae5; }
.ecosystem .eyebrow { color: var(--teal); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; margin-top: 60px; }
.audience { scroll-margin-top: 115px; }
.audience-recruiters { padding-left: 44px; margin-left: -44px; border-left: 1px solid #d6e3dc; }
.audience-label { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 650; margin-bottom: 26px; }
.audience-marker { width: 7px; height: 7px; background: var(--blue); border-radius: 2px; }
.audience-recruiters .audience-marker { background: var(--teal); }
.audience-number { margin-left: auto; font-size: 11px; color: #677c72; font-weight: 400; }
.audience h3 { font-size: 29px; line-height: 1.3; font-weight: 600; }
.audience-intro { color: var(--muted); font-size: 15px; margin-top: 18px; max-width: 450px; }
.benefit-list { list-style: none; padding: 0; margin: 30px 0 23px; display: grid; gap: 23px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; }
.benefit-check { color: var(--teal); font-size: 13px; margin-top: 2px; }
.benefit-list h4 { font-size: 14px; font-weight: 600; }
.benefit-list p { font-size: 13px; color: var(--muted); margin-top: 4px; max-width: 365px; }
.audience .text-link { color: var(--blue-dark); font-size: 13px; }
.audience-recruiters .text-link { color: var(--teal); }
.ecosystem-signoff { display: flex; justify-content: center; align-items: center; gap: 16px; margin: 65px auto 0; max-width: 600px; }
.ecosystem-signoff p { font-size: 12px; color: var(--muted); }
.ecosystem-signoff img { width: 49px; }
.connection-line { height: 1px; background: #d0dfd6; flex: 1; }

.pilot { background: #192623; color: white; }
.pilot-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: center; }
.pilot .eyebrow { color: #a8d9c8; display: flex; align-items: center; gap: 8px; }
.pilot .status-dot { background: #9cdec5; }
.pilot h2 { font-size: 42px; }
.pilot-copy > p:not(.eyebrow) { max-width: 485px; color: #c2cdca; font-size: 15px; margin-top: 21px; }
.pilot-copy > p + p { margin-top: 12px !important; }
.pilot-action { display: flex; flex-direction: column; align-items: flex-start; padding-left: 32px; }
.button-light { background: white; color: var(--ink); min-width: 210px; justify-content: space-between; }
.button-light:hover { background: #e6f2ed; }
.pilot-action > span { color: #b8c7c1; font-size: 12px; margin-top: 16px; }
.pilot-email { color: #e0e8e5; font-size: 14px; margin-top: 26px; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: #788c82; }
.pilot-email:hover { color: white; }
.pilot a:focus-visible { outline-color: #a8d9c8; }
.site-footer { padding: 55px 0 23px; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-bottom: 44px; }
.footer-brand p { margin-top: 17px; color: var(--muted); font-size: 13px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 28px; font-size: 13px; padding-top: 7px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 11px; }
.footer-bottom a:hover { color: var(--blue-dark); }
.footer-bottom a span { margin-left: 5px; }

/* Content stays visible without JavaScript or after a reveal has finished. */
@media (prefers-reduced-motion: no-preference) {
  .reveal-pending { opacity: 0; transform: translateY(16px); }
  .reveal { transition: opacity 550ms ease, transform 550ms ease; }
}

@media (min-width: 1500px) {
  .hero { padding-top: 78px; padding-bottom: 52px; }
  h1 { font-size: 68px; }
}

@media (max-width: 1000px) {
  :root { --section-space: 76px; }
  .container { width: calc(100% - 64px); }
  .navigation { gap: 20px; }
  .navigation > .button { margin-left: 0; }
  .brand img { width: 136px; }
  h1 { font-size: 52px; }
  .problem-grid { gap: 40px; }
  .problem h2 { font-size: 28px; }
  .process-list { gap: 18px; }
  .audience-grid { gap: 56px; }
  .audience-recruiters { padding-left: 28px; margin-left: -28px; }
  .audience h3 { font-size: 26px; }
  .pilot-inner { gap: 40px; }
  .pilot-action { padding-left: 0; }
  .pilot h2 { font-size: 36px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 92px; }
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 72px; flex-wrap: wrap; gap: 0; }
  .brand img { width: 137px; }
  .menu-toggle:not([hidden]) { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; border: 1px solid var(--border); border-radius: var(--radius); background: white; color: var(--ink); cursor: pointer; }
  .menu-toggle span { width: 18px; height: 1.5px; background: currentColor; transition: transform 180ms; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .navigation { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; padding: 10px 0 20px; }
  .navigation > a { padding: 10px 0; }
  .navigation > .button { grid-column: 1 / -1; margin-top: 6px; }
  .nav-ready .navigation { display: none; }
  .nav-ready .navigation.is-open { display: grid; }
  .hero { padding: 45px 0 38px; }
  h1 { font-size: 44px; margin-top: 23px; }
  .hero-description { font-size: 16px; max-width: 480px; }
  .hero-journey { margin-top: 40px; }
  .problem { padding-block: 48px; }
  .problem-grid { grid-template-columns: 1fr; gap: 22px; }
  .problem-copy { max-width: 520px; }
  h2 { font-size: 32px; }
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 36px; }
  .audience-grid { grid-template-columns: 1fr; gap: 44px; margin-top: 40px; }
  .audience-recruiters { border-left: 0; border-top: 1px solid #d6e3dc; margin-left: 0; padding: 36px 0 0; }
  .audience-intro, .benefit-list p { max-width: 100%; }
  .audience-label { margin-bottom: 20px; }
  .audience h3 { font-size: 29px; }
  .ecosystem-signoff { margin-top: 40px; }
  .pilot-inner { grid-template-columns: 1fr; gap: 32px; }
  .pilot-action { align-items: flex-start; }
  .pilot-email { margin-top: 18px; }
  .footer-main { gap: 32px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .footer-bottom > p:last-child { width: 100%; }
}

@media (max-width: 480px) {
  :root { --section-space: 56px; }
  .hero { padding-top: 32px; }
  .status-label { font-size: 10px; gap: 6px; }
  h1 { font-size: 36px; line-height: 1.17; }
  .hero-description { font-size: 14px; margin-top: 18px; line-height: 1.7; }
  .hero-actions { gap: 20px; margin-top: 22px; }
  .hero-actions .button { min-height: 48px; padding: 12px 16px; gap: 16px; font-size: 13px; }
  .hero-actions .text-link { font-size: 12px; gap: 9px; }
  .hero-journey { margin-top: 32px; }
  .eyebrow { font-size: 10px; margin-bottom: 14px; }
  h2, .problem h2 { font-size: 27px; }
  .problem-copy, .section-heading > p:last-child { font-size: 14px; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-list li { display: grid; grid-template-columns: 38px 1fr; column-gap: 12px; padding: 21px 0; }
  .process-top { grid-column: 1; grid-row: 1 / 3; flex-direction: column; justify-content: flex-start; gap: 16px; padding-top: 3px; }
  .process-arrow { transform: rotate(90deg); }
  .process-list h3 { grid-column: 2; margin-top: 0; font-size: 18px; }
  .process-list p { grid-column: 2; margin-top: 6px; }
  .development-note { margin-top: 16px; }
  .audience h3 { font-size: 27px; }
  .audience-intro { font-size: 14px; }
  .ecosystem-signoff { gap: 10px; }
  .ecosystem-signoff p { font-size: 11px; }
  .ecosystem-signoff img { width: 42px; }
  .pilot h2 { font-size: 31px; }
  .pilot-copy > p:not(.eyebrow) { font-size: 14px; }
  .footer-main { flex-direction: column; padding-bottom: 30px; }
  .footer-nav { display: flex; gap: 22px; font-size: 12px; }
  .site-footer { padding-top: 40px; }
}

@media (max-width: 360px) {
  h1 { font-size: 31px; }
  .hero-actions { gap: 14px; }
  .hero-actions .button { padding-inline: 12px; gap: 10px; }
  .footer-nav { gap: 16px; }
}

@media (min-width: 761px) and (max-height: 850px) {
  .hero { padding-block: 36px; }
  .hero-journey { margin-top: 32px; }
}

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