/* ============================================================
   STIIIZY Careers — "Wanna roll with us?"
   Rolling pre-roll lives in the FIXED BACKGROUND, scrubbed by
   scroll; you scroll down through it to the open positions.
   ============================================================ */

:root {
  --bg:        oklch(13% 0.004 250);
  --bg-deep:   oklch(8%  0.004 250);
  --surface:   oklch(17% 0.004 250);
  --text:      oklch(97% 0 0);
  --muted:     oklch(64% 0.005 250);
  --faint:     oklch(40% 0.005 250);
  --accent:    oklch(80% 0.21 140);   /* STIIIZY lime-green, matches the mouthpiece */
  --hairline:  oklch(100% 0 0 / 0.12);

  --display: "Roboto Condensed", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Roboto Condensed", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-eyebrow: clamp(0.72rem, 0.66rem + 0.25vw, 0.85rem);
  --text-hero:    clamp(2.8rem, 1rem + 7vw, 8.5rem);
  --text-h2:      clamp(2rem, 1.1rem + 3.4vw, 4rem);
  --text-role:    clamp(1.35rem, 1rem + 1.6vw, 2.4rem);
  --text-sub:     clamp(1rem, 0.92rem + 0.5vw, 1.3rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Atmospheric film grain over everything */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Fixed background pre-roll ---------- */
.stage-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-deep);
}
.stage-bg .roll-video,
.stage-bg .roll-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.stage-bg .roll-fallback { display: none; }   /* shown only for reduced-motion / no-video */
.stage-bg__scrim {
  position: absolute;
  inset: 0;
  /* Keep the roll legible behind big type without hiding it. */
  background:
    radial-gradient(120% 90% at 50% 42%, transparent 0%, oklch(8% 0.004 250 / 0.35) 70%),
    linear-gradient(180deg, oklch(8% 0.004 250 / 0.55) 0%, oklch(8% 0.004 250 / 0.30) 30%, oklch(8% 0.004 250 / 0.55) 100%);
}

/* ---------- White top banner: logo + section links + CTA ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;            /* above the grain for a crisp white bar */
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 0.5rem + 2vw, 2.8rem);
  height: 68px;
  padding: 0 clamp(1.2rem, 0.6rem + 2vw, 2.5rem);
  background: #ffffff;
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
}
.site-nav__logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.site-nav__logo img {
  height: 34px;          /* asset is tightly cropped, so this is the wordmark height */
  width: auto;
  display: block;
  /* logo art is black on a white field — multiply drops the field on the white bar */
  mix-blend-mode: multiply;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 1.4vw, 2.1rem);
}
.site-nav__links a {
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: oklch(22% 0.01 250);
  text-decoration: none;
  padding: 0.45rem 0;
  white-space: nowrap;
  transition: color 220ms ease;
}
.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out-expo);
}
.site-nav__links a:hover,
.site-nav__links a:focus-visible { color: oklch(10% 0.004 250); outline: none; }
.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after { transform: scaleX(1); }

.site-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.site-nav__cta {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: oklch(13% 0.004 250);
  background: var(--accent);
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 250ms var(--ease-out-expo), box-shadow 250ms ease;
}
.site-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px oklch(80% 0.21 140 / 0.4); }
.site-nav__cta:focus-visible { outline: 2px solid oklch(42% 0.12 150); outline-offset: 3px; }

/* Hamburger — hidden on desktop */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 40px;
  padding: 0 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  height: 2px;
  background: oklch(15% 0 0);
  border-radius: 2px;
  transition: transform 280ms var(--ease-out-expo), opacity 200ms ease;
}
.site-nav.is-open .site-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .site-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Shared ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: var(--text-eyebrow);
  color: var(--muted);
  margin: 0 0 1.4rem;
}
.page { position: relative; z-index: 1; }

/* Shared section scaffolding (everything below the hero) */
.section-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: var(--text-h2);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1.5rem 0;
}
.section-lead {
  margin: 1.4rem 0;
  max-width: 52ch;
  font-size: var(--text-sub);
  line-height: 1.6;
  color: var(--muted);
}
.accentword--solid { color: var(--accent); font-style: normal; font-weight: 900; }

