/* ============================================================
   WATCHMEN ACTION — THEME CSS
   assets/css/theme.css
============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: #f7f8fa;
  color: #141414;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --blue:        #1241e0;
  --blue-dark:   #0d35b8;
  --blue-deeper: #0a2a94;
  --orange:      #D87B2F;
  --orange-lt:   #f0a05a;
  --red:         #cc1f1f;
  --white:       #ffffff;
  --offwhite:    #f7f8fa;
  --lightgray:   #eef0f4;
  --border:      #e2e5ec;
  --ink:         #141414;
  --steel:       #6b7a99;
  --steel-lt:    #9aaac4;
  --radius:      8px;
  --radius-lg:   12px;
  --transition:  0.2s ease;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; display: block;
}
.section-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900;
  text-transform: uppercase; line-height: 1.0;
  color: var(--ink); margin-bottom: 14px; letter-spacing: 0.01em;
}
.section-body { font-size: 15px; font-weight: 300; color: var(--steel); line-height: 1.8; }
.btn {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; padding: 12px 24px;
  cursor: pointer; transition: opacity var(--transition);
}
.btn:hover { opacity: 0.88; }
.btn-red    { background: var(--red); color: #fff; }
.btn-blue   { background: var(--blue); color: #fff; }
.btn-white  { background: #fff; color: var(--blue); }
.btn-ghost  { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); opacity: 1; }
.form-success {
  background: #d4edda; border: 1px solid #c3e6cb;
  color: #155724; border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 20px; font-size: 14px; font-weight: 500;
}

/* ── NAVIGATION ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--blue);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 20px rgba(18,65,224,0.3);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; padding: 0 40px;
  max-width: 1200px; margin: 0 auto;
}
.nav-logo img,
.nav-logo .custom-logo { height: 44px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-donate {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: var(--red);
  border-radius: 4px; padding: 9px 20px;
  transition: opacity var(--transition);
}
.nav-donate:hover { opacity: 0.88; }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 5px 0; transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--blue);
  padding: 52px 40px 56px;
  position: relative; overflow: hidden;
}
.hero-lion-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  opacity: 0.07;
  pointer-events: none; user-select: none;
  z-index: 0;
}
.hero-lion-bg img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.hero::before {
  content: 'ACTION';
  position: absolute; bottom: -30px; right: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px; font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none; user-select: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: block;
  position: relative; z-index: 1;
}
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; text-transform: uppercase;
  color: #fff; line-height: 0.95; letter-spacing: 0.01em; margin-bottom: 18px;
}
.hero-headline .accent { color: var(--orange); }
.hero-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 26px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }


/* ── OUR WHY ── */
.our-why { background: var(--white); padding: 80px 40px; }
.our-why-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.why-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 12px 48px rgba(18,65,224,0.12);
  aspect-ratio: 4/3; background: var(--lightgray);
  display: flex; align-items: center; justify-content: center;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-content { max-width: 520px; }

/* ── OUR METHOD ── */
.our-method { background: var(--offwhite); padding: 80px 40px; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.our-method-inner { max-width: 1200px; margin: 0 auto; }
.method-header { margin-bottom: 40px; }
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.method-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  border-top: 3px solid var(--blue);
  border-left: 0.5px solid var(--border); border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.method-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(18,65,224,0.1); }
.method-card:nth-child(2) { border-top-color: var(--orange); }
.method-num { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 12px; opacity: 0.85; }
.method-card:nth-child(2) .method-num { color: var(--orange); }
.method-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.method-card-body { font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.7; }

