/* ============================================================
   KRAShub.org — Design System v3
   Colors extracted from official brand assets
   ============================================================ */

:root {
  /* ── Brand Palette (from actual logos) ── */
  --navy-900:  #192d52;   /* deepest navy — KRAS wordmark, borders */
  --navy-800:  #1e3560;
  --navy-700:  #254476;
  --navy-600:  #2f5492;
  --blue-500:  #3a6eb5;   /* mid brand blue */
  --blue-400:  #4d87cc;
  --blue-300:  #6da2d8;
  --silver:    #8fabbe;   /* silver from KICKERS wordmark */
  --silver-lt: #b8ccd8;
  --mist:      #dce8f0;
  --smoke:     #edf2f7;
  --white:     #ffffff;

  /* Purple accent — "hub" in KRAShub.org logo */
  --hub-purple: #5c55c0;

  /* Text */
  --text:      #192d52;
  --text-mid:  #3a5272;
  --text-muted:#637890;

  /* Warm CTA */
  --accent:    #df7338;
  --success:   #2e7d52;

  /* ── Geometry ── */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --max-w: 1120px;
  --nav-h: 70px;

  /* ── Elevation ── */
  --sh-xs: 0 1px 4px rgba(25,45,82,.07);
  --sh-sm: 0 4px 16px rgba(25,45,82,.1);
  --sh-md: 0 12px 40px rgba(25,45,82,.14);
  --sh-lg: 0 24px 72px rgba(25,45,82,.18);

  /* ── Type ── */
  --font:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-hd: 'Montserrat', 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a   { color:inherit; text-decoration:none; }

/* ── Type Scale ── */
h1,h2,h3,h4,h5 { font-family:var(--font-hd); font-weight:800; line-height:1.15; letter-spacing:-.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight:700; }

/* ── Utilities ── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 28px; }
.sr-only   { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── Pill label ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(58,110,181,.1);
  color: var(--blue-500);
  padding: 5px 13px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.label--white { background: rgba(255,255,255,.14); color: rgba(255,255,255,.88); }
.label-dot { width:6px; height:6px; background:currentColor; border-radius:50%; }
.label-dot--pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-hd);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.btn svg { flex-shrink:0; }
.btn-lg   { padding: 16px 32px; font-size: .9rem; }
.btn-sm   { padding: 9px 18px;  font-size: .78rem; }
.btn-full { width:100%; }

.btn-primary  { background:var(--navy-800); color:#fff; border-color:var(--navy-800); }
.btn-primary:hover { background:var(--navy-700); border-color:var(--navy-700); transform:translateY(-2px); box-shadow:0 8px 28px rgba(25,45,82,.28); }

.btn-outline  { background:transparent; color:var(--navy-800); border-color:var(--navy-800); }
.btn-outline:hover { background:var(--navy-800); color:#fff; transform:translateY(-2px); box-shadow:0 8px 28px rgba(25,45,82,.2); }

.btn-white    { background:#fff; color:var(--navy-800); border-color:#fff; }
.btn-white:hover { background:var(--smoke); transform:translateY(-2px); box-shadow:0 8px 28px rgba(255,255,255,.28); }

.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:#fff; transform:translateY(-2px); }

.btn-accent   { background:var(--accent); color:#fff; border-color:var(--accent); }
.btn-accent:hover { background:#c86630; border-color:#c86630; transform:translateY(-2px); box-shadow:0 8px 28px rgba(223,115,56,.38); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top:0; left:0; right:0;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(25,45,82,.08);
  z-index: 200;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(25,45,82,.11); }

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  gap: 20px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img { height: 42px; width: auto; display:block; }
.nav__logo-text {
  font-family: var(--font-hd);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy-900);
  line-height: 1;
  white-space: nowrap;
}
.nav__logo-text span { color: var(--hub-purple); }

/* Center menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__item > a,
.nav__item > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-hd);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav__item > a:hover,
.nav__item > button:hover { color:var(--navy-900); background:var(--smoke); }
.nav__item > a.active     { color:var(--navy-900); font-weight:800; background:var(--smoke); }

/* Chevron */
.nav__chevron { width:13px; height:13px; transition:transform .22s; }
.nav__item.open .nav__chevron { transform:rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid rgba(25,45,82,.09);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 8px;
  z-index: 300;
  animation: dropIn .2s ease both;
}
@keyframes dropIn {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
.nav__item.open .nav__dropdown { display:block; }

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: background .15s, color .15s;
}
.nav__dropdown a:hover { background:var(--smoke); color:var(--navy-900); }
.nav__dropdown a .dd-icon {
  width: 32px; height: 32px;
  background: var(--smoke);
  border-radius: 8px;
  display: flex; align-items:center; justify-content:center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.nav__dropdown a .dd-icon svg { width:15px; height:15px; }
.nav__dropdown a .dd-label strong { display:block; font-size:.82rem; font-weight:700; color:var(--navy-900); }
.nav__dropdown a .dd-label span  { font-size:.73rem; color:var(--text-muted); }
.nav__dropdown hr { border:none; border-top:1px solid rgba(25,45,82,.07); margin:6px 4px; }

/* Right: socials */
.nav__right { display:flex; align-items:center; gap:6px; flex-shrink:0; }
.nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(25,45,82,.13);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  transition: all .2s;
}
.nav__social:hover { border-color:var(--navy-900); color:var(--navy-900); background:var(--smoke); }
.nav__social svg { width:15px; height:15px; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background .18s;
}
.nav__burger:hover { background:var(--smoke); }
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity:0; }
.nav__burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav__burger { display:flex; }
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left:0; right:0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 20px 28px;
    border-bottom: 1px solid rgba(25,45,82,.08);
    box-shadow: var(--sh-md);
    z-index: 199;
  }
  .nav__menu.open { display:flex; }
  .nav__item > a, .nav__item > button {
    padding: 13px 10px;
    width: 100%;
    font-size: .88rem;
    justify-content: space-between;
  }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--smoke);
    padding: 4px 0 8px 14px;
    border-left: 2px solid var(--mist);
    margin-bottom: 4px;
    animation: none;
  }
  .nav__social { display:none; }
}

