@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --blue: #0558e2;
  --blue-dark: #073c9d;
  --sky: #7fccf7;
  --rose: #995353;
  --taupe: #8a8268;
  --white: #ffffff;
  --ink: #10233f;
  --muted: #526278;
  --line: #dbe5f0;
  --mist: #f4f8fc;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(8, 45, 99, 0.13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }
h1, h2, h3 { margin: 0 0 0.65em; font-family: 'Manrope', 'Inter', sans-serif; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.75rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container.narrow { width: min(830px, calc(100% - 40px)); }
.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--sky); }
.lead { max-width: 730px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.62; }
.brand { display: inline-flex; flex: none; overflow: hidden; border-radius: 50%; background: transparent; }
.brand img { border-radius: 50%; box-shadow: none; outline: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 13px 35px rgba(5, 88, 226, 0.27); }
.button-primary:hover { background: var(--blue-dark); }
.button-large { min-height: 58px; padding: 0.92rem 1.7rem; }
.button-small { min-height: 42px; padding: 0.6rem 1.1rem; font-size: 0.86rem; }

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.33rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
}
.language-switch button { padding: 0.25rem; border: 0; color: inherit; background: transparent; font-weight: 700; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: var(--blue); }
.language-switch.compact { font-size: 0.82rem; }

/* Gateway */
.gateway-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(127, 204, 247, 0.36), transparent 30rem),
    linear-gradient(145deg, #ffffff 32%, #f4f8ff 100%);
}
.gateway-header, .gateway-footer { width: min(1280px, calc(100% - 40px)); margin-inline: auto; }
.gateway-header { display: flex; align-items: center; justify-content: space-between; padding-block: 28px; }
.gateway-hero { position: relative; display: grid; place-items: center; width: min(1180px, calc(100% - 40px)); margin: auto; padding: 5rem 0; }
.gateway-copy { position: relative; z-index: 2; max-width: 910px; text-align: center; }
.gateway-copy h1 { color: var(--ink); }
.gateway-copy .lead { margin: 0 auto 2.3rem; }
.gateway-orbit { position: absolute; inset: 50% auto auto 50%; width: min(68vw, 760px); aspect-ratio: 1; transform: translate(-50%, -50%); pointer-events: none; }
.orbit-ring { position: absolute; inset: 0; border: 1px solid rgba(5,88,226,0.1); border-radius: 50%; }
.orbit-dot { position: absolute; display: block; border-radius: 50%; filter: blur(0.1px); }
.orbit-dot-one { top: 1%; right: 14%; width: 70px; height: 70px; background: rgba(153,83,83,0.17); }
.orbit-dot-two { left: 3%; bottom: 16%; width: 42px; height: 42px; background: rgba(5,88,226,0.2); }
.gateway-footer { display: flex; justify-content: space-between; gap: 1rem; padding-block: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.83rem; }

