/* Stryker.com design system — exact brand colors & UX patterns */
:root {
  --black: #000000;
  --white: #ffffff;
  --warm-gray: #edecec;
  --warm-gray-dark: #e2e2e0;
  --text-primary: #1b1b1b;
  --text-secondary: #5c5c5c;
  --text-muted: #767676;
  --yellow: #ffcd00;
  --yellow-hover: #f5c400;
  --yellow-soft: #faf4dc;
  --yellow-mist: #f3ebc8;
  --yellow-warm: #ebe3c4;
  --border: #d4d4d2;
  --error: #c41230;
  --success: #007a3d;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-display: "Exo 2", "Source Sans 3", sans-serif;
  --container: 75rem;
  --header-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Announcement bar (Stryker top alert) ── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.8125rem;
  padding: 0.625rem 0;
  text-align: center;
}

.announcement-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover { color: var(--yellow); }

/* ── Header (utility + global nav) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.logo-link {
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo-link:hover { opacity: 0.85; }

.logo,
.footer-brand-mark {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
  position: relative;
  padding-bottom: 4px;
}

.logo::after,
.footer-brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo::after {
  transform: scaleX(1.08);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--black);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer-brand-mark .logo-name {
  font-size: 1.25rem;
}

.footer-brand-mark .logo-tagline {
  font-size: 0.625rem;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-utils {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header-utils a,
.header-utils button {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.header-utils a:hover { color: var(--text-secondary); }

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-mobile-home,
.header-mobile-dashboard {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.dashboard-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.page-breadcrumb a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page-breadcrumb a:hover {
  color: var(--black);
}

.search-icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-utils { display: flex; }
}

/* ── Stryker link / CTA style ── */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.125rem;
  transition: border-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.link-cta:hover {
  border-color: var(--black);
  gap: 0.55rem;
}

.link-cta.light {
  color: var(--white);
  border-color: var(--yellow);
}

.link-cta.light:hover { border-color: var(--white); }

.link-cta svg {
  width: 0.625rem;
  height: 0.625rem;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.link-cta:hover svg { transform: translateX(3px); }

/* ── Buttons (forms only) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 0.875rem 2rem;
}

.btn-primary:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 0.875rem 2rem;
}

.btn-outline:hover {
  background: var(--warm-gray);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── Hero (video-overlay style) ── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  filter: brightness(1.05) contrast(1.02);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 32%,
    rgba(0, 0, 0, 0.35) 52%,
    rgba(0, 0, 0, 0.08) 75%,
    transparent 100%
  );
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.25) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 44rem;
  padding: 2.5rem 2.25rem;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 4px solid var(--yellow);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 1.5rem;
  max-width: 52rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2.25rem;
  max-width: 38rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-content {
    padding: 1.75rem 1.5rem;
  }

  .hero-bg {
    background-position: 80% center;
  }
}
.section { padding: 5rem 0; }

.section-warm { background: var(--warm-gray); }

.section-header { margin-bottom: 3rem; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
  color: var(--black);
}

.section-header p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.0625rem;
  max-width: 40rem;
}

/* ── News cards (Latest news pattern) ── */
.news-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .news-grid { grid-template-columns: repeat(4, 1fr); }
}

.news-card {
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  background: var(--warm-gray);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .news-card {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .news-card:last-child { border-right: none; }
}

.news-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1.25rem;
  color: var(--black);
}

.news-card .link-cta { font-size: 0.75rem; }

/* ── Focus cards (Our focus pattern) ── */
.focus-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .focus-grid { grid-template-columns: repeat(3, 1fr); }
}

.focus-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.section-warm .focus-card { background: var(--white); }

.focus-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
  border-color: var(--warm-gray-dark);
  z-index: 1;
}

.focus-card:hover::before { transform: scaleX(1); }

.focus-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  color: var(--black);
  line-height: 1.25;
}

.focus-card .focus-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.focus-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

/* ── Quote band ── */
.quote-band {
  background: var(--warm-gray);
  padding: 4.5rem 0;
  text-align: center;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--black);
  margin: 0 auto;
  max-width: 48rem;
  letter-spacing: -0.01em;
}

/* ── Yellow + warm-gray blend (bottom sections + footer) ── */
.stryker-page-finale {
  background: linear-gradient(
    180deg,
    var(--warm-gray) 0%,
    var(--yellow-soft) 22%,
    var(--yellow-mist) 48%,
    var(--yellow-soft) 72%,
    var(--yellow-warm) 100%
  );
}