/* ── MEMBERSHIP ── */
.membership-section { background: #e8edf8; padding: 56px 40px; border-top: 0.5px solid #d0d9f0; border-bottom: 0.5px solid #d0d9f0; }
.membership-inner { max-width: 1200px; margin: 0 auto; }
.membership-header { text-align: center; margin-bottom: 28px; }
.membership-sub { font-size: 13px; font-weight: 300; color: var(--steel); line-height: 1.7; max-width: 420px; margin: 0 auto; }
.membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 640px; margin: 0 auto 20px; }
.membership-card {
  background: var(--white); border-radius: var(--radius); padding: 22px;
  border: 0.5px solid #c8d3ee; position: relative;
  display: flex; flex-direction: column; transition: box-shadow var(--transition);
}
.membership-card:hover { box-shadow: 0 4px 20px rgba(18,65,224,0.1); }
.membership-card-featured { border-color: var(--blue); border-width: 1.5px; }
.membership-badge {
  position: absolute; top: -11px; left: 20px;
  background: var(--blue); color: #fff;
  font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 20px; padding: 3px 12px; white-space: nowrap;
}
.membership-tier-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-lt); margin-bottom: 8px; }
.membership-card-featured .membership-tier-label { color: var(--blue); }
.membership-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; border-bottom: 0.5px solid var(--border); padding-bottom: 14px; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--ink); line-height: 1; }
.price-period { font-size: 12px; font-weight: 300; color: var(--steel-lt); }
.membership-features { list-style: none; margin-bottom: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.feature-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; font-weight: 300; color: var(--steel); line-height: 1.4; }
.feature-disabled { opacity: 0.4; }
.feature-check { font-size: 10px; font-weight: 700; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.feature-x { font-size: 10px; font-weight: 700; color: var(--border); flex-shrink: 0; margin-top: 1px; }
.membership-btn { display: block; width: 100%; text-align: center; font-family: 'Barlow', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; padding: 10px 16px; cursor: pointer; transition: opacity var(--transition); }
.membership-btn:hover { opacity: 0.88; }
.membership-btn-primary { background: var(--blue); color: #fff; }
.membership-btn-ghost { background: transparent; color: var(--steel); border: 1px solid #c8d3ee; }
.membership-btn-ghost:hover { border-color: var(--steel); opacity: 1; }
.membership-cancel { font-size: 9px; font-weight: 300; color: var(--steel-lt); text-align: center; margin-top: 7px; }
.plugin-note {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,0.6); border-radius: var(--radius);
  padding: 10px 14px; border-left: 3px solid var(--blue);
  font-size: 10px; font-weight: 300; color: var(--steel); line-height: 1.65;
}
.plugin-note strong { color: var(--blue); font-weight: 600; }
.plugin-note a { color: var(--blue); text-decoration: underline; }
.plugin-note code { background: #d0d9f0; border-radius: 3px; padding: 1px 5px; font-size: 9px; color: var(--ink); }

/* ── MEDIA HUB ── */
.media-hub { background: #0a1628; padding: 80px 40px; }
.media-hub-inner { max-width: 1200px; margin: 0 auto; }
.media-hub .eyebrow { color: var(--orange); }
.media-hub .section-headline { color: #fff; margin-bottom: 32px; }
.tab-bar { display: flex; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 36px; gap: 4px; }
.tab-btn {
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 12px 24px; cursor: pointer;
  border: none; background: none; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color var(--transition);
}
.tab-btn:hover { color: rgba(255,255,255,0.75); }
.tab-btn.active { color: #fff; border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.story-card { background: #111d45; border-radius: var(--radius); overflow: hidden; border: 0.5px solid rgba(255,255,255,0.1); transition: transform var(--transition); }
.story-card:hover { transform: translateY(-3px); }
.story-img { width: 100%; aspect-ratio: 16/9; background: var(--blue-deeper); object-fit: cover; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-body { padding: 18px; }
.pub-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; border-radius: 3px; padding: 3px 8px; margin-bottom: 10px; }
.tag-rfh  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }
.tag-watw { background: rgba(216,123,47,0.25); color: var(--orange-lt); }
.story-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.story-excerpt { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 14px; }
.story-meta { display: flex; justify-content: space-between; align-items: center; }
.story-date { font-size: 10px; color: rgba(255,255,255,0.25); }
.story-link { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.story-link:hover { color: var(--orange-lt); }
.videos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.video-card { background: #111d45; border-radius: var(--radius); overflow: hidden; border: 0.5px solid rgba(255,255,255,0.1); cursor: pointer; transition: transform var(--transition); }
.video-card:hover { transform: translateY(-3px); }
.video-thumb { width: 100%; aspect-ratio: 16/9; background: var(--blue-deeper); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,42,148,0.4); transition: background var(--transition); }
.video-card:hover .play-overlay { background: rgba(10,42,148,0.2); }
.play-btn { width: 48px; height: 48px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: transform var(--transition); }
.video-card:hover .play-btn { transform: scale(1.1); }
.play-icon { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid #fff; margin-left: 3px; }
.rumble-badge { position: absolute; top: 10px; right: 10px; background: #85c742; border-radius: 3px; font-size: 9px; font-weight: 800; color: #fff; padding: 3px 7px; }
.video-body { padding: 16px; }
.video-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 5px; }
.video-meta { font-size: 10px; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.video-link { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.podcast-list { display: flex; flex-direction: column; gap: 10px; }
.ep-card { background: #111d45; border-radius: var(--radius); padding: 18px 22px; border: 0.5px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: 48px 1fr auto; gap: 18px; align-items: center; transition: background var(--transition); }
.ep-card:hover { background: #1a2a58; }
.ep-num { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: rgba(255,255,255,0.18); text-align: center; }
.ep-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.2; }
.ep-meta { font-size: 11px; color: rgba(255,255,255,0.38); }
.ep-btn { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); background: var(--orange); border-radius: 4px; padding: 9px 16px; white-space: nowrap; transition: opacity var(--transition); }
.ep-btn:hover { opacity: 0.88; }
.nl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nl-card { background: #111d45; border-radius: var(--radius); padding: 28px 24px; border: 0.5px solid rgba(255,255,255,0.1); }
.nl-pub-tag { margin-bottom: 14px; }
.nl-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.nl-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 18px; }
.nl-divider { height: 0.5px; background: rgba(255,255,255,0.1); margin-bottom: 18px; }
.nl-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 6px; }
.nl-issue-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.nl-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-btn-read { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); background: #fff; border-radius: 4px; padding: 9px 16px; cursor: pointer; transition: opacity var(--transition); }
.nl-btn-sub { font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); border-radius: 4px; padding: 9px 16px; cursor: pointer; transition: all var(--transition); }
.nl-btn-sub:hover { background: var(--orange); color: #fff; }

/* ── FOUNDERS ── */
.founders { background: var(--white); padding: 80px 40px; border-top: 0.5px solid var(--border); }
.founders-inner { max-width: 1200px; margin: 0 auto; }
.founders-layout { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; margin-top: 36px; }
.founder-photo { border-radius: var(--radius); overflow: hidden; border: 3px solid var(--blue); box-shadow: 0 8px 32px rgba(18,65,224,0.15); aspect-ratio: 3/4; background: var(--lightgray); display: flex; align-items: center; justify-content: center; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-name { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.founder-role { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.founder-bio { font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.85; margin-bottom: 20px; max-width: 680px; }
.founder-bio p { margin-bottom: 12px; }
.founder-links { display: flex; gap: 8px; flex-wrap: wrap; }
.founder-pill { font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--steel); border: 0.5px solid var(--border); border-radius: 3px; padding: 5px 11px; background: var(--offwhite); transition: border-color var(--transition), color var(--transition); }
.founder-pill:hover { border-color: var(--blue); color: var(--blue); }

/* ── TESTIMONIAL ── */
.testimonial { background: var(--orange); padding: 80px 40px; }
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.test-mark { font-family: 'Barlow Condensed', sans-serif; font-size: 80px; font-weight: 900; color: rgba(255,255,255,0.15); line-height: 0.8; margin-bottom: -10px; }
.test-quote { font-size: 18px; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.95); line-height: 1.75; margin-bottom: 24px; }
.test-divider { width: 40px; height: 2px; background: rgba(255,255,255,0.5); margin: 0 auto 16px; }
.test-author { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.test-photo { width: 64px; height: 64px; border-radius: 50%; margin: 20px auto 0; border: 2px solid rgba(255,255,255,0.4); overflow: hidden; background: rgba(255,255,255,0.15); }
.test-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT ── */
.contact-section { background: var(--offwhite); padding: 80px 40px; border-top: 0.5px solid var(--border); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-detail { margin-top: 28px; }
.info-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-lt); margin-bottom: 4px; }
.info-value { font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.form-input { width: 100%; border: 0.5px solid var(--border); border-radius: 4px; padding: 12px 15px; font-size: 14px; font-family: 'Barlow', sans-serif; font-weight: 300; color: var(--ink); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,65,224,0.08); }
.form-input::placeholder { color: var(--steel-lt); }
textarea.form-input { resize: vertical; }
.form-submit { width: 100%; background: var(--blue); color: #fff; font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 4px; padding: 14px; cursor: pointer; margin-top: 4px; transition: opacity var(--transition); }
.form-submit:hover { opacity: 0.88; }

/* ── FOOTER ── */
.site-footer { background: var(--blue); padding: 56px 40px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-logo-link img,
.footer-logo-link .custom-logo { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 22px; max-width: 320px; }
.footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: block; }
.footer-link { display: block; font-size: 13px; font-weight: 600; color: #fff; line-height: 2.3; transition: color var(--transition); }
.footer-link:hover { color: var(--orange); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.social-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; border: 0.5px solid rgba(255,255,255,0.4); border-radius: 3px; padding: 5px 11px; transition: all var(--transition); }
.social-pill:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 0.5px solid rgba(255,255,255,0.2); padding: 16px 0 20px; font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.65; }
.footer-accent { height: 3px; background: var(--orange); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.6s ease both; }
.hero-eyebrow  { animation-delay: 0.05s; }
.hero-headline { animation-delay: 0.15s; }
.hero-sub      { animation-delay: 0.25s; }
.hero-btns     { animation-delay: 0.35s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner, .our-why-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero::before { font-size: 120px; }
  .hero-sub { max-width: 100%; }
  .method-grid { grid-template-columns: 1fr; }
  .stories-grid, .videos-grid { grid-template-columns: 1fr 1fr; }
  .nl-grid { grid-template-columns: 1fr; }
  .founders-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .membership-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 36px 24px 40px; }
  .hero-headline { font-size: 38px; }
  .our-why, .our-method, .media-hub,
  .membership-section, .founders, .testimonial,
  .contact-section, .site-footer { padding-left: 24px; padding-right: 24px; }
  .stories-grid, .videos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .tab-btn { padding: 10px 14px; font-size: 11px; }
  .ep-card { grid-template-columns: 36px 1fr; }
  .ep-btn { display: none; }
}

/* ============================================================
   ABOUT PAGE
============================================================ */

/* Page Hero */
.page-hero { background:var(--blue); padding:56px 40px 60px; position:relative; overflow:hidden; }
.page-hero::before { content:'ABOUT'; position:absolute; bottom:-24px; right:-10px; font-family:'Barlow Condensed',sans-serif; font-size:180px; font-weight:900; text-transform:uppercase; color:rgba(255,255,255,0.04); line-height:1; pointer-events:none; user-select:none; }
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow { font-size:11px; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--orange); margin-bottom:12px; display:block; }
.page-hero-headline { font-family:'Barlow Condensed',sans-serif; font-size:56px; font-weight:900; text-transform:uppercase; color:#fff; line-height:0.95; margin-bottom:16px; }
.page-hero-sub { font-size:15px; font-weight:300; color:rgba(255,255,255,0.62); line-height:1.75; max-width:560px; }

/* Org Background */
.org-background { background:var(--white); padding:80px 40px; }
.org-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.org-image { border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 12px 48px rgba(18,65,224,0.12); }
.org-image img { width:100%; height:auto; display:block; object-fit:cover; }
.about-body p { margin-bottom:14px; font-size:15px; font-weight:300; color:var(--steel); line-height:1.85; }
.about-body p:last-child { margin-bottom:0; }
.org-stat-row { display:flex; gap:32px; margin-top:32px; padding-top:28px; border-top:0.5px solid var(--border); flex-wrap:wrap; }
.org-stat { text-align:center; }
.org-stat-num { font-family:'Barlow Condensed',sans-serif; font-size:32px; font-weight:900; color:var(--blue); line-height:1; margin-bottom:5px; }
.org-stat-label { font-size:10px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--steel-lt); }

/* Mission / Vision */
.mission-strip { background:#e8edf8; padding:48px 40px; border-top:0.5px solid #d0d9f0; border-bottom:0.5px solid #d0d9f0; }
.mission-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.mission-card { background:var(--white); border-radius:var(--radius); padding:26px 24px; border-top:0.5px solid var(--border); border-right:0.5px solid var(--border); border-bottom:0.5px solid var(--border); border-radius:0; }
.mission-card-blue { border-left:3px solid var(--blue); border-radius:0 var(--radius) var(--radius) 0; }
.mission-card-orange { border-left:3px solid var(--orange); border-radius:0 var(--radius) var(--radius) 0; }
.mission-card-label { font-size:9px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--steel-lt); margin-bottom:10px; }
.mission-card-text { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:800; text-transform:uppercase; color:var(--ink); line-height:1.15; }

/* Founders */
.about-founders { background:var(--offwhite); padding:80px 40px; border-top:0.5px solid var(--border); }
.about-founders-inner { max-width:1200px; margin:0 auto; }
.about-founders-inner .eyebrow { margin-bottom:8px; }
.about-founders-inner .section-headline { margin-bottom:32px; }
.founder-combined-card { background:var(--white); border-radius:var(--radius-lg); padding:36px; border:0.5px solid var(--border); box-shadow:0 4px 24px rgba(18,65,224,0.06); }
.founder-combined-layout { display:grid; grid-template-columns:220px 1fr; gap:44px; align-items:start; }
.founder-photo-col { display:flex; flex-direction:column; align-items:center; gap:16px; }
.founder-combined-photo { width:200px; height:240px; border-radius:var(--radius); overflow:hidden; border:3px solid var(--blue); box-shadow:0 8px 32px rgba(18,65,224,0.15); flex-shrink:0; }
.founder-combined-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.founder-quick-links { display:flex; flex-direction:column; gap:7px; width:100%; }
.founder-quick-link { font-size:10px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--blue); border:0.5px solid var(--border); border-radius:3px; padding:7px 10px; text-align:center; background:var(--offwhite); transition:border-color var(--transition),background var(--transition); }
.founder-quick-link:hover { border-color:var(--blue); background:var(--white); }
.founder-combined-name { font-family:'Barlow Condensed',sans-serif; font-size:28px; font-weight:900; text-transform:uppercase; color:var(--ink); margin-bottom:5px; letter-spacing:0.01em; }
.founder-combined-role { font-size:11px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--orange); margin-bottom:20px; }
.founder-combined-bio p { font-size:14px; font-weight:300; color:var(--steel); line-height:1.85; margin-bottom:13px; }
.founder-combined-bio p:last-child { margin-bottom:0; }
.founder-combined-bio strong { font-weight:600; color:var(--ink-mid); }
.founder-combined-bio em { font-style:italic; }
.founder-credentials { display:flex; gap:8px; flex-wrap:wrap; margin-top:22px; padding-top:20px; border-top:0.5px solid var(--border); }
.founder-cred { font-size:10px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color:var(--steel); border:0.5px solid var(--border); border-radius:3px; padding:5px 11px; background:var(--offwhite); }

/* Advisory Board */
.advisory-section { background:var(--white); padding:80px 40px; border-top:0.5px solid var(--border); }
.advisory-inner { max-width:1200px; margin:0 auto; }
.advisory-inner .eyebrow { margin-bottom:8px; }
.advisory-inner .section-headline { margin-bottom:10px; }
.advisory-intro { font-size:15px; font-weight:300; color:var(--steel); line-height:1.75; max-width:600px; margin-bottom:36px; }
.advisory-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.board-card { background:var(--offwhite); border-radius:var(--radius); overflow:hidden; border:0.5px solid var(--border); transition:box-shadow var(--transition),transform var(--transition); }
.board-card:hover { box-shadow:0 6px 24px rgba(18,65,224,0.1); transform:translateY(-2px); }
.board-card-img { aspect-ratio:1/1; background:var(--lightgray); display:flex; align-items:center; justify-content:center; overflow:hidden; border-bottom:0.5px solid var(--border); }
.board-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.board-initials { font-family:'Barlow Condensed',sans-serif; font-size:40px; font-weight:900; color:var(--steel-lt); }
.board-card-body { padding:20px 18px; }
.board-name { font-family:'Barlow Condensed',sans-serif; font-size:19px; font-weight:800; text-transform:uppercase; color:var(--ink); margin-bottom:3px; line-height:1.1; }
.board-title { font-size:10px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--orange); margin-bottom:10px; }
.board-bio { font-size:13px; font-weight:300; color:var(--steel); line-height:1.65; }

/* About page responsive */
@media (max-width:960px) {
  .org-inner { grid-template-columns:1fr; }
  .mission-grid { grid-template-columns:1fr; }
  .founder-combined-layout { grid-template-columns:1fr; }
  .founder-photo-col { flex-direction:row; align-items:flex-start; flex-wrap:wrap; }
  .founder-combined-photo { width:140px; height:170px; }
  .founder-quick-links { flex-direction:row; flex-wrap:wrap; }
  .founder-quick-link { padding:5px 8px; }
  .advisory-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:640px) {
  .page-hero { padding:36px 24px 40px; }
  .page-hero-headline { font-size:40px; }
  .org-background,.about-founders,.advisory-section { padding-left:24px; padding-right:24px; }
  .mission-strip { padding-left:24px; padding-right:24px; }
  .advisory-grid { grid-template-columns:1fr; }
  .founder-photo-col { flex-direction:column; align-items:center; }
}

/* ============================================================
   EVENTS SECTION — Agenda list view
============================================================ */
.events-section { background: #1a1a2e; padding: 80px 40px; }
.events-inner { max-width: 900px; margin: 0 auto; }
.events-header { margin-bottom: 32px; }
.events-section .eyebrow { color: var(--orange); }
.events-section .section-headline { color: #fff; }

/* Legend */
.ev-legend { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.ev-leg-item { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.5); }
.ev-leg-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* Month group */
.ev-month-group { margin-bottom: 12px; }
.ev-month-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.25); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }

/* Event card */
.ev-card { display: grid; grid-template-columns: 64px minmax(0,1fr) auto; gap: 0; background: #0d0d1f; border-radius: var(--radius); border: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 8px; overflow: hidden; transition: border-color 0.15s, transform 0.15s; }
.ev-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.ev-card.ev-ev-orange { border-left: 3px solid var(--orange); }
.ev-card.ev-ev-blue   { border-left: 3px solid rgba(255,255,255,0.3); }
.ev-card.ev-ev-red    { border-left: 3px solid var(--red); }
.ev-card.ev-ev-purple { border-left: 3px solid #8b5cf6; }

/* Date badge */
.ev-date-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 6px; border-right: 0.5px solid rgba(255,255,255,0.06); gap: 2px; }
.ev-day-num { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.ev-day-of-week { font-size: 8px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.ev-today-tag { font-size: 7px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); background: rgba(216,123,47,0.15); border-radius: 2px; padding: 1px 4px; margin-top: 3px; }

/* Content */
.ev-content { padding: 12px 16px; display: flex; flex-direction: column; justify-content: center; gap: 4px; min-width: 0; overflow: hidden; }
.ev-type-pill { display: inline-block; font-size: 8px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; padding: 2px 7px; width: fit-content; }
.ev-pill-orange { background: rgba(216,123,47,0.2); color: #f0a05a; }
.ev-pill-blue   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.ev-pill-red    { background: rgba(204,31,31,0.2); color: #f08080; }
.ev-pill-purple { background: rgba(139,92,246,0.2); color: #c4b5fd; }
.ev-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1.1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.ev-meta  { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev-desc  { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1.5; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Action */
.ev-action { display: flex; align-items: center; justify-content: center; padding: 12px 16px; border-left: 0.5px solid rgba(255,255,255,0.06); min-width: 110px; }
.ev-register-btn { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; border-radius: 4px; padding: 9px 16px; white-space: nowrap; text-decoration: none; display: block; text-align: center; transition: opacity 0.15s; }
.ev-register-btn:hover { opacity: 0.85; }
.ev-no-url { font-size: 9px; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }

/* Empty state */
.ev-empty { text-align: center; padding: 48px 24px; color: rgba(255,255,255,0.25); font-size: 13px; font-weight: 300; background: #0d0d1f; border-radius: var(--radius); border: 0.5px solid rgba(255,255,255,0.08); }

@media (max-width: 640px) {
  .events-section { padding: 44px 24px; }
  .ev-card { grid-template-columns: 52px 1fr; }
  .ev-action { display: none; }
  .ev-title { font-size: 15px; white-space: normal; }
}


/* ============================================================
   SPONSORS & SUPPORTERS PAGE
============================================================ */
.sponsors-page { }

.sponsors-tier { padding: 48px 40px; border-top: 0.5px solid var(--border); }
.sponsors-tier:first-child { border-top: none; }
.sponsors-tier-inner { max-width: 1200px; margin: 0 auto; }

.sponsors-tier-label-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.sponsors-tier-line  { height: 2px; flex: 1; border-radius: 1px; }
.sponsors-tier-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }

.sponsors-list { display: flex; flex-direction: column; gap: 14px; }

.sponsor-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.sponsor-card:hover { box-shadow: 0 6px 28px rgba(18,65,224,0.09); transform: translateY(-2px); }

.sponsor-logo-wrap {
  background: var(--offwhite);
  border-right: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 20px; min-height: 120px; flex-shrink: 0;
}
.sponsor-logo-img { max-width: 100%; max-height: 80px; width: auto; height: auto; object-fit: contain; display: block; }
.sponsor-logo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sponsor-logo-ph-text { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: var(--steel-lt); }
.sponsor-logo-ph-sub  { font-size: 9px; font-weight: 400; color: var(--steel-lt); }

.sponsor-content { display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.sponsor-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; text-transform: uppercase; color: var(--ink); letter-spacing: 0.01em; line-height: 1.1; }
.sponsor-tier-pill { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.sponsor-desc { font-size: 13px; font-weight: 300; color: var(--steel); line-height: 1.75; margin-top: 4px; }
.sponsor-link { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-top: 8px; transition: color var(--transition); }
.sponsor-link:hover { color: var(--blue-dark); }

/* Sponsor CTA */
.sponsor-cta { background: var(--blue); padding: 72px 40px; border-top: 3px solid var(--orange); }
.sponsor-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.sponsor-cta-inner .section-headline { color: #fff; margin-bottom: 12px; }
.sponsor-cta-body { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 28px; }
.sponsor-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 640px) {
  .sponsors-tier { padding-left: 24px; padding-right: 24px; }
  .sponsor-card { grid-template-columns: 1fr; }
  .sponsor-logo-wrap { border-right: none; border-bottom: 0.5px solid var(--border); min-height: 100px; }
  .sponsor-cta { padding-left: 24px; padding-right: 24px; }
}


/* ── END CALENDAR ── */

/* ============================================================
   TRAINING PAGE
============================================================ */
.training-hero::before { content: 'TRAINING'; }

.training-section { padding: 72px 40px; }
.training-inner { max-width: 1200px; margin: 0 auto; }
.training-inner-centered { text-align: center; max-width: 800px; }

.training-steps { background: var(--white); border-top: 0.5px solid var(--border); }
.training-4hours { background: var(--offwhite); border-top: 0.5px solid var(--border); }
.training-video-section { background: var(--white); border-top: 0.5px solid var(--border); }

.training-intro { max-width: 640px; margin-bottom: 32px; }
.training-video-intro { max-width: 600px; margin: 0 auto 32px; }

/* Graphics */
.training-graphic-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 40px rgba(18,65,224,0.12); margin-bottom: 32px;
}
.training-graphic { width: 100%; height: auto; display: block; }

/* Step descriptions */
.training-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.training-step { padding: 4px 0; }
.training-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 900; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px; line-height: 1.1;
}
.training-step-body { font-size: 13px; font-weight: 300; color: var(--steel); line-height: 1.75; }

/* Pillars */
.training-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.training-pillar {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.training-pillar-blue   { border-top: 3px solid var(--blue); }
.training-pillar-orange { border-top: 3px solid var(--orange); }
.training-pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.training-pillar-body { font-size: 13px; font-weight: 300; color: var(--steel); line-height: 1.7; }

/* Video */
.training-video-wrap {
  position: relative; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #0a1628;
  box-shadow: 0 12px 48px rgba(18,65,224,0.2);
  max-width: 800px; margin: 0 auto;
}
.training-video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.training-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.training-video-play-btn {
  width: 64px; height: 64px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.training-video-play-btn::after {
  content: ''; position: absolute;
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #fff;
  margin-left: 4px;
}
.training-video-ph-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  color: rgba(255,255,255,0.4); letter-spacing: 0.06em;
}
.training-video-ph-sub { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.22); }

/* CTA */
.training-cta {
  background: var(--orange); padding: 72px 40px;
  border-top: 3px solid rgba(255,255,255,0.15);
}
.training-cta-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.training-cta-headline { color: #fff; margin-bottom: 12px; }
.training-cta-body { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 28px; }
.training-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 768px) {
  .training-section { padding: 48px 24px; }
  .training-steps-grid,
  .training-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .training-cta { padding: 52px 24px; }
}

/* ── TRAINING PAGE TWO-COLUMN LAYOUT ── */
.training-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.training-two-col-reverse { direction: rtl; }
.training-two-col-reverse > * { direction: ltr; }

.training-text-col { display: flex; flex-direction: column; gap: 0; }
.training-img-col .training-graphic-wrap { margin-bottom: 0; }
.training-img-col .training-graphic { border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,0.15); }

.training-steps-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.training-step { padding-left: 16px; border-left: 3px solid var(--blue); }
.training-step-title { font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:800; text-transform:uppercase; color:var(--ink); margin-bottom:5px; }
.training-step-body { font-size:13px; font-weight:300; color:var(--steel); line-height:1.7; }

.training-pillars-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.training-pillar { padding: 16px 18px; border-radius: var(--radius); background: var(--white); border: 0.5px solid var(--border); }
.training-pillar-blue  { border-left: 3px solid var(--blue); }
.training-pillar-orange { border-left: 3px solid var(--orange); }
.training-pillar-title { font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:900; text-transform:uppercase; color:var(--ink); margin-bottom:5px; }
.training-pillar-body  { font-size:13px; font-weight:300; color:var(--steel); line-height:1.7; }

@media (max-width: 860px) {
  .training-two-col { grid-template-columns: 1fr; gap: 32px; }
  .training-two-col-reverse { direction: ltr; }
}

/* ── SHOP LINKS ── */
.nav-link-shop { color: var(--orange) !important; font-weight: 600 !important; }
.nav-link-shop:hover { color: #fff !important; }
.footer-link-shop { color: var(--orange) !important; }
.footer-link-shop:hover { color: #fff !important; }

/* Shop callout strip below membership */
.shop-callout {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 20px;
  border-top: 0.5px solid #d0d9f0;
}
.shop-callout-text {
  font-size: 13px; font-weight: 300; color: var(--steel);
}
.shop-callout-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  border: 1px solid var(--blue); border-radius: 4px;
  padding: 8px 18px; transition: background var(--transition), color var(--transition);
}
.shop-callout-link:hover { background: var(--blue); color: #fff; }

/* ── MULTI-DAY EVENT DATE BADGE ── */
.ev-date-range { padding: 10px 6px; }
.ev-date-range .ev-day-num { font-size: 14px; line-height: 1.2; text-align: center; white-space: nowrap; }
.ev-date-range .ev-day-of-week { font-size: 7px; white-space: nowrap; text-align: center; }