/* ============================================================
   ANNOUNCEMENT BAR (replaces ticker)
   ============================================================ */
.announce {
  background: var(--navy-900);
  padding: 11px 0;
  margin-top: var(--nav-h);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announce__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 3px 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.announce__badge-dot {
  width: 5px; height: 5px;
  background: #5be0a0;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.announce__text {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.announce__text strong { color:rgba(255,255,255,.95); font-weight:700; }
.announce__link {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color .18s;
  white-space: nowrap;
}
.announce__link:hover { color:rgba(255,255,255,.95); }

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  background: linear-gradient(155deg, var(--smoke) 0%, var(--mist) 100%);
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: 'K';
  position: absolute;
  right: -80px; top: -60px;
  font-family: var(--font-hd);
  font-size: 65vw;
  font-weight: 900;
  line-height: 1;
  color: rgba(25,45,82,.04);
  pointer-events: none;
  user-select: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 { color:var(--navy-900); margin-bottom:14px; }
.hero h1 em { font-style:normal; color:var(--hub-purple); }
.hero__sub { font-size:1.1rem; color:var(--text-mid); font-weight:500; margin-bottom:10px; }

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero__pill {
  background: var(--white);
  border: 1.5px solid var(--silver-lt);
  color: var(--navy-800);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.hero__ctas { display:flex; gap:12px; flex-wrap:wrap; }

/* Photo side */
.hero__visual { position:relative; }
.hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
  background: var(--navy-900);
}
.hero__img-wrap img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }

/* Floating stats card */
.hero__stats {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 26px;
  box-shadow: var(--sh-md);
  display: flex;
  gap: 28px;
  border: 1px solid rgba(25,45,82,.06);
}
.hero__stat-num {
  font-family: var(--font-hd);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy-900);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero__grid  { grid-template-columns:1fr; gap:48px; }
  .hero__stats { position:static; margin-top:20px; }
  .hero::before { display:none; }
}
@media (max-width: 520px) {
  .hero { padding:52px 0 64px; }
  .hero__ctas { flex-direction:column; }
  .hero__ctas .btn { width:100%; }
}