.stryker-page-finale .quote-band,
.stryker-page-finale .section-warm {
  background: transparent;
}

.stryker-page-finale .quote-band {
  position: relative;
  padding: 5rem 0 4rem;
}

.stryker-page-finale .quote-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--black) 0%,
    var(--yellow) 35%,
    var(--yellow) 65%,
    var(--black) 100%
  );
}

.stryker-page-finale .quote-band blockquote {
  position: relative;
  padding: 0 1rem;
}

.stryker-page-finale .quote-band blockquote::before {
  content: "\201C";
  position: absolute;
  top: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 6rem);
  line-height: 1;
  color: rgba(255, 205, 0, 0.28);
  pointer-events: none;
}

.stryker-page-finale .section-warm {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.stryker-page-finale .section-warm .section-header h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, var(--yellow), var(--black));
}

/* ── Split feature (Corporate responsibility pattern) ── */
.split-feature {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split-feature { grid-template-columns: 1fr 1fr; }
}

.split-feature-media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background: var(--black);
}

.split-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.split-feature-content {
  background: var(--warm-gray);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-feature-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.split-feature-content p {
  color: var(--text-secondary);
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Page header (inner pages) ── */
.page-hero {
  background: var(--warm-gray);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.page-hero p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.0625rem;
  max-width: 36rem;
}

.page-hero--how {
  overflow: hidden;
  padding-bottom: 0;
  border-bottom: none;
}

.page-hero--how .container > h1 {
  margin-bottom: 1.25rem;
}

.recruit-lead-banner {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1.25rem 0;
  background: linear-gradient(
    110deg,
    var(--yellow) 0%,
    #ffe566 35%,
    var(--yellow) 70%,
    #f5c400 100%
  );
  background-size: 220% 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(255, 205, 0, 0.35);
  overflow: hidden;
  animation: recruitBannerGlow 4s ease-in-out infinite, recruitBannerGradient 6s ease infinite;
}

.recruit-lead-banner .container {
  position: relative;
  z-index: 1;
}

.recruit-lead-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.55), transparent 55%);
  animation: recruitGlowDrift 5s ease-in-out infinite;
  pointer-events: none;
}

.recruit-lead-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: recruitShineSweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

.recruit-lead-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--black);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.01em;
  max-width: none;
}

.recruit-lead-emphasis {
  display: inline-block;
  margin-top: 0.15rem;
  font-weight: 700;
  animation: recruitEmphasisPop 2.8s ease-in-out infinite;
}

@keyframes recruitBannerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes recruitBannerGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(255, 205, 0, 0.35); }
  50% { box-shadow: 0 12px 36px rgba(255, 205, 0, 0.55); }
}