/* ---------- HERO (over the rolling background) ---------- */
.hero {
  /* Tall scroll track. The background roll is scrubbed across the hero's height
     (see scrolly.js -> hero.offsetHeight), so a taller hero = a slower roll.
     200svh ≈ 2 screens of scroll ≈ half-speed. Bump this to slow it further. */
  min-height: 200svh;
}
.hero__inner {
  /* Pin the headline to the viewport while you scroll through the tall hero, so
     the roll plays out behind it instead of the text flying past. */
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 92vw;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.hero__heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 0.9;
  letter-spacing: -0.02em;
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  max-width: 7ch;          /* keep the tall stacked "Wanna / roll / with / us?" */
  text-shadow: 0 4px 40px oklch(0% 0 0 / 0.5);
}
.accentword {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}
.hero__meta {
  margin: 1.8rem auto 0;
  max-width: 42ch;
  text-shadow: 0 2px 20px oklch(0% 0 0 / 0.6);
}
.hero__depts {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: clamp(0.8rem, 0.66rem + 0.6vw, 1.05rem);
  color: var(--text);
  line-height: 1.6;
  text-wrap: balance;     /* keep "· Corporate" from orphaning on its own line */
}
.hero__states {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(0.82rem, 0.78rem + 0.25vw, 0.95rem);
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero__cta { margin-top: 2.4rem; }

/* ---------- Content wrapper: solid surface that covers the fixed roll ---------- */
.content {
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
}
.content > section {
  padding: clamp(4.5rem, 2.5rem + 7vw, 9rem) clamp(1.5rem, 0.5rem + 4vw, 6rem);
  scroll-margin-top: 84px;   /* clear the 68px fixed nav when jumping to anchors */
}
.content > section > [class$="__head"],
.content > section > [class$="__inner"] {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- MISSION / WHO WE ARE (video background) ---------- */
.mission {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.mission__bg,
.mission__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.mission__fallback { display: none; }   /* shown only for reduced-motion / no-video */
.mission__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Footage is bright gold — darken hard for white-text legibility, and fade the
     top/bottom into the page bg so it blends with the hero above + culture below. */
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 20%, transparent 74%, var(--bg-deep) 100%),
    linear-gradient(180deg, oklch(8% 0.004 250 / 0.66) 0%, oklch(8% 0.004 250 / 0.66) 100%);
}
.mission__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.mission__statement {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 1rem + 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  text-shadow: 0 2px 30px oklch(0% 0 0 / 0.6);
}
.mission__body {
  margin: 1.8rem 0 0;
  max-width: 58ch;
  font-size: var(--text-sub);
  line-height: 1.7;
  color: oklch(88% 0 0);
  text-shadow: 0 1px 16px oklch(0% 0 0 / 0.55);
}
.mission__kicker {
  margin: 1.4rem 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--accent);
  text-shadow: 0 2px 20px oklch(0% 0 0 / 0.6);
}
.mission__stats {
  margin: clamp(2.5rem, 1.5rem + 3vw, 4rem) 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 1.2rem + 1.5vw, 2.6rem) 2rem;
  border-top: 1px solid var(--hairline);
  padding-top: clamp(1.8rem, 1rem + 2vw, 2.6rem);
}
.stat {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat__icon {
  width: 32px;
  height: 32px;
  color: var(--text);
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 12px oklch(0% 0 0 / 0.55));
}
.stat__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 2px 16px oklch(0% 0 0 / 0.5);
}
.stat__label {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: oklch(82% 0 0);
  letter-spacing: 0.03em;
  line-height: 1.35;
  max-width: 20ch;
  text-shadow: 0 1px 10px oklch(0% 0 0 / 0.5);
}

