@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   RYZN DESIGN SYSTEM
   Brand Colors: Orange / Black / White
   ═══════════════════════════════════════════ */

:root {
  /* Brand Palette */
  --orange: #FF4D00;
  --orange-bright: #FF6A2B;
  --orange-dark: #C43A00;
  --burnt: #8B2500;
  --black: #0A0A0A;
  --dark: #141414;
  --dark-card: #1A1A1A;
  --gray-800: #2A2A2A;
  --gray-600: #4A4A4A;
  --gray-400: #7A7A7A;
  --gray-300: #9A9A9A;
  --gray-100: #E5E5E5;
  --off-white: #F5F5F3;
  --white: #FFFFFF;

  /* Functional */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-logo: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── PAGE TRANSITION ── */
.page-wrapper {
  opacity: 0;
  animation: pageIn 0.6s var(--ease) forwards;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 60px);
  height: 72px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
}
.nav-logo span { color: var(--orange); }
.nav-center {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-center a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-300);
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}
.nav-center a:hover { color: var(--white); }
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-center a:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--orange);
  color: var(--orange);
  transition: all 0.3s var(--ease);
  display: inline-block;
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--black);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.4s;
}
.mobile-overlay.active { display: flex; opacity: 1; }
.mobile-overlay a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-overlay a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .nav-center, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange-bright);
  transition: left 0.4s var(--ease);
  z-index: 0;
}
.btn-primary:hover::before { left: 0; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-primary:hover { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: transparent;
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 60px);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.15), transparent);
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.2s;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 7.5vw, 86px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.4s;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-400);
  margin-top: 24px;
  max-width: 460px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.6s;
}
.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 0.8s;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards 1.2s;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SIGNAL SECTION ── */
.signal {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--off-white);
}
.signal-inner { max-width: 620px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-100);
  max-width: 60px;
}
.signal p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-weight: 300;
}
.signal p strong {
  color: var(--black);
  font-weight: 500;
}

/* ── PROOF WALL ── */
.proof {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--black);
  overflow: hidden;
}
.proof-header {
  padding: 0 clamp(24px, 5vw, 60px);
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.proof-header .section-label { margin-bottom: 0; color: var(--gray-400); }
.proof-header .section-label::after { background: var(--gray-800); }
.proof-drag {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.08em;
}
.proof-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 60px);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.proof-track::-webkit-scrollbar { display: none; }
.proof-track:active { cursor: grabbing; }
.proof-item {
  flex: 0 0 clamp(240px, 30vw, 320px);
  aspect-ratio: 3/4;
  background: var(--dark-card);
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.proof-item:hover { transform: scale(1.02); }
.proof-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 4px;
}

/* ── BREAKDOWN ── */
.breakdown {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--off-white);
}
.section-head {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 64px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.bd-card {
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.bd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.5s var(--ease);
}
.bd-card:hover::before { width: 100%; }
.bd-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.bd-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.bd-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.bd-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-600);
  font-weight: 300;
}

/* ── VOICES / TESTIMONIALS ── */
.voices {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--dark);
}
.voices .section-head { color: var(--white); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.voice-card {
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.voice-card:hover { border-color: rgba(255, 255, 255, 0.12); }
.voice-card .quote-mark {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.voice-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-300);
  font-weight: 300;
  font-style: normal;
  margin-bottom: 28px;
}
.voice-meta { display: flex; align-items: center; gap: 12px; }
.voice-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
}
.voice-info .name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}
.voice-info .duration {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ── FILTER SECTION ── */
.filter {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--off-white);
}
.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 800px;
}
@media (max-width: 640px) {
  .filter-grid { grid-template-columns: 1fr; gap: 48px; }
}
.filter-col h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.filter-col.yes h3 { color: var(--black); }
.filter-col.no h3 { color: var(--gray-600); }
.filter-col li {
  font-size: 14px;
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 300;
}
.filter-col.yes li { color: var(--black); }
.filter-col.no li { color: var(--gray-600); }

/* ── FINAL CTA ── */
.final-cta {
  padding: clamp(100px, 14vw, 180px) clamp(24px, 5vw, 60px);
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  position: relative;
}
.final-cta .sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  padding: 32px clamp(24px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-400);
}
.footer-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-right a {
  color: var(--gray-400);
  transition: color 0.3s;
}
.footer-right a:hover { color: var(--white); }

/* ── FORM STYLES (Apply Page) ── */
.form-section {
  min-height: 100vh;
  padding: clamp(120px, 14vw, 180px) clamp(24px, 5vw, 60px) clamp(60px, 8vw, 100px);
  background: var(--black);
  display: flex;
  justify-content: center;
}
.form-container { max-width: 560px; width: 100%; }
.form-intro {
  margin-bottom: 60px;
}
.form-intro h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.form-intro p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
  font-weight: 300;
}
.form-group {
  margin-bottom: 36px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 12px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--orange);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group select option {
  background: var(--dark);
  color: var(--white);
}
.form-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}
.form-submit {
  margin-top: 48px;
}
.form-note {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 20px;
  line-height: 1.6;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 80px 0;
}
.form-success.active { display: block; }
.form-success h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-success p {
  color: var(--gray-400);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── TEAM PAGE STYLES ── */
.team-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 60px);
  padding-top: 72px;
  position: relative;
}
.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.team-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 20px;
}
.team-hero .sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-400);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}

/* Stats Bar */
.stats-bar {
  padding: 60px clamp(24px, 5vw, 60px);
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Values Grid */
.values {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 64px;
}
.value-card {
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}
.value-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.value-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-600);
  font-weight: 300;
}

/* Leadership Grid */
.leadership {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
  background: var(--black);
}
.leadership .section-head { color: var(--white); }
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.leader-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.leader-card:hover { border-color: rgba(255, 255, 255, 0.12); }
.leader-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-800);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}
.leader-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.leader-card .role {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ── UTILITY ── */
.text-orange { color: var(--orange); }
.bg-dark { background: var(--black); }
.bg-light { background: var(--off-white); }

/* ── CUSTOM CURSOR (desktop only) ── */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .custom-cursor.expanded {
    width: 40px;
    height: 40px;
    background: rgba(255, 77, 0, 0.3);
  }
}