@keyframes recruitGlowDrift {
  0%, 100% { transform: translateX(-8%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(12%) translateY(-4%); opacity: 1; }
}

@keyframes recruitShineSweep {
  0% { left: -120%; }
  45%, 100% { left: 140%; }
}

@keyframes recruitEmphasisPop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.reduce-motion .recruit-lead-banner {
  animation: none;
  background: var(--yellow);
}

.reduce-motion .recruit-lead-glow,
.reduce-motion .recruit-lead-shine,
.reduce-motion .recruit-lead-emphasis {
  animation: none;
}

/* ── Forms ── */
.form-section {
  padding: 4rem 0 5rem;
  background: var(--white);
}

.form-card {
  max-width: 40rem;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.form-card-wide {
  max-width: 52rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.form-section-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  border-radius: 0;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea { min-height: 8rem; resize: vertical; }

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.is-hidden {
  display: none;
}

.mobile-upload {
  border: 1px dashed var(--border);
  padding: 1.25rem;
  background: var(--warm-gray);
}

.upload-single-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 5.5rem;
  padding: 1.125rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.upload-single-btn:hover,
.upload-single-btn:focus-visible {
  border-color: var(--black);
  background: var(--warm-gray);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  outline: none;
}

.upload-single-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.upload-single-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

body.upload-sheet-open {
  overflow: hidden;
}

.upload-choice-sheet {
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.upload-choice-sheet[hidden] {
  display: none !important;
}

.upload-choice-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.upload-choice-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  margin: 0 0.75rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  padding: 1.25rem 1rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.upload-choice-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--black);
}

.upload-choice-subtitle {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.upload-choice-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  margin-bottom: 0.625rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--warm-gray);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.upload-choice-option:hover,
.upload-choice-option:focus-visible {
  border-color: var(--black);
  background: var(--white);
  outline: none;
}

.upload-choice-option-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.upload-choice-option-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.upload-choice-cancel {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.875rem 1rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
}

.upload-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.upload-option-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  min-height: 5.5rem;
  padding: 1rem 0.75rem;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

button.upload-option-btn {
  appearance: none;
  -webkit-appearance: none;
}

.upload-option-btn:hover,
.upload-option-btn:focus-within {
  border-color: var(--black);
  background: var(--warm-gray);
}

.upload-option-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.upload-option-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.upload-source {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-filename {
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  word-break: break-word;
}

.mobile-upload.has-file .upload-filename {
  color: var(--text-primary);
  font-weight: 600;
}

.mobile-upload .form-hint {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.interview-card {
  border: 1px solid var(--border);
  background: var(--warm-gray);
  padding: 1.25rem 1.5rem;
}

.interview-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.interview-schedule-form .form-group {
  margin-bottom: 1rem;
}

.interview-schedule-form textarea {
  min-height: 5rem;
}

body.camera-open {
  overflow: hidden;
}

.id-camera-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #000;
}

.id-camera-modal[hidden] {
  display: none !important;
}

.id-camera-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100dvh;
  background: #000;
  color: #fff;
}

.id-camera-top {
  display: grid;
  grid-template-columns: 5rem 1fr 5rem;
  align-items: center;
  padding: 0.875rem 1rem;
  padding-top: max(0.875rem, env(safe-area-inset-top));
  background: rgba(0, 0, 0, 0.72);
}

.id-camera-close {
  justify-self: start;
  border: none;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
}

.id-camera-title {
  margin: 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.id-camera-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #000;
}

.id-camera-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.id-camera-guide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.id-camera-frame {
  position: relative;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.58);
}

.id-camera-frame--card {
  width: min(88vw, 340px);
  aspect-ratio: 1.586 / 1;
}

.id-camera-frame--document {
  width: min(78vw, 300px);
  aspect-ratio: 3 / 4;
}

.id-camera-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--yellow);
  border-style: solid;
}

.id-camera-corner-tl {
  top: -2px;
  left: -2px;
  border-width: 4px 0 0 4px;
  border-radius: 8px 0 0 0;
}

.id-camera-corner-tr {
  top: -2px;
  right: -2px;
  border-width: 4px 4px 0 0;
  border-radius: 0 8px 0 0;
}

.id-camera-corner-bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 4px 4px;
  border-radius: 0 0 0 8px;
}

.id-camera-corner-br {
  bottom: -2px;
  right: -2px;
  border-width: 0 4px 4px 0;
  border-radius: 0 0 8px 0;
}

.id-camera-instruction {
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.72);
}

.id-camera-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 1.75rem;
  padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.72);
}

.id-camera-capture {
  width: 4.5rem;
  height: 4.5rem;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.id-camera-capture-ring {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.35);
  background: var(--yellow);
  transition: transform 0.15s;
}

.id-camera-capture:active .id-camera-capture-ring {
  transform: scale(0.94);
}

.file-input-wrap {
  border: 1px dashed var(--border);
  padding: 1.75rem;
  text-align: center;
  background: var(--warm-gray);
}

.file-input-wrap input[type="file"] {
  width: 100%;
  font-size: 0.875rem;
}

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.alert-error {
  background: #fff0f0;
  color: var(--error);
  border-left: 3px solid var(--error);
}

.alert-success {
  background: #f0faf4;
  color: var(--success);
  border-left: 3px solid var(--success);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Admin */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.admin-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.admin-stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.admin-table th,
.admin-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--warm-gray);
}

.admin-table th {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--warm-gray);
}

.admin-table tr:last-child td { border-bottom: none; }

.status-pill {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}