/* ---------- CULTURE / LIFE AT STIIIZY ---------- */
.culture__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.culture__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.tile {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 600ms var(--ease-out-expo);
}
.tile:hover .tile__img { transform: scale(1.05); }
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.15) 100%);
}
.tile::after {
  content: attr(data-label);
  position: absolute;
  left: 1rem; top: 0.9rem;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* ---------- DAY IN THE LIFE / CULTURE VIDEO ---------- */
.culture-video__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.culture-video__frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.culture-video__player,
.culture-video__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.culture-video__fallback { display: none; }   /* shown only for reduced-motion / no-video */

/* ---------- VALUES / HOW WE ROLL ---------- */
.values { background: var(--bg); }
.values__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.lead-accent { color: var(--accent); font-weight: 600; }
.values__ask {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--text);
}
.value-grid {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  transition: transform 350ms var(--ease-out-expo), border-color 350ms ease;
}
.value-card:hover { transform: translateY(-4px); border-color: oklch(80% 0.21 140 / 0.4); }
.value-card__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.value-card__icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  margin-top: 1.1rem;
  transition: transform 350ms var(--ease-out-expo);
}
.value-card:hover .value-card__icon { transform: scale(1.06); }
.value-card__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 1rem 0 0.6rem;
}
@media (prefers-reduced-motion: reduce) {
  .value-card__icon { transition: none; }
  .value-card:hover .value-card__icon { transform: none; }
}
.value-card__body { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--muted); }

/* ---------- TEAMS / EXPLORE OUR TEAMS ---------- */
.teams__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.team-card__link {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 1.3rem;
  transition: transform 350ms var(--ease-out-expo), border-color 350ms ease;
}
.team-card__link:hover,
.team-card__link:focus-visible {
  transform: translateY(-4px);
  border-color: oklch(80% 0.21 140 / 0.55);
  outline: none;
}
.team-card__link:focus-visible { box-shadow: inset 0 0 0 2px oklch(80% 0.21 140 / 0.6); }
.team-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 600ms var(--ease-out-expo);
}
.team-card__link:hover .team-card__img,
.team-card__link:focus-visible .team-card__img { transform: scale(1.05); }
.team-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.85) 100%);
}
.team-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.team-card__link:hover .team-card__title { color: var(--accent); }
.team-card__more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.team-card__more svg { transition: transform 300ms var(--ease-out-expo); }
.team-card__link:hover .team-card__more { color: var(--text); }
.team-card__link:hover .team-card__more svg { transform: translateX(3px); }

/* ---------- BENEFITS / WHAT YOU GET ---------- */
.benefits { background: var(--bg); }
.benefits__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.benefit-grid {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.benefit {
  flex: 0 1 calc((100% - 2rem) / 3);
  min-width: 240px;
  background: var(--bg-deep);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: background 300ms ease, border-color 300ms ease;
}
.benefit:hover { background: var(--surface); border-color: oklch(80% 0.21 140 / 0.4); }
.benefit__icon {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 1.1rem;
  transition: transform 300ms var(--ease-out-expo);
}
.benefit:hover .benefit__icon { transform: translateY(-2px) scale(1.06); }
.benefit__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.benefit__body { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--muted); }