/* ============================================================
   PRIVACY SECTION
   ============================================================ */
.privacy {
  padding: 112px 0;
  background: var(--white);
}
.privacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.privacy h2 { color:var(--navy-900); margin-bottom:12px; }
.privacy__lead { color:var(--text-muted); font-size:1rem; margin-bottom:36px; }

.privacy__feats { display:flex; flex-direction:column; gap:24px; }
.privacy__feat  { display:flex; gap:16px; align-items:flex-start; }
.privacy__feat-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--smoke);
  border-radius: 11px;
  display: flex; align-items:center; justify-content:center;
  color: var(--blue-500);
}
.privacy__feat-ico svg { width:19px; height:19px; }
.privacy__feat h4   { color:var(--navy-900); margin-bottom:3px; font-size:.97rem; }
.privacy__feat p    { font-size:.87rem; color:var(--text-muted); line-height:1.6; }

/* Quote card */
.privacy__card {
  background: linear-gradient(148deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.privacy__card::before {
  content: '"';
  position: absolute;
  top: -28px; left: 20px;
  font-size: 14rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
}
.privacy__quote {
  font-size: .97rem;
  line-height: 1.78;
  opacity: .88;
  margin-bottom: 28px;
  position: relative;
}
.privacy__quote strong { color:var(--white); font-weight:700; }
.privacy__note {
  font-size: .77rem;
  opacity: .52;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  line-height: 1.65;
}
.privacy__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: .82rem;
  font-weight: 600;
  margin-top: 20px;
}
.privacy__meta svg { width:15px; height:15px; opacity:.6; }

@media (max-width: 900px) {
  .privacy__grid { grid-template-columns:1fr; gap:48px; }
  .privacy { padding:72px 0; }
  .privacy__card { padding:36px 28px; }
}

/* ============================================================
   BETA STRIP
   ============================================================ */
.beta-strip {
  background: var(--smoke);
  border-top: 3px solid var(--blue-400);
  padding: 36px 0;
  text-align: center;
}
.beta-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-500);
  color: var(--white);
  padding: 4px 13px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.beta-strip p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}
.beta-strip p + p { margin-top: 6px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 104px 0;
  background: linear-gradient(148deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,85,192,.16) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__inner { position:relative; z-index:1; }
.cta-band h2  { color:var(--white); margin-bottom:14px; }
.cta-band p   { font-size:1.05rem; opacity:.72; max-width:520px; margin:0 auto 40px; }
.cta-band__btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.58);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-logo img { height:44px; width:auto; filter:invert(1) brightness(1.2); opacity:.9; }
.footer__brand p {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 300px;
}
.footer__socials { display:flex; gap:8px; }
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.52);
  transition: all .2s;
}
.footer__socials a:hover { border-color:rgba(255,255,255,.55); color:var(--white); background:rgba(255,255,255,.08); }
.footer__socials svg { width:15px; height:15px; }