.pill-review { background: var(--black); color: var(--white); }
.pill-kyc { background: var(--yellow); color: var(--black); }
.pill-interview { background: #f3ecff; color: #4a2d7a; }
.pill-approved { background: var(--success); color: var(--white); }
.pill-rejected { background: #fde8e8; color: var(--error); }

.motivation-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0;
}

.admin-actions { margin-top: 1rem; }

.btn-danger {
  border-color: var(--error) !important;
  color: var(--error) !important;
}

.btn-danger:hover {
  background: #fff0f0 !important;
}

/* Training program */
.training-program { margin-top: 0.5rem; }

.training-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.training-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.65rem;
  margin-bottom: 1rem;
}

.training-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.training-intro {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.7;
  max-width: 40rem;
}

.training-dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1rem;
}

.training-date-item {
  background: var(--warm-gray);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
}

.training-date-item span {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.training-date-item strong {
  font-size: 0.9375rem;
  color: var(--black);
}

.training-week { margin-bottom: 2rem; }

.training-week-head {
  margin-bottom: 1.25rem;
}

.training-week-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.375rem;
}

.training-week-head h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.training-days {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.training-day {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--warm-gray);
}

.training-day-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.training-day h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  color: var(--black);
}

.training-day p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.pill-training { background: #e8f4fc; color: #0a5e8a; }

.status-badge.training {
  background: var(--yellow);
  color: var(--black);
}

.link-inline {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow);
}

.link-inline:hover { text-decoration-color: var(--black); }

/* ── Dashboard ── */
.dashboard-section {
  padding: 3rem 0 5rem;
  background: var(--warm-gray);
}

.dashboard-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .dashboard-grid { grid-template-columns: 1.6fr 1fr; }
}

.dashboard-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.dashboard-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.status-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  background: var(--yellow);
  color: var(--black);
  margin-bottom: 1.25rem;
}

.status-badge.review {
  background: var(--black);
  color: var(--white);
}

.status-message {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 0.9375rem;
}

.detail-list li:last-child { border-bottom: none; }

.detail-list span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-list span:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--black);
}

.dashboard-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

/* ── Pipeline ── */
.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
}

.pipeline-step { text-align: center; }

.pipeline-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline-line {
  flex: 1;
  height: 2px;
  background: var(--border);
}

.pipeline-line.done { background: var(--black); }

.pipeline-dot {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  flex-shrink: 0;
}

.pipeline-step.complete .pipeline-dot {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.pipeline-step.current .pipeline-dot {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  animation: stepPulse 2.2s ease infinite;
}

.pipeline-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  line-height: 1.3;
}

.pipeline-step.current .pipeline-label { color: var(--black); }

/* ── Footer (Stryker quick links) ── */
.site-footer {
  background: linear-gradient(
    180deg,
    var(--yellow-warm) 0%,
    #e4dcc0 45%,
    #ddd4b8 100%
  );
  border-top: 1px solid rgba(255, 205, 0, 0.45);
}

.footer-quick-links {
  padding: 3.5rem 0;
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-columns { grid-template-columns: repeat(4, 1fr); }
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 1.25rem;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 2px;
  margin-top: 0.5rem;
  background: var(--yellow);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 0.2em;
}

.footer-col li.plain-item {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.03);
}

.footer-logo {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-social a:hover {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
}

/* ── Steps (how it works) ── */
.steps-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .step-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .step-card:last-child { border-right: none; }
}

.step-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* Hub cards (homepage & inner pages) */
.hub-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
}

.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
  border-color: var(--warm-gray-dark);
}

.hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.hub-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.steps-grid-single {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.steps-grid-single .step-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .steps-grid-single .step-card {
    border-right: 1px solid var(--border);
  }
}

/* ── Lively motion (Stryker UX preserved) ── */
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 205, 0, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 205, 0, 0); }
}

