:root {
  --red: #E8192C;
  --black: #0A0A0A;
  --white: #F5F3EE;
  --grey: #1A1A1A;
  --mid: #333;
  --muted: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; cursor: none; }

.cursor { position: fixed; width: 10px; height: 10px; background: var(--red); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: normal; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(232,25,44,0.4); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .2s, height .2s; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2.5rem; background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-next { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--white); }
.nav-logo-box { background: var(--red); color: #fff; font-family: var(--font-display); font-size: 13px; letter-spacing: 3px; padding: 2px 7px; margin-left: 3px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(245,243,238,0.55); text-decoration: none; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.nav-cta { background: var(--red); color: #fff; padding: 8px 20px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: opacity .2s; font-family: var(--font-body); }
.nav-cta:hover { opacity: .85; }

.page-hero { padding: 9rem 2.5rem 5rem; position: relative; overflow: hidden; max-width: 1200px; margin: 0 auto; }
.page-hero::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: rgba(255,255,255,0.06); }
.page-hero-inner { max-width: 900px; }
.page-title { font-family: var(--font-display); font-size: clamp(60px, 8vw, 120px); line-height: 0.92; letter-spacing: 2px; }
.page-title span { color: var(--red); display: block; }
.page-hero-sub { font-size: 15px; color: rgba(245,243,238,0.6); max-width: 520px; margin-top: 1.25rem; line-height: 1.7; font-weight: 300; }

.section { padding: 6rem 2.5rem; }
.section-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.section-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 70px); line-height: 0.95; letter-spacing: 2px; margin-bottom: 1.5rem; }

.btn-primary { background: var(--red); color: #fff; padding: 13px 28px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; text-decoration: none; display: inline-block; transition: opacity .2s; font-family: var(--font-body); border: none; cursor: pointer; }
.btn-primary:hover { opacity: .85; }
.btn-ghost { color: var(--white); padding: 13px 28px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; text-decoration: none; display: inline-block; border: 1px solid rgba(245,243,238,0.25); transition: border-color .2s; font-family: var(--font-body); }
.btn-ghost:hover { border-color: var(--white); }

.red-divider { height: 2px; background: var(--red); }

.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.founder-card { background: var(--grey); padding: 2rem; display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1rem; }
.founder-initial { width: 60px; height: 60px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 32px; color: #fff; min-width: 60px; }
.founder-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; }
.founder-title { font-size: 12px; color: var(--muted); margin-top: 2px; }
.founder-creds { font-size: 11px; color: rgba(136,136,136,0.6); margin-top: 2px; font-family: var(--font-mono); }
.founder-tags { display: flex; flex-direction: column; gap: .5rem; }
.ftag { font-size: 11px; color: rgba(245,243,238,0.5); font-family: var(--font-mono); letter-spacing: 0.05em; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.about-body { display: flex; flex-direction: column; gap: 1rem; font-size: 14px; line-height: 1.8; color: rgba(245,243,238,0.65); font-weight: 300; }
.about-body-single { font-size: 14px; line-height: 1.8; color: rgba(245,243,238,0.65); font-weight: 300; }
.pull-quote { margin-top: 2rem; padding-left: 1.5rem; border-left: 2px solid var(--red); font-size: 17px; line-height: 1.6; color: var(--white); font-weight: 300; font-style: italic; }

.mission-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.beliefs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.08); margin-top: 2rem; }
.belief-item { background: var(--black); padding: 2rem 1.75rem; }
.belief-num { font-family: var(--font-display); font-size: 40px; color: var(--red); opacity: 0.4; line-height: 1; margin-bottom: .5rem; }
.belief-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; margin-bottom: .5rem; }
.belief-text { font-size: 12px; line-height: 1.6; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); margin-top: 2.5rem; }
.team-card { background: var(--black); padding: 2rem; transition: background .2s; display: flex; flex-direction: column; gap: .75rem; }
.team-card:hover { background: var(--grey); }
.team-card.featured-card { border-top: 2px solid var(--red); }
.team-card.apply-card { align-items: center; justify-content: center; text-align: center; border: 1px dashed rgba(255,255,255,0.1); background: transparent; }
.team-card-top { display: flex; align-items: center; justify-content: space-between; }
.team-avatar { width: 48px; height: 48px; background: rgba(232,25,44,0.15); color: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 24px; }
.team-badge { font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; background: rgba(232,25,44,0.12); color: var(--red); border: 1px solid rgba(232,25,44,0.2); }
.team-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; }
.team-role { font-size: 12px; color: var(--muted); }
.team-location { font-size: 11px; color: rgba(136,136,136,0.6); font-family: var(--font-mono); }
.team-bio { font-size: 12px; color: rgba(245,243,238,0.55); line-height: 1.6; flex: 1; }
.team-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.spec-tag { font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.08em; padding: 2px 8px; border: 1px solid rgba(255,255,255,0.12); color: rgba(245,243,238,0.4); text-transform: uppercase; }
.team-cta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); text-decoration: none; font-weight: 600; margin-top: auto; }

.join-section { padding: 8rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.join-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,25,44,0.07) 0%, transparent 70%); }
.join-title { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); line-height: 0.92; letter-spacing: 2px; position: relative; }
.join-sub { font-size: 15px; color: rgba(245,243,238,0.55); margin: 1.5rem auto 2.5rem; max-width: 480px; line-height: 1.7; font-weight: 300; }
.join-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

footer { background: #050505; padding: 4rem 2.5rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-brand-text { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; margin-top: 1rem; font-weight: 300; }
.footer-col-title { font-family: var(--font-display); font-size: 16px; letter-spacing: 2px; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); max-width: 1200px; margin: 0 auto; }
.footer-copy { font-size: 11px; color: rgba(136,136,136,0.5); font-family: var(--font-mono); letter-spacing: 0.08em; }
.footer-tagline { font-family: var(--font-display); font-size: 13px; letter-spacing: 3px; color: rgba(255,255,255,0.2); }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pinpulse { 0%{box-shadow:0 0 0 0 rgba(232,25,44,0.5)} 70%{box-shadow:0 0 0 14px rgba(232,25,44,0)} 100%{box-shadow:0 0 0 0 rgba(232,25,44,0)} }

@media (max-width: 900px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .section { padding: 3.5rem 1.25rem; }
  .about-grid, .mission-split, .partner-grid, .checkin-inner, .pri-page-inner, .contact-layout, .portal-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid, .beliefs-grid, .how-steps, .session-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .join-section { padding: 5rem 1.25rem; }
  footer { padding: 3rem 1.25rem 2rem; }
}