.footer__col h5 {
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer__col a { font-size:.87rem; transition:color .18s; }
.footer__col a:hover { color:var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
}

@media (max-width: 800px) {
  .footer__grid { grid-template-columns:1fr; gap:36px; }
  .footer__bottom { flex-direction:column; text-align:center; }
}

/* ============================================================
   VOLUNTEER HERO
   ============================================================ */
.vol-hero {
  background: linear-gradient(148deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 104px 0 100px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vol-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(92,85,192,.13) 0%, transparent 70%);
  pointer-events: none;
}
.vol-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vol-hero h1   { color:var(--white); margin-bottom:20px; }
.vol-hero__lead { font-size:1.06rem; opacity:.78; line-height:1.75; margin-bottom:36px; }
.vol-hero__perks { display:flex; flex-direction:column; gap:14px; }
.vol-hero__perk {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: .93rem;
  opacity: .82;
}
.vol-hero__perk-chk {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items:center; justify-content:center;
  font-size: .75rem;
}

/* Form card */
.vol-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  box-shadow: var(--sh-lg);
  color: var(--text);
}
.vol-form-card h3    { color:var(--navy-900); font-size:1.45rem; margin-bottom:6px; }
.vol-form-card .intro { font-size:.87rem; color:var(--text-muted); margin-bottom:28px; line-height:1.55; }

@media (max-width: 900px) {
  .vol-hero__grid { grid-template-columns:1fr; gap:48px; }
  .vol-hero { padding:80px 0 64px; }
}
@media (max-width: 520px) {
  .vol-form-card { padding:32px 24px; }
}

/* ============================================================
   FORM
   ============================================================ */
.form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label .req { color:var(--accent); margin-left:2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid rgba(25,45,82,.14);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .94rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--silver-lt); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(58,110,181,.13);
}
.form-group textarea { min-height:120px; resize:vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23637890' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-check { display:flex; align-items:flex-start; gap:11px; }
.form-check input[type=checkbox] {
  width:18px; height:18px; flex-shrink:0; margin-top:2px;
  border-radius:4px; accent-color:var(--blue-500); cursor:pointer;
}
.form-check label {
  font-size:.87rem; color:var(--text-muted); line-height:1.5;
  cursor:pointer; text-transform:none; letter-spacing:0; font-weight:500;
}
.form-success-msg {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  border-radius: var(--r-md);
  padding: 16px 20px;
  color: var(--success);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 520px) { .form-row { grid-template-columns:1fr; } }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why { padding:104px 0; background:var(--smoke); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid rgba(25,45,82,.06);
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s;
}
.why__card:hover { transform:translateY(-6px); box-shadow:var(--sh-md); }
.why__card-ico {
  width: 52px; height: 52px;
  background: var(--smoke);
  border-radius: 13px;
  display: flex; align-items:center; justify-content:center;
  color: var(--blue-500);
  margin-bottom: 20px;
}
.why__card-ico svg { width:24px; height:24px; }
.why__card h3 { color:var(--navy-900); margin-bottom:10px; }
.why__card p  { color:var(--text-muted); font-size:.9rem; line-height:1.65; }

@media (max-width: 900px) { .why__grid { grid-template-columns:1fr 1fr; } .why { padding:72px 0; } }
@media (max-width: 600px) { .why__grid { grid-template-columns:1fr; } }

/* ============================================================
   SECTION HEADER (reusable)
   ============================================================ */
.sec-header { text-align:center; margin-bottom:60px; }
.sec-header h2 { color:var(--navy-900); margin-bottom:12px; }
.sec-header p  { color:var(--text-muted); max-width:520px; margin:0 auto; font-size:1rem; }

/* ============================================================
   GENERIC PAGE HERO (template pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(155deg, var(--smoke) 0%, var(--mist) 100%);
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(25,45,82,.07);
}
.page-hero h1 { color:var(--navy-900); margin-bottom:16px; }
.page-hero p  { font-size:1.05rem; color:var(--text-mid); line-height:1.7; max-width:640px; }

/* ── Content body ── */
.content { padding:80px 0; }
.content--narrow { max-width:760px; margin:0 auto; }

/* ── Generic card grid ── */
.card-grid   { display:grid; gap:24px; }
.card-grid-2 { grid-template-columns:repeat(2,1fr); }
.card-grid-3 { grid-template-columns:repeat(3,1fr); }
@media (max-width: 900px) { .card-grid-3 { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 600px) { .card-grid-2,.card-grid-3 { grid-template-columns:1fr; } }

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid rgba(25,45,82,.07);
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform:translateY(-4px); box-shadow:var(--sh-sm); }
.card__ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--smoke);
  color: var(--blue-500);
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.card__ico svg { width:22px; height:22px; }
.card h3 { color:var(--navy-900); margin-bottom:8px; font-size:1.05rem; }
.card p  { color:var(--text-muted); font-size:.88rem; line-height:1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-500);
  margin-top: 14px;
  transition: gap .18s;
}
.card-link:hover { gap:10px; }