/* ---------- EMPLOYEE STORIES ---------- */
.stories__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 2rem 1.8rem;
}
.story__quote {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.story__by {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}
.story__avatar {
  width: 42px; height: 42px;
  border-radius: 999px;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, oklch(80% 0.21 140 / 0.6), oklch(40% 0.1 160));
}
.story__name { display: block; font-family: var(--display); font-weight: 700; font-size: 0.95rem; }
.story__role { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

/* ---------- LOCATIONS ---------- */
.locations { background: var(--bg); }
.locations__head { max-width: 1100px; margin: 0 auto 2.8rem; }
.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.location {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 350ms var(--ease-out-expo), border-color 350ms ease;
}
.location:hover { transform: translateY(-4px); border-color: oklch(80% 0.21 140 / 0.4); }
.location__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 600ms var(--ease-out-expo);
}
.location:hover .location__img { transform: scale(1.05); }
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.82) 100%);
}
.location__abbr {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.location__name { position: relative; z-index: 2; display: block; font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-top: 0.8rem; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.location__note { position: relative; z-index: 2; display: block; font-size: 0.8rem; color: rgba(255,255,255,0.82); margin-top: 0.3rem; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
/* Stretched click target so the whole state tile filters jobs by state */
.location__link { position: absolute; inset: 0; z-index: 4; border-radius: 14px; }
.location__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* "Showing roles in <state>" filter status above the Workable list */
.role-filter {
  max-width: 1100px;
  margin: 0 auto 1.2rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--text);
}
.role-filter__reset {
  margin-left: 0.6rem;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

/* ---------- OPEN POSITIONS ---------- */
.roles {
  position: relative;
  background: var(--bg-deep);
}
.roles__head { max-width: 1100px; margin: 0 auto 2.5rem; }

/* Workable live-jobs embed — styled to match the dark theme */
.role-embed { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--hairline); }
#whr_embed_hook { color: var(--muted); font-family: var(--body); }
#whr_embed_hook .whr-items { list-style: none; margin: 0; padding: 0; }
#whr_embed_hook .whr-item {
  padding: 1.3rem 0.25rem;
  border-bottom: 1px solid var(--hairline);
}
#whr_embed_hook .whr-title {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-role);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
#whr_embed_hook .whr-title a { color: var(--text); text-decoration: none; }
#whr_embed_hook .whr-title a:hover { color: var(--accent); }
#whr_embed_hook .whr-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}
#whr_embed_hook .whr-info span { display: none; }   /* hide the "Department:" / "Location:" field labels */
#whr_embed_hook .whr-code,
#whr_embed_hook .whr-date { display: none; }         /* hide internal job code + creation date */
#whr_embed_hook .whr-group {
  font-family: var(--display);
  font-weight: 700;
  color: var(--accent);
  margin: 1.8rem 0 0.4rem;
}

.role-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  border-top: 1px solid var(--hairline);
}
.role { border-bottom: 1px solid var(--hairline); }
.role__link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title cta"
    "meta  cta";
  align-items: center;
  gap: 0.2rem 1.5rem;
  padding: clamp(1.3rem, 1rem + 1.2vw, 2.1rem) 0.4rem;
  text-decoration: none;
  color: var(--text);
  transition: padding-left 350ms var(--ease-out-expo), background 350ms ease;
}
.role__title {
  grid-area: title;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-role);
  letter-spacing: -0.01em;
  line-height: 1.05;
  transition: color 250ms ease;
}
.role__meta {
  grid-area: meta;
  color: var(--muted);
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
}
.role__cta {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 300ms var(--ease-out-expo), transform 300ms var(--ease-out-expo), color 250ms ease;
}
.role__cta svg { transition: transform 300ms var(--ease-out-expo); }

.role__link:hover,
.role__link:focus-visible {
  background: oklch(100% 0 0 / 0.03);
  padding-left: 1.4rem;
  outline: none;
}
.role__link:hover .role__title,
.role__link:focus-visible .role__title { color: var(--accent); }
.role__link:hover .role__cta,
.role__link:focus-visible .role__cta { opacity: 1; transform: none; color: var(--text); }
.role__link:hover .role__cta svg { transform: translateX(3px); }
.role__link:focus-visible { box-shadow: inset 0 0 0 2px oklch(80% 0.21 140 / 0.5); }

/* ---------- Roles footer / CTA ---------- */
.roles__foot {
  max-width: 1100px;
  margin: clamp(3rem, 2rem + 4vw, 6rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.roles__line {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 1rem + 3vw, 3.4rem);
  letter-spacing: -0.02em;
  margin: 0;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--bg-deep);
  background: var(--text);
  text-decoration: none;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  transition: transform 300ms var(--ease-out-expo), background 300ms ease, color 300ms ease, box-shadow 300ms ease;
  box-shadow: 0 10px 40px oklch(0% 0 0 / 0.4);
}
.cta svg { transition: transform 300ms var(--ease-out-expo); }
.cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px oklch(80% 0.21 140 / 0.3);
}
.cta:hover svg { transform: translateX(4px); }
.cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.legal {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--faint);
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 70ch;
}

