/* ===========================================================
   SalesPilot — tokens (brand colors confirmed, kept as-is)
   =========================================================== */
:root {
  --navy:        #14284A;
  --navy-deep:   #0A1730;
  --navy-black:  #060D1C;
  --paper:       #F5F7FB;
  --paper-raise: #E9EDF6;
  --coral:       #E2593D;
  --coral-deep:  #C1431F;
  --ink:         #101826;
  --ink-soft:    #47536A;
  --line:        #D7DEEA;
  --line-dark:   rgba(245, 247, 251, 0.16);

  --font-display: 'Big Shoulders Display', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Work Sans', ui-sans-serif, system-ui, sans-serif;

  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--coral); color: var(--navy-black);
  padding: 0.75em 1.25em; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ===========================================================
   Buttons — full pill, condensed uppercase
   =========================================================== */
.btn-apply {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--coral);
  color: var(--navy-black);
  padding: 0.6em 1.7em;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-apply:hover { background: var(--coral-deep); color: var(--paper); transform: translateY(-2px); }
.btn-apply--lg { font-size: 1.3rem; padding: 0.75em 2.2em; }
.btn-apply--wide { width: 100%; }

/* ===========================================================
   Header — transparent overlay, solidifies on scroll
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.25s ease, padding 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 13, 28, 0.88);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.4rem 0;
  transition: padding 0.25s ease;
}
.is-scrolled .header-inner { padding: 0.9rem 0; }
.brand-logo { height: 24px; width: auto; }
.brand-logo--footer { height: 20px; }

/* ===========================================================
   Hero — full-bleed poster
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--navy-black);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,13,28,.65) 0%, rgba(6,13,28,.3) 45%, rgba(6,13,28,.95) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  width: 100%;
}
.hero-kicker {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--coral);
  margin-bottom: 1rem;
}
.hero-headline {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1.2rem;
}
.hero-headline .hl { color: var(--coral); }
.hero-lede {
  font-size: 1.1rem;
  color: rgba(245, 247, 251, 0.82);
  max-width: 48ch;
  margin-bottom: 2rem;
}

/* ===========================================================
   Mission — pull quote
   =========================================================== */
.mission { padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; }
.mission-mark { height: 26px; width: auto; margin: 0 auto 2rem; opacity: 0.85; }
.mission-quote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy-deep);
  max-width: 46ch;
  margin: 0 auto;
}

/* ===========================================================
   Ticker
   =========================================================== */
.ticker {
  background: var(--navy-black);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: baseline; gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 251, 0.85);
  padding: 0 1.6rem;
}
.ticker-item .t-time {
  font-variant-numeric: tabular-nums;
  color: var(--coral);
  font-weight: 700;
}
.ticker-item .t-dot { color: var(--coral); opacity: 0.6; }

/* ===========================================================
   Section kicker — shared heading device
   =========================================================== */
.section-kicker {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-kicker em { font-style: normal; color: var(--coral); }
.section-kicker--on-dark { color: var(--paper); }

/* ===========================================================
   Roles — bento grid
   =========================================================== */
.roles { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 4px;
}
.bento-tile {
  padding: 1.8rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--paper-raise);
  border: 1px solid var(--line);
}
.bento-tile--coral { background: var(--coral); border-color: var(--coral); }
.bento-tile--navy { background: var(--navy-deep); border-color: var(--navy-deep); }

@media (min-width: 761px) {
  .bento-tile:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .bento-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
  .bento-tile:nth-child(3) { grid-column: 3; grid-row: 1; }
  .bento-tile:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }
}
.bento-tile h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4em;
}
.bento-tile p { font-size: 0.95rem; }
.bento-tile--coral h3, .bento-tile--coral p { color: var(--navy-black); }
.bento-tile--navy h3, .bento-tile--navy p { color: var(--paper); }
.bento-tile--navy p, .bento-tile--coral p { opacity: 0.85; }
.bento-tile:not(.bento-tile--coral):not(.bento-tile--navy) h3 { color: var(--navy-deep); }
.bento-tile:not(.bento-tile--coral):not(.bento-tile--navy) p { color: var(--ink-soft); }

@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-tile { min-height: 160px; }
}

/* ===========================================================
   Verticals — horizontal scroll strip
   =========================================================== */
.verticals { background: var(--navy-deep); padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.vertical-scroll {
  display: flex; gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  background: var(--line-dark);
}
.vertical-chip {
  scroll-snap-align: start;
  flex: 1 0 260px;
  background: var(--navy-deep);
  padding: 2.2rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  border-top: 4px solid var(--coral);
}
.vertical-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.vertical-chip p { color: rgba(245, 247, 251, 0.65); font-size: 0.95rem; max-width: 32ch; }

/* ===========================================================
   Why — circular photo + scattered points
   =========================================================== */
.why { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-media { display: flex; justify-content: center; }
.why-media img {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--paper-raise);
  outline: 2px solid var(--coral);
  outline-offset: 8px;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2rem;
  margin-top: 1rem;
}
.why-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.why-term { font-weight: 700; color: var(--navy-deep); margin-bottom: 0.3em; }
.why-desc { color: var(--ink-soft); font-size: 0.93rem; }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-points { grid-template-columns: 1fr; }
}

/* ===========================================================
   Join — vertical timeline
   =========================================================== */
.join { background: var(--paper-raise); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.timeline { position: relative; max-width: 640px; }
.timeline::before {
  content: "";
  position: absolute; top: 22px; bottom: 22px; left: 22px;
  width: 2px; background: var(--line);
}
.timeline-step {
  position: relative;
  display: flex; gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  position: relative; z-index: 1;
}
.timeline-step h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 0.4em; }
.timeline-step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===========================================================
   Stats — light scatter
   =========================================================== */
.stats { padding: clamp(3rem, 6vw, 5rem) 0; }
.stats-row {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: clamp(2rem, 6vw, 4.5rem);
  justify-content: center;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--coral);
  line-height: 0.9;
}
.stat--sm .stat-num { font-size: clamp(2.5rem, 6vw, 4rem); }
.stat--lg { margin-bottom: 1rem; }
.stat--lg .stat-num { font-size: clamp(3.5rem, 9vw, 6rem); }
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ===========================================================
   Apply
   =========================================================== */
.apply { background: var(--coral); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.apply-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--navy-black);
  margin-bottom: 0.8rem;
}
.apply-copy h2 .hl { color: var(--paper); }
.apply-copy p { color: rgba(6, 13, 28, 0.75); max-width: 34ch; font-size: 1.02rem; }
.apply-form {
  background: var(--paper);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 0.5em;
}
.form-row input, .form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.6em 0.1em;
  border: none;
  border-bottom: 2px solid var(--line);
  background: transparent;
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-bottom-color: var(--coral); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; color: var(--ink-soft); }
.form-status.is-ok { color: var(--coral-deep); font-weight: 700; }
.form-status.is-error { color: #9C3B2E; font-weight: 700; }

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

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--navy-black);
  color: rgba(245, 247, 251, 0.6);
  padding: 2rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-meta { font-size: 0.8rem; }