/* Waitlist header and hero */
.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgba(219,229,240,0.8); background: rgba(255,255,255,0.9); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-link { color: var(--muted); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.waitlist-hero { position: relative; overflow: hidden; padding: clamp(2.75rem, 5vw, 4.5rem) 0; background: linear-gradient(180deg, #fff, #f7fbff); }
.waitlist-hero::before { content: ''; position: absolute; top: -18rem; right: -11rem; width: 39rem; height: 39rem; border-radius: 50%; background: rgba(127,204,247,0.18); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero-copy h1 { max-width: 780px; }
.hero-copy .lead { margin-bottom: 1.4rem; }
.beta-note { display: flex; gap: 0.6rem; max-width: 680px; margin: 0 0 2.2rem; color: var(--blue-dark); font-weight: 600; }
.hero-card { position: relative; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; overflow: hidden; border-radius: var(--radius-lg); color: white; background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 75%); box-shadow: var(--shadow); }
.hero-card::after { content: ''; position: absolute; width: 230px; height: 230px; top: -45px; right: -70px; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; }
.hero-card-mark { position: absolute; top: 1.5rem; left: 1.8rem; color: rgba(255,255,255,0.18); font-family: 'Manrope', sans-serif; font-size: 8rem; font-weight: 800; line-height: 1; }
.hero-card > div { position: relative; z-index: 1; }
.hero-card h2 { font-size: 2.25rem; }
.hero-card p:last-child { margin: 0; color: rgba(255,255,255,0.78); }
.card-kicker { color: var(--sky); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.18em; }

/* Benefits */
.benefits-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section-heading { max-width: 750px; margin-bottom: 1.7rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.career-journey-visual { position: relative; padding: clamp(1rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(155deg, #f7fbff 0%, #edf6ff 55%, #fff8e8 100%); box-shadow: 0 24px 60px rgba(16,35,63,0.09); }
.career-journey-visual picture, .career-journey-visual picture img { display: block; width: 100%; }
.career-journey-visual picture img { max-height: 570px; object-fit: contain; }
.journey-labels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: -0.2rem 0 0; padding: 0; list-style: none; }
.journey-labels li { display: grid; gap: 0.18rem; padding: 1rem 1.15rem; border-radius: 16px; background: rgba(255,255,255,0.88); box-shadow: 0 10px 30px rgba(16,35,63,0.07); }
.journey-labels span { color: var(--blue); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.journey-labels strong { font-family: 'Manrope', sans-serif; font-size: clamp(1rem, 1.8vw, 1.3rem); line-height: 1.2; }
.journey-labels small { color: var(--muted); font-size: 0.84rem; line-height: 1.5; }
.mobile-journey-steps { display: none; }

/* Join form */
.join-section { position: relative; overflow: clip; padding: clamp(2.5rem, 5vw, 4rem) 0; color: white; background: var(--ink); }
.join-section::before { content: ''; position: absolute; left: -15rem; bottom: -20rem; width: 42rem; height: 42rem; border: 1px solid rgba(127,204,247,0.12); border-radius: 50%; }
.join-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.join-copy { position: relative; }
.join-grid > *, .form-grid > * { min-width: 0; }
.join-copy > div > p:not(.eyebrow) { color: #b9c6d8; font-size: 1.08rem; }
.check-list { display: grid; gap: 0.8rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 0.7rem; align-items: center; color: #dbe6f4; }
.check-list li::before { content: '✓'; display: grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 50%; color: var(--ink); background: var(--sky); font-size: 0.78rem; font-weight: 900; }
.form-card { position: relative; margin-top: 180px; padding: clamp(2.7rem, 5vw, 3.8rem) clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem); overflow: visible; border-radius: var(--radius-lg); color: var(--ink); background: white; box-shadow: 0 30px 80px rgba(0,0,0,0.25); }
.oli-form-guide { position: absolute; z-index: 3; top: 0; right: 8px; width: 250px; height: auto; overflow: visible; transform: translateY(-96%); pointer-events: none; }
.oli-form-guide img { width: 100%; max-width: none; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.2)); }
.form-step { margin-bottom: 0.6rem; color: var(--blue); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.form-card h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card label:not(.consent-label) { display: grid; gap: 0.45rem; margin-bottom: 1rem; color: var(--ink); font-size: 0.86rem; font-weight: 700; }
.form-card input:not([type='checkbox']), .form-card select { width: 100%; min-height: 52px; padding: 0.75rem 0.9rem; border: 1px solid #cbd8e7; border-radius: 10px; color: var(--ink); background: #fbfdff; font: inherit; }
.form-card select { appearance: auto; }
.form-card input:not([type='checkbox']):focus, .form-card select:focus { border-color: var(--blue); outline: 3px solid rgba(127,204,247,0.38); }
.conditional-field[hidden] { display: none !important; }
.captcha-box { display: grid; gap: 0.7rem; margin: 0.25rem 0 1.2rem; padding: 1rem; border: 1px solid #d8e5f2; border-radius: 12px; background: var(--mist); }
.captcha-box p { margin: 0; color: var(--blue-dark); font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 700; }
.turnstile-box > div { width: 100%; min-height: 65px; }
#waitlist-form { scroll-margin-top: 110px; }
.captcha-refresh { min-height: 42px; padding: 0.55rem 0.8rem; border: 1px solid #cbd8e7; border-radius: 9px; color: var(--blue); background: white; font: inherit; font-size: 0.78rem; font-weight: 700; cursor: pointer; }
.captcha-refresh:hover { border-color: var(--blue); }
.phone-field .iti { width: 100%; }
.phone-field .iti__country-container { border-radius: 10px 0 0 10px; }
.phone-field .iti__selected-country { padding-inline: 0.8rem; }
.phone-field .iti__selected-dial-code { color: #40526a; font-weight: 600; }
.phone-field .iti__selected-country-primary { border-radius: 9px 0 0 9px; transition: background-color 160ms ease; }
.phone-field .iti__selected-country-primary:hover, .phone-field .iti__selected-country[aria-expanded='true'] .iti__selected-country-primary { background: rgba(127,204,247,0.2); }
.phone-field .iti__arrow { border-top-color: var(--blue); }
.phone-field .iti__arrow--up { border-bottom-color: var(--blue); }
.phone-field .iti__country-selector { width: min(310px, calc(100vw - 32px)) !important; min-width: min(280px, calc(100vw - 32px)); overflow: hidden; border: 1px solid rgba(5,88,226,0.22); border-radius: 14px; background: white; box-shadow: 0 18px 42px rgba(8,31,61,0.2), 0 3px 10px rgba(5,88,226,0.08); }
.phone-field .iti__dropdown-content { z-index: 20; width: 100%; border: 0; border-radius: inherit; background: white; box-shadow: none; }
.phone-field .iti__country-list { max-height: min(320px, 46vh); padding: 0.35rem 0; color: var(--ink); font-weight: 600; scrollbar-color: rgba(5,88,226,0.35) transparent; scrollbar-width: thin; }
.phone-field .iti__country-list::-webkit-scrollbar { width: 7px; }
.phone-field .iti__country-list::-webkit-scrollbar-thumb { border: 2px solid white; border-radius: 999px; background: rgba(5,88,226,0.35); }
.phone-field .iti__country { min-height: 42px; margin: 0.1rem 0.35rem; padding: 0.55rem 0.65rem; border-radius: 9px; transition: color 140ms ease, background-color 140ms ease; }
.phone-field .iti__country:hover, .phone-field .iti__country.iti__highlight { color: var(--blue-dark); background: rgba(127,204,247,0.2); }
.phone-field .iti__country[aria-selected='true'] { color: var(--blue); background: rgba(5,88,226,0.09); }
.phone-field .iti__country-name { font-size: 0.84rem; line-height: 1.3; }
.phone-field .iti__dial-code { margin-left: 0.18rem; color: #6f8096; font-size: 0.78rem; font-weight: 600; }
.phone-field .iti__flag { border-radius: 2px; box-shadow: 0 0 0 1px rgba(8,31,61,0.08); }
.phone-field .iti__country-list[data-code-query]:not([data-code-query=''])::before { content: attr(data-code-query); position: sticky; z-index: 2; top: -0.35rem; display: block; margin: -0.35rem 0 0.25rem; padding: 0.6rem 0.9rem; border-bottom: 1px solid rgba(5,88,226,0.12); color: var(--blue); background: linear-gradient(90deg, #eef7fd, #f8fbff); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; }
.phone-field .iti__country.phone-country-featured, .phone-field .iti__country.phone-country-others { flex-wrap: wrap; padding-top: 0.6rem; }
.phone-field .iti__country.phone-country-featured::before, .phone-field .iti__country.phone-country-others::before { content: attr(data-section-label); width: calc(100% + 1.3rem); margin: -0.6rem -0.65rem 0.45rem; padding: 0.48rem 0.65rem 0.38rem; color: var(--blue); background: linear-gradient(90deg, rgba(127,204,247,0.16), rgba(127,204,247,0.03)); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.phone-field .iti__country.phone-country-others { margin-top: 0.4rem; padding-top: 0.65rem; border-top: 1px solid rgba(5,88,226,0.14); border-radius: 0 0 9px 9px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.spam-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.privacy-callout { margin: 1.2rem 0; padding: 0.9rem 1rem; border-radius: 10px; color: var(--muted); background: var(--mist); font-size: 0.81rem; }
.inline-link { padding: 0; border: 0; color: var(--blue); background: none; font: inherit; font-weight: 700; text-decoration: underline; cursor: pointer; }
.consent-label { display: grid; grid-template-columns: 20px 1fr; gap: 0.7rem; align-items: start; color: #40526a; font-size: 0.78rem; line-height: 1.55; cursor: pointer; }
.consent-label input { width: 18px; height: 18px; margin: 0.15rem 0 0; accent-color: var(--blue); }
.consent-label span { grid-column: 2; }
.button-submit { width: 100%; min-height: 56px; margin-top: 1.4rem; }
.button-submit:disabled { cursor: wait; opacity: 0.6; transform: none; }
.form-status { min-height: 1.5em; margin: 0.9rem 0 0; color: var(--blue-dark); font-size: 0.82rem; text-align: center; }
.form-status.error { color: #9a3030; }
.success-state { padding: 2rem 1rem; text-align: center; }
.success-state img { width: 86px; max-height: 108px; margin: 0 auto 1.2rem; object-fit: contain; }
.success-state p:last-child { color: var(--muted); }
.career-save-status { margin: 1rem 0 0; color: var(--muted); font-size: .8rem; }
.career-save-retry { border: 0; background: transparent; color: #0558e2; text-decoration: underline; cursor: pointer; margin-top: .5rem; }

/* FAQ and footer */
.faq-section { padding: clamp(2.5rem, 4.5vw, 4rem) 0; background: var(--mist); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.4rem 2.5rem 1.4rem 0; font-family: 'Manrope', sans-serif; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; margin-right: -2rem; color: var(--blue); font-size: 1.3rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details > p { max-width: 700px; padding: 0 0 1.4rem; color: var(--muted); }
.site-footer { padding: 2rem 0 1.5rem; color: white; background: #08182d; }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.4fr); gap: 2.5rem 4rem; }
.footer-brand img { margin-bottom: 1rem; border: 0; border-radius: 12px; background: transparent; box-shadow: none; }
.footer-brand p { max-width: 390px; color: #aebed1; font-size: 0.9rem; }
.footer-nav-social { display: grid; gap: 1.15rem; align-content: start; justify-items: end; }
.footer-links { display: flex; flex-wrap: nowrap; align-content: start; justify-content: flex-end; gap: 0.5rem 1.3rem; }
.footer-links button, .footer-links a { padding: 0.25rem 0; border: 0; color: #dce8f5; background: transparent; font-size: 0.88rem; text-decoration: none; cursor: pointer; }
.footer-links button:hover, .footer-links a:hover { color: var(--sky); }
.footer-social { justify-self: end; text-align: right; }
.footer-social-title { margin: 0 0 0.15rem; font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 800; }
.footer-social-handle { margin: 0 0 0.85rem; color: var(--sky); font-size: 0.84rem; font-weight: 700; }
.social-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.55rem; }
.social-links a { padding: 0.45rem 0.7rem; border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; color: #dce8f5; font-size: 0.76rem; font-weight: 700; text-decoration: none; }
.social-links a:hover { border-color: var(--sky); color: var(--sky); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: #8295ac; font-size: 0.78rem; }

/* Dialogs */
.info-dialog { width: min(760px, calc(100% - 24px)); max-height: min(86vh, 900px); padding: 0; overflow: hidden; border: 0; border-radius: 24px 24px 6px 6px; color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,0.3); }
.info-dialog::backdrop { background: rgba(3,17,37,0.68); backdrop-filter: blur(5px); }
.dialog-shell { position: relative; max-height: min(86vh, 900px); padding: clamp(1.6rem, 5vw, 3.2rem); overflow-y: auto; }
.dialog-close { position: sticky; z-index: 1; top: 0; float: right; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,0.92); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.dialog-kicker { color: var(--blue); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.dialog-shell h2 { padding-right: 3rem; }
.dialog-shell h3 { margin: 1.7rem 0 0.55rem; letter-spacing: -0.015em; }
.dialog-shell p, .dialog-shell li { color: var(--muted); }
.dialog-shell a { color: var(--blue); font-weight: 600; }
.draft-badge { display: inline-block; padding: 0.35rem 0.55rem; border-radius: 6px; color: #733838 !important; background: #f6e6e6; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; }
.legal-note { margin-top: 2rem; padding: 1rem; border-left: 4px solid var(--rose); background: #faf3f3; font-size: 0.84rem; }
.contact-email { font-family: 'Manrope', sans-serif; font-size: clamp(1.05rem, 3vw, 1.5rem); }

/* Homepage career chat */
.career-chat-page {
  position: relative;
  display: grid;
  grid-template-rows: minmax(min-content, 1fr) auto;
  min-height: var(--career-viewport-height, 100svh);
  padding: 96px 24px 22px;
  overflow: clip;
  color: #071d3b;
  background:
    radial-gradient(circle at 84% 5%, rgba(127, 204, 247, 0.23), transparent 32%),
    radial-gradient(circle at 6% 92%, rgba(5, 88, 226, 0.08), transparent 30%),
    linear-gradient(145deg, #f8fcff 0%, #eef8ff 56%, #e9f5fd 100%);
}
.career-orbit {
  position: absolute;
  left: -80px;
  top: 80px;
  width: 1180px;
  height: 680px;
  border: 2px solid rgba(5, 88, 226, 0.06);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.career-orbit-two {
  left: 280px;
  top: 235px;
  border-color: rgba(127, 204, 247, 0.28);
  border-style: dashed;
}
.career-brand {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 52px;
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 50%;
}
.career-brand img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.career-chat-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: auto;
  padding: 0 0 50px;
}
.career-chat-shell h1 {
  margin: 0 0 28px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: center;
}
.career-composer {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(800px, calc(100vw - 48px));
  min-height: 100px;
  max-height: none;
  padding: 8px;
  border: 1px solid #d5e2ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(11, 45, 83, 0.12);
  transition: min-height 200ms ease, border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.career-composer:focus-within { border-color: rgba(5, 88, 226, 0.42); box-shadow: 0 20px 48px rgba(11, 45, 83, 0.15); }
.career-composer.needs-input { animation: career-shake 360ms ease; border-color: var(--rose); }
.career-attachments { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; min-height: 0; }
.career-composer.has-files .career-attachments { padding: 0 2px 7px; }
.career-attachment {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 220px;
  height: 34px;
  padding: 3px 5px 3px 4px;
  overflow: hidden;
  border: 1px solid #dce8f1;
  border-radius: 11px;
  background: #f7fafc;
  box-shadow: 0 3px 9px rgba(11, 45, 83, 0.05);
  animation: career-arrive 200ms ease both;
}
.career-attachment.is-loading { opacity: 0.72; transform: translateY(2px); }
.career-attachment.is-loading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--blue));
  transform-origin: left;
  animation: career-progress 680ms ease both;
}
.career-file-icon {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #1269f3, #043b9d);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.career-file-icon.image { background: linear-gradient(145deg, var(--sky), var(--blue)); }
.career-file-icon.archive { background: linear-gradient(145deg, #995353, #6e3434); }
.career-file-icon.other { background: linear-gradient(145deg, #8a8268, #59543f); }
.career-file-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #203a59;
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.career-file-remove {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-left: 2px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #63758b;
  background: #eaf1f6;
  font-size: 13px;
  cursor: pointer;
}
.career-file-remove:hover { color: #071d3b; background: #dde8f0; }
.career-text-wrap { position: relative; display: flex; align-items: flex-start; flex: 0 0 auto; min-height: 0; padding: 2px 8px; }
.career-controls { display: flex; align-items: center; min-height: 42px; margin-top: auto; }
.career-control-spacer { flex: 1; }
.career-circle-button {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.career-add-file { color: var(--blue); background: #eef7fd; font-size: 23px; font-weight: 400; line-height: 1; }
.career-add-file:disabled { color: #91a3b8; background: #f1f4f7; cursor: default; }
.career-prompt {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  max-height: none;
  padding: 8px 5px;
  overflow-y: auto;
  border: 0;
  outline: 0;
  resize: none;
  color: #203a59;
  background: transparent;
  font: 400 14px/1.55 'Inter', system-ui, sans-serif;
}
.career-prompt::placeholder { color: #7b899a; }
.career-expand {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin: 5px 2px 0 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #5d6e84;
  background: #eef4f8;
  cursor: pointer;
}
.career-expand:hover { color: var(--blue); background: #e4f1fb; }
.career-expand svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.career-composer.is-expanded .career-expand svg { transform: rotate(180deg); }
.career-model { margin-right: 9px; padding: 7px 10px; border-radius: 11px; color: #5d6e84; background: #f5f8fb; font-size: 11px; font-weight: 600; line-height: 1; white-space: nowrap; }
.career-send {
  color: #fff;
  background: linear-gradient(145deg, #1269f3, var(--blue) 55%, #043b9d);
  box-shadow: 0 5px 12px rgba(5, 88, 226, 0.22);
  font-size: 18px;
  line-height: 1;
}
.career-send:hover { transform: translateY(-1px); }
.career-send:disabled { opacity: 0.52; cursor: default; transform: none; }
.career-tip { position: relative; }
.career-tip::before {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 8;
  top: calc(100% + 12px);
  left: 50%;
  padding: 8px 10px;
  border-radius: 10px;
  color: #fff;
  background: #071d3b;
  box-shadow: 0 9px 22px rgba(7, 29, 59, 0.18);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: 160ms ease;
}
.career-tip:hover::before, .career-tip:focus-visible::before { opacity: 1; transform: translate(-50%, 0); }
.career-recommendations {
  width: min(760px, calc(100vw - 70px));
  max-height: 190px;
  margin-top: 14px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 220ms ease, opacity 160ms ease, margin 220ms ease;
}
.career-recommendations.is-hidden { max-height: 0; margin-top: 0; opacity: 0; pointer-events: none; }
.career-recommendation {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 9px 8px;
  border: 0;
  color: #53667f;
  background: transparent;
  font: 400 14px/1.4 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease;
}
.career-recommendation:hover { color: var(--blue); transform: translateX(3px); }
.career-recommendation:disabled { opacity: 0.55; cursor: default; transform: none; }
.career-rec-icon { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid rgba(5,88,226,0.11); border-radius: 11px; color: var(--blue); background: rgba(255,255,255,0.9); box-shadow: 0 4px 12px rgba(11,45,83,0.06); }
.career-rec-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.career-recommendation strong { color: #213a5a; font-family: 'Manrope', 'Inter', sans-serif; font-weight: 700; }
.career-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.career-security { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); pointer-events: none; }
.career-security:empty { display: none; }
.career-chat-page.is-submitted .career-composer { opacity: 0.68; }
.career-disclaimer {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 760px;
  margin: 0 auto;
  color: #69798d;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}
.career-disclaimer a { color: #465b73; text-underline-offset: 2px; }
.career-disclaimer a:hover { color: var(--blue); }

.career-beta-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}
.career-beta-dialog::backdrop { background: rgba(7, 29, 59, 0.57); backdrop-filter: blur(7px); }
.career-beta-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(530px, calc(100vw - 32px));
  min-height: 555px;
  padding: 144px 48px 40px;
  border: 1px solid rgba(127, 204, 247, 0.5);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(0, 22, 52, 0.33);
  text-align: center;
  transform: translate(-50%, -46%);
}
.career-dialog-close { position: absolute; z-index: 4; top: 20px; right: 20px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid #d9e6f1; border-radius: 50%; color: #496078; background: #f7fbfe; font-size: 23px; line-height: 1; cursor: pointer; }
.career-oli-frame { position: absolute; top: -140px; left: 50%; width: 310px; height: 265px; overflow: hidden; filter: drop-shadow(0 16px 20px rgba(7, 29, 59, 0.18)); pointer-events: none; transform: translateX(-50%); }
.career-oli-frame img { width: 310px; max-width: none; height: auto; }
.career-thanks { margin: 0 0 21px; color: var(--blue); font-family: 'Manrope', 'Inter', sans-serif; font-size: 14px; font-weight: 700; }
.career-beta-card h2 { margin: 24px 0 15px; font-size: 31px; font-weight: 700; }
.career-dialog-copy { max-width: 410px; margin: 0 auto 30px; color: #53667f; font-size: 15px; line-height: 1.7; }
.career-dialog-note { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; padding: 14px 16px; border-radius: 16px; color: #27405f; background: linear-gradient(100deg, #eef8fe, #f8fbff); font-size: 13px; text-align: left; }
.career-dialog-note strong { color: var(--blue); }
.career-check { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--sky); font-weight: 700; }
.career-dialog-cta { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; min-height: 60px; border-radius: 18px; color: #fff; background: linear-gradient(145deg, #1269f3, #043b9d); box-shadow: 0 12px 24px rgba(5, 88, 226, 0.2); font-family: 'Manrope', 'Inter', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; }

@keyframes career-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes career-arrive { from { opacity: 0; transform: translateY(4px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes career-shake { 25% { transform: translateX(-4px); } 50% { transform: translateX(4px); } 75% { transform: translateX(-2px); } }

@media (max-width: 900px) {
  .header-link { display: none; }
  .hero-grid, .join-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 310px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav-social { justify-items: start; }
  .footer-links { flex-wrap: wrap; justify-content: flex-start; }
  .footer-social { justify-self: start; text-align: left; }
  .social-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .career-chat-page { padding: 92px 20px max(18px, env(safe-area-inset-bottom)); }
  .career-chat-page.is-keyboard-open {
    grid-template-rows: minmax(min-content, 1fr) auto;
    min-height: var(--career-viewport-height, 100svh);
    padding-top: 18px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }
  .career-chat-page.is-keyboard-open .career-chat-shell { justify-content: flex-end; padding: 74px 0 8px; }
  .career-chat-page.is-keyboard-open .career-chat-shell h1 { margin-bottom: 14px; font-size: 22px; }
  .career-chat-page.is-keyboard-open .career-disclaimer { margin-top: 0; font-size: 9px; line-height: 1.35; }
  .career-brand { top: 24px; left: 24px; width: 56px; height: 56px; }
  .career-chat-shell { justify-content: center; padding: 0 0 34px; }
  .career-chat-shell h1 { max-width: 340px; margin-bottom: 22px; font-size: 25px; line-height: 1.18; }
  .career-composer { width: 100%; max-height: none; padding: 8px; }
  .career-attachments { flex-wrap: nowrap; gap: 4px; overflow: hidden; }
  .career-composer.has-files .career-attachments { padding-inline: 0; }
  .career-attachment { flex: 0 0 calc((100% - 8px) / 3); width: calc((100% - 8px) / 3); max-width: none; gap: 4px; padding-left: 3px; }
  .career-file-icon { flex-basis: 22px; width: 22px; height: 22px; border-radius: 7px; font-size: 6px; }
  .career-file-name { font-size: 8px; }
  .career-file-remove { flex-basis: 18px; width: 18px; height: 18px; margin-left: 0; font-size: 11px; }
  .career-text-wrap { padding: 2px 5px; }
  .career-prompt { max-height: none; padding: 8px 4px; font-size: 13px; }
  .career-expand { flex-basis: 30px; width: 30px; height: 30px; margin-right: 0; }
  .career-model { margin-right: 7px; padding: 7px; font-size: 9px; }
  .career-tip::before { display: none; }
  .career-recommendations { width: 100%; margin-top: 11px; }
  .career-recommendation { padding: 7px 2px; font-size: 13px; }
  .career-rec-icon { flex-basis: 32px; width: 32px; height: 32px; }
  .career-disclaimer { max-width: 350px; font-size: 10px; line-height: 1.45; }
  .career-beta-card { min-height: 520px; padding: 126px 26px 28px; transform: translate(-50%, -43%); }
  .career-oli-frame { top: -108px; width: 255px; height: 218px; }
  .career-oli-frame img { width: 255px; }
  .career-beta-card h2 { font-size: 27px; }
  .career-dialog-copy { font-size: 14px; line-height: 1.6; }
  .career-dialog-note { margin-bottom: 20px; }
  .container, .container.narrow, .gateway-header, .gateway-footer, .gateway-hero { width: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(2.5rem, 12.5vw, 4rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.7rem); }
  .gateway-header { padding-block: 18px; }
  .gateway-header .brand img { width: 66px; height: 66px; }
  .gateway-hero { padding: 3rem 0; }
  .gateway-copy .button { width: 100%; }
  .gateway-footer { flex-direction: column; text-align: center; }
  .header-inner { min-height: 70px; }
  .site-header .brand img { width: 54px; height: 54px; }
  .header-actions { gap: 0.45rem; }
  .header-actions .button-small { display: none; }
  .waitlist-hero { padding: 2.25rem 0; }
  .hero-card { display: none; }
  .hero-card-mark { font-size: 6rem; }
  .hero-copy .button-large { width: 100%; }
  .career-journey-visual { display: block; padding: 0.8rem; overflow: hidden; }
  .career-journey-visual .desktop-journey-art, .journey-labels { display: none; }
  .mobile-journey-steps { position: relative; display: grid; gap: 0.8rem; padding: 0.35rem 0.2rem 0.6rem; }
  .mobile-journey-road { position: absolute; z-index: 0; inset: 3.5rem 0.5rem 2rem; width: calc(100% - 1rem); height: calc(100% - 5.5rem); overflow: visible; pointer-events: none; }
  .mobile-journey-road path { fill: none; vector-effect: non-scaling-stroke; }
  .mobile-journey-road .road-edge { stroke: rgba(127,204,247,0.72); stroke-linecap: round; stroke-width: 18; }
  .mobile-journey-road .road-center { stroke: rgba(255,255,255,0.95); stroke-dasharray: 10 10; stroke-linecap: round; stroke-width: 3; }
  .mobile-journey-stage { position: relative; z-index: 1; display: grid; gap: 0.25rem; }
  .mobile-stage-art { position: relative; display: grid; place-items: center; width: 100%; min-height: 245px; padding: 0.65rem 1.1rem 0; overflow: visible; border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(127,204,247,0.1)); }
  .mobile-stage-art img { position: static; display: block; width: auto; max-width: 100%; height: auto; max-height: 310px; object-fit: contain; }
  .stage-one .mobile-stage-art img { width: min(100%, 360px); }
  .stage-two .mobile-stage-art img, .stage-three .mobile-stage-art img { width: min(88%, 320px); }
  .mobile-stage-copy { position: relative; z-index: 2; display: grid; grid-template-columns: 34px 1fr; gap: 0.8rem; padding: 0.9rem 0.85rem 1.3rem; border-left: 3px solid var(--blue); border-radius: 0 0 18px 8px; background: rgba(255,255,255,0.94); }
  .mobile-stage-copy > span { padding-top: 0.15rem; color: var(--blue); font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; }
  .mobile-stage-copy h3 { margin: 0 0 0.28rem; font-size: 1.08rem; }
  .mobile-stage-copy p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.55; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .captcha-box { align-items: stretch; }
  .captcha-refresh { width: 100%; }
  .form-card { margin-top: 160px; margin-bottom: 0; border-radius: 22px; }
  .join-section { padding-top: 3.25rem; padding-bottom: 1.5rem; }
  .join-grid { row-gap: 1.5rem; }
  .oli-form-guide { top: 0; right: 2px; width: 220px; height: auto; transform: translateY(-96%); }
  .oli-form-guide img { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.35rem; }
  .info-dialog { width: calc(100% - 16px); max-height: 92vh; margin-block-end: 8px; }
  .dialog-shell { max-height: 92vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .career-attachment, .career-attachment::after, .career-composer { animation-duration: 0.01ms !important; }
}