/* ---------- FULL FOOTER ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: clamp(3.5rem, 2rem + 5vw, 6rem) clamp(1.5rem, 0.5rem + 4vw, 6rem) 2.5rem;
}
.site-footer__top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2.5rem, 1rem + 5vw, 5rem);
}
.site-footer__wordmark {
  display: block;
  height: 2.75rem;
  width: auto;
}
.site-footer__tag {
  margin: 0.8rem 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}
.footer-col__title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 0.6rem; }
.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 200ms ease;
}
.footer-col a:hover, .footer-col a:focus-visible { color: var(--accent); outline: none; }
.site-footer__legal {
  max-width: 1100px;
  margin: clamp(2.5rem, 1.5rem + 3vw, 4rem) auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.site-footer__copy {
  margin: 0;
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- Reduced motion: static finished roll, no scrub ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage-bg .roll-video { display: none; }
  .stage-bg .roll-fallback { display: block; }
  .mission__bg { display: none; }
  .mission__fallback { display: block; }
  .culture-video__player { display: none; }
  .culture-video__fallback { display: block; }
  .journey-hero__video { display: none; }
  .journey-hero__fallback { display: block; }
  /* No scrub under reduced motion — drop the tall scroll track. */
  .hero { min-height: 100svh; }
  .hero__inner { position: static; min-height: 100svh; }
  .tile__img, .location__img, .team-card__img, .benefit__icon { transition: none; }
  .tile:hover .tile__img, .location:hover .location__img,
  .team-card__link:hover .team-card__img,
  .benefit:hover .benefit__icon { transform: none; }
}

/* ---------- Short viewports: keep hero tidy ---------- */
@media (max-height: 820px) {
  .hero__heading { font-size: clamp(2.6rem, 9vh, 6rem); }
  .hero__meta { margin-top: 1.2rem; font-size: 1rem; }
}