@keyframes barShimmer {
  0%, 100% { background-color: var(--black); }
  50% { background-color: #1a1a1a; }
}

.hero.is-loaded .container > .hero-content > .hero-eyebrow { animation: fadeUp 0.7s ease 0.1s forwards; }
.hero.is-loaded .container > .hero-content > h1 { animation: fadeUp 0.8s ease 0.25s forwards; }
.hero.is-loaded .container > .hero-content > p { animation: fadeUp 0.8s ease 0.4s forwards; }
.hero.is-loaded .container > .hero-content > .hero-actions { animation: fadeUp 0.8s ease 0.55s forwards; }

.hero .container > .hero-content > * {
  opacity: 0;
  transform: translateY(24px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar {
  animation: barShimmer 6s ease-in-out infinite;
}

.announcement-bar a {
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.announcement-bar a:hover {
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.quote-band blockquote {
  transition: transform 0.4s ease;
}

.quote-band blockquote.is-visible,
.reveal.is-visible.quote-band blockquote {
  transform: scale(1);
}

.split-feature-media {
  transition: transform 0.6s ease;
}

.split-feature-media.is-visible {
  transform: scale(1.02);
}

.dashboard-card,
.form-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dashboard-card:hover,
.form-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.admin-stat {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.admin-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.training-day {
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.training-day:hover {
  background: var(--warm-gray);
  padding-left: 0.5rem;
}

.reduce-motion .hero-bg,
.reduce-motion .announcement-bar,
.reduce-motion .pipeline-step.current .pipeline-dot {
  animation: none !important;
}

.reduce-motion .hero .container > .hero-content > *,
.reduce-motion .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ── Mobile navigation ── */
.mobile-nav,
.mobile-nav-backdrop {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--black);
  margin: 3px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ── Mobile responsive ── */
@media (max-width: 899px) {
  .container {
    padding: 0 1.125rem;
  }

  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
  }

  .header-inner {
    height: 3.75rem;
    gap: 1rem;
  }

  .logo-name { font-size: 1.375rem; }
  .logo-tagline { font-size: 0.625rem; }

  .main-nav,
  .header-utils {
    display: none !important;
  }

  .header-mobile-actions {
    display: flex;
  }

  .mobile-nav,
  .mobile-nav-backdrop {
    display: block;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(18rem, 85vw);
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    padding-top: calc(3.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-inner {
    padding: 1.5rem 1.25rem;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .mobile-nav-links a {
    display: block;
    padding: 0.875rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid var(--warm-gray);
    min-height: 44px;
    line-height: 1.4;
  }

  .mobile-nav-links a.mobile-nav-cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
    margin-top: 0.75rem;
    border: none;
    padding: 1rem;
  }

  .site-header-admin .admin-nav {
    display: none !important;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
  }

  .hero .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .news-card {
    padding: 1.5rem 0;
  }

  .focus-card {
    padding: 1.75rem 1.25rem;
  }

  .quote-band {
    padding: 3rem 0;
  }

  .quote-band blockquote {
    font-size: 1.25rem;
    padding: 0 0.5rem;
  }

  .split-feature-content {
    padding: 2rem 1.25rem;
  }

  .split-feature-media {
    min-height: 14rem;
  }

  .step-card {
    padding: 1.5rem 0;
  }

  .page-hero {
    padding: 2.25rem 0;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .recruit-lead-banner {
    padding: 1rem 0;
  }

  .recruit-lead-text {
    font-size: 1rem;
  }

  .form-section {
    padding: 2.5rem 0 3.5rem;
  }

  .form-card {
    padding: 1.5rem 1.25rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 0.875rem 1rem;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .upload-single-btn {
    min-height: 4.75rem;
  }

  .upload-choice-panel {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    border-left: none;
    border-right: none;
  }

  .btn,
  .btn-primary,
  .btn-outline {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }

  .dashboard-section {
    padding: 2rem 0 3rem;
  }

  .dashboard-card {
    padding: 1.5rem 1.25rem;
  }

  .dashboard-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-topbar .btn {
    width: 100%;
  }

  .detail-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .detail-list span:last-child {
    text-align: left;
  }

  .pipeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-left: 0.25rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border);
  }

  .pipeline-step {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-align: left;
  }

  .pipeline-track {
    flex: 0 0 auto;
  }

  .pipeline-track .pipeline-line {
    display: none;
  }

  .pipeline-label {
    display: block !important;
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .training-dates {
    grid-template-columns: 1fr;
  }

  .training-day {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    padding: 1rem 0;
  }

  .training-header h2 {
    font-size: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .admin-table {
    font-size: 0.8125rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.875rem;
  }

  .admin-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .admin-actions .btn {
    width: 100%;
  }

  .motivation-text {
    word-break: break-word;
  }
}

@media (min-width: 900px) {
  .mobile-nav,
  .mobile-nav-backdrop,
  .header-mobile-actions {
    display: none !important;
  }

  .site-header-admin .admin-nav {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .logo-name { font-size: 1.2rem; }

  .hero-content {
    padding: 1.5rem 1.25rem;
  }

  .hero-bg {
    background-position: 85% center;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-stat-num {
    font-size: 1.5rem;
  }
}