/* ── Divider ── */
hr.divider { border:none; border-top:1px solid rgba(25,45,82,.08); }

/* ── Page entrance ── */
main { animation: fadeUp .35s ease both; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-hero {
  background: linear-gradient(155deg, var(--smoke) 0%, var(--mist) 100%);
  padding: 88px 0 80px;
  border-bottom: 1px solid rgba(25,45,82,.07);
  position: relative;
  overflow: hidden;
}
.team-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(92,85,192,.08) 0%, transparent 70%);
  pointer-events: none;
}
.team-hero h1  { color:var(--navy-900); margin-bottom:16px; }
.team-hero p   { font-size:1.08rem; color:var(--text-mid); max-width:640px; line-height:1.7; }

/* Section wrapper */
.team-section { padding: 96px 0; }
.team-section--alt { background: var(--smoke); }

/* Person card */
.person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.person-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.person-grid--4 { grid-template-columns: repeat(4, 1fr); }

.person-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(25,45,82,.07);
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s;
}
.person-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.person-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mist) 0%, var(--smoke) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.person-card__photo img { width:100%; height:100%; object-fit:cover; }
.person-card__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--silver);
}
.person-card__photo-placeholder svg { width:48px; height:48px; }
.person-card__photo-placeholder span { font-size:.75rem; font-weight:600; letter-spacing:.05em; }

.person-card__body { padding: 22px 22px 24px; }
.person-card__name {
  font-family: var(--font-hd);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.person-card__title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.person-card__bio {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.person-card__links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.person-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1.5px solid rgba(25,45,82,.12);
  border-radius: 7px;
  color: var(--text-muted);
  transition: all .18s;
}
.person-card__link:hover { border-color:var(--navy-900); color:var(--navy-900); background:var(--smoke); }
.person-card__link svg { width:13px; height:13px; }

/* Advisor row (compact) */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.advisor-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 22px;
  border: 1px solid rgba(25,45,82,.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--sh-xs);
  transition: transform .22s, box-shadow .22s;
}
.advisor-card:hover { transform:translateY(-3px); box-shadow:var(--sh-sm); }
.advisor-card__avatar {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-hd);
  font-weight: 800;
  font-size: 1.1rem;
  overflow: hidden;
}
.advisor-card__avatar img { width:100%; height:100%; object-fit:cover; }
.advisor-card__name {
  font-family: var(--font-hd);
  font-weight: 800;
  font-size: .97rem;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.advisor-card__title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.advisor-card__affil { font-size:.83rem; color:var(--text-muted); }

/* Join CTA row */
.join-strip {
  background: var(--white);
  border: 1.5px solid rgba(25,45,82,.08);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--sh-sm);
}
.join-strip h3 { color:var(--navy-900); margin-bottom:8px; font-size:1.35rem; }
.join-strip p  { color:var(--text-muted); font-size:.93rem; max-width:480px; }
.join-strip__btns { display:flex; gap:12px; flex-shrink:0; }

@media (max-width: 900px) {
  .person-grid    { grid-template-columns:repeat(2,1fr); }
  .person-grid--4 { grid-template-columns:repeat(2,1fr); }
  .advisor-grid   { grid-template-columns:1fr; }
  .join-strip     { flex-direction:column; text-align:center; padding:36px 28px; }
  .join-strip__btns { flex-wrap:wrap; justify-content:center; }
  .team-section   { padding:64px 0; }
}
@media (max-width: 600px) {
  .person-grid, .person-grid--2 { grid-template-columns:1fr; }
}