/* ---------- Nav collapses to a hamburger dropdown ---------- */
@media (max-width: 960px) {
  .site-nav__toggle { display: flex; }
  .site-nav__links {
    display: none;            /* instant show/hide — reliable across throttled webviews */
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid oklch(0% 0 0 / 0.08);
    padding: 0.25rem clamp(1.2rem, 0.6rem + 2vw, 2.5rem) 1rem;
    box-shadow: 0 24px 44px oklch(0% 0 0 / 0.14);
  }
  .site-nav.is-open .site-nav__links { display: flex; }
  .site-nav__links a {
    padding: 0.95rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid oklch(0% 0 0 / 0.06);
  }
  .site-nav__links a:last-child { border-bottom: 0; }
  .site-nav__links a::after { display: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 960px) {
  .mission__stats { grid-template-columns: repeat(2, 1fr); }
  .culture__grid { grid-template-columns: repeat(2, 1fr); }
  .culture__grid .tile--wide { grid-column: span 2; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit { flex-basis: calc((100% - 1rem) / 2); }
  .story-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Narrow screens ---------- */
@media (max-width: 560px) {
  .role__link {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "meta" "cta";
    gap: 0.5rem;
  }
  .role__cta { opacity: 1; transform: none; color: var(--muted); }
  .roles__foot { flex-direction: column; align-items: flex-start; }

  .mission__stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .culture__grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .culture__grid .tile--tall { grid-row: span 1; }
  .culture__grid .tile--wide { grid-column: span 1; }
  .value-grid,
  .team-grid,
  .location-grid { grid-template-columns: 1fr; }
  .benefit { flex-basis: 100%; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .site-footer__legal { flex-direction: column; }
  .site-footer__copy { white-space: normal; }

  .site-nav__cta { padding: 0.6rem 1rem; font-size: 0.72rem; letter-spacing: 0.06em; }
  .site-nav__logo img { height: 28px; }
}

/* ============================================================
   START YOUR JOURNEY — candidate-journey page
   ============================================================ */

/* Outline CTA variant (pairs with the solid .cta) */
.cta--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--hairline);
}
.cta--ghost:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

/* ---------- Journey hero ---------- */
.content > .journey-hero { padding-top: clamp(7rem, 5rem + 5vw, 10rem); text-align: center; }
.journey-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Cultivation footage background + dark scrim for legibility */
.journey-hero__video,
.journey-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.journey-hero__fallback { display: none; }   /* shown only for reduced-motion / no-video */
.journey-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* darken for white text, fade top/bottom into the page bg so it blends with nav + content */
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 24%, transparent 58%, var(--bg-deep) 100%),
    linear-gradient(180deg, oklch(8% 0.004 250 / 0.55) 0%, oklch(8% 0.004 250 / 0.62) 100%);
}
.journey-hero__box { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.journey-hero__heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.6rem, 1.4rem + 4.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 30px oklch(0% 0 0 / 0.6);
}
.journey-hero__sub {
  margin: 1.6rem auto 0;
  max-width: 56ch;
  color: oklch(88% 0 0);
  font-size: var(--text-sub);
  line-height: 1.6;
  text-shadow: 0 1px 16px oklch(0% 0 0 / 0.55);
}
.journey-hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* ---------- How it works ---------- */
.journey__intro {
  margin: 1.4rem 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: var(--text-sub);
  line-height: 1.6;
}
.journey__list {
  list-style: none;
  margin: clamp(2.6rem, 1.5rem + 3vw, 4.5rem) auto 0;
  padding: 0;
  max-width: 880px;
}
.step {
  --badge: clamp(2.6rem, 2rem + 2vw, 3.4rem);
  position: relative;
  display: grid;
  grid-template-columns: var(--badge) 1fr;
  gap: clamp(1.1rem, 0.4rem + 2.2vw, 2.6rem);
  padding-bottom: clamp(2.4rem, 1.5rem + 3vw, 4rem);
}
.step:last-child { padding-bottom: 0; }
/* connecting timeline line, centered under each badge */
.step::before {
  content: "";
  position: absolute;
  left: calc(var(--badge) / 2 - 1px);
  top: var(--badge);
  bottom: 0;
  width: 2px;
  background: var(--hairline);
}
.step:last-child::before { display: none; }
.step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--badge);
  height: var(--badge);
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--hairline);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.2rem);
  color: var(--accent);
}
.step__body { padding-top: 0.2rem; min-width: 0; }
.step__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-role);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 0.7rem;
}
.step__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 60ch;
}
.step__note {
  margin: 1.2rem 0 0;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Retail vs Corporate split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}
.split__col {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--accent);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
}
.split__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.split__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Apply CTA band ---------- */
.apply-cta { text-align: center; }
.apply-cta__box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: clamp(2.4rem, 1.5rem + 3vw, 4rem) clamp(1.5rem, 1rem + 3vw, 4rem);
}
.apply-cta__text {
  margin: 1.2rem auto 2rem;
  max-width: 46ch;
  color: var(--muted);
  font-size: var(--text-sub);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 880px;
  margin: clamp(2rem, 1rem + 3vw, 3.5rem) auto 0;
  border-top: 1px solid var(--hairline);
}
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 3rem 1.3rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  color: var(--text);
  transition: color 200ms ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent); }
.faq__q::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 14px;
  height: 14px;
  /* plus sign drawn with two gradients */
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
  transform: translateY(-50%);
  transition: transform 280ms var(--ease-out-expo);
  color: var(--muted);
}
.faq__item[open] .faq__q { color: var(--accent); }
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(135deg); color: var(--accent); }
.faq__a { padding: 0 3rem 1.4rem 0; }
.faq__a p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 64ch;
}

@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 0.9rem; }
  .step::before { display: none; }
  .split { grid-template-columns: 1fr; }
  .journey-hero__actions { flex-direction: column; align-items: stretch; }
  .journey-hero__actions .cta { justify-content: center; }
}
