/* ============================================================
   RPL.ORG.AU — Asset Community Initiative
   Brand: Asset Community palette + Nunito / Lora
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy:   #1B3A6B;
  --green:  #00A850;
  --purple: #7B3FA0;
  --orange: #F47920;
  --pink:   #E5007E;
  --mint:   #4DC8A0;

  --navy-light: #234d8a;
  --navy-dark:  #122849;
  --green-light:#00c760;
  --bg:         #f8f9fb;
  --bg-card:    #ffffff;
  --text:       #1a1a2e;
  --text-mid:   #3d3d5c;
  --text-light: #6b7280;
  --border:     #e2e8f0;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(27,58,107,.1);
  --shadow-lg:  0 12px 40px rgba(27,58,107,.15);

  --font-body:  'Nunito', sans-serif;
  --font-serif: 'Lora', serif;

  --nav-h: 72px;
  --max-w: 1180px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--green); }
ul { list-style: none; }
/* Explicitly hide dropdown menus — prevent any bleed-through in the page flow */
.nav-links ul { display: none !important; }
.nav-dropdown:hover > ul,
.nav-dropdown:hover .dropdown-menu { display: block !important; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--alt { background: #fff; }
.section--navy { background: var(--navy); }
.section--dark { background: var(--navy-dark); }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-brand-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.5px;
  line-height: 1;
}
.nav-brand-name span { color: var(--green); }
.nav-brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg); }
.nav-links .nav-cta {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--green-light); color: #fff; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
}
.dropdown-menu a:hover { background: var(--bg); color: var(--navy); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none !important;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  padding: calc(var(--nav-h) + 16px) 24px 24px;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open {
  display: block !important;
  visibility: visible;
}
.mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin: 20px 0 4px;
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #234d8a 100%);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77,200,160,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,168,80,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,200,160,.2);
  border: 1px solid rgba(77,200,160,.4);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--mint); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 640px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-light); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,168,80,.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.card-icon--green  { background: rgba(0,168,80,.12); }
.card-icon--navy   { background: rgba(27,58,107,.1); }
.card-icon--purple { background: rgba(123,63,160,.1); }
.card-icon--orange { background: rgba(244,121,32,.1); }
.card-icon--mint   { background: rgba(77,200,160,.15); }
.card-icon--pink   { background: rgba(229,0,126,.1); }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- Section headers ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-mid); }

/* ---------- Callout / Alert boxes ---------- */
.callout {
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
  border-left: 4px solid;
}
.callout--info   { background: rgba(27,58,107,.06); border-color: var(--navy); }
.callout--warn   { background: rgba(244,121,32,.08); border-color: var(--orange); }
.callout--good   { background: rgba(0,168,80,.08); border-color: var(--green); }
.callout--risk   { background: rgba(229,0,126,.07); border-color: var(--pink); }
.callout--purple { background: rgba(123,63,160,.07); border-color: var(--purple); }
.callout h4 { margin-bottom: 8px; }
.callout--warn h4 { color: var(--orange); }
.callout--risk h4 { color: var(--pink); }
.callout--good h4 { color: var(--green); }
.callout--purple h4 { color: var(--purple); }

/* ---------- Lists ---------- */
.check-list, .cross-list, .bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li, .cross-list li, .bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.check-list li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.cross-list li::before { content: '✗'; color: var(--pink); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.bullet-list li::before { content: '›'; color: var(--navy); font-weight: 900; flex-shrink: 0; margin-top: 1px; font-size: 1.2em; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}
thead th {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: #f9fbfd; }
.td-good { color: var(--green); font-weight: 700; }
.td-warn { color: var(--orange); font-weight: 700; }
.td-bad  { color: var(--pink); font-weight: 700; }

/* ---------- Accordion / FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--green); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 20px; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { margin-bottom: 4px; }
.step-body p { margin: 0; font-size: 0.95rem; }

/* ---------- Screenshot / TGA guide ---------- */
.tga-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.tga-step-header {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tga-step-num {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.tga-step-header h4 { color: #fff; font-size: 0.95rem; margin: 0; }
.tga-screenshot {
  background: #f0f4f8;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  position: relative;
}
.tga-mock {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.tga-browser-bar {
  background: #e8eaed;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d1d5db;
}
.tga-browser-dots { display: flex; gap: 5px; }
.tga-browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.tga-browser-dots span:nth-child(1) { background: #ff5f57; }
.tga-browser-dots span:nth-child(2) { background: #febc2e; }
.tga-browser-dots span:nth-child(3) { background: #28c840; }
.tga-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: #666;
  font-family: monospace;
}
.tga-content { padding: 16px 20px; }
.tga-note {
  padding: 14px 20px;
  background: rgba(0,168,80,.06);
  border-top: 1px solid rgba(0,168,80,.2);
  font-size: 0.875rem;
  color: var(--text-mid);
}
.tga-note strong { color: var(--green); }

/* ---------- Sponsor cards ---------- */
.sponsor-featured {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  color: #fff;
  margin-bottom: 48px;
}
.sponsor-featured-logo {
  width: 180px;
  height: 100px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2);
}
.sponsor-featured-logo span {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  padding: 8px;
}
.sponsor-featured-body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.sponsor-featured-body .badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sponsor-featured-body p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

.sponsor-group-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}

.sponsor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.sponsor-card:hover { box-shadow: var(--shadow); }
.sponsor-logo-placeholder {
  width: 80px;
  height: 60px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
  flex-shrink: 0;
}
.sponsor-card-body { flex: 1; }
.sponsor-card-body h4 { margin-bottom: 4px; font-size: 1rem; }
.sponsor-card-body p { font-size: 0.875rem; margin-bottom: 8px; }
.sponsor-card-body a.ext-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}
.sponsor-card-body a.ext-link::after { content: ' →'; }

.sponsor-enquiry {
  background: linear-gradient(135deg, rgba(123,63,160,.08), rgba(27,58,107,.06));
  border: 1px solid rgba(123,63,160,.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77,200,160,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,.8); max-width: 600px; }

/* ---------- Content page layout ---------- */
.content-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.sidebar-nav {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-nav-title {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all .15s;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--navy); background: rgba(27,58,107,.04); padding-left: 22px; }
.sidebar-nav a.active { border-left: 3px solid var(--green); }

.content-body h2 { margin: 40px 0 16px; padding-top: 8px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin: 28px 0 12px; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.stat-item {
  background: rgba(255,255,255,.08);
  padding: 28px 20px;
  text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--mint); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.footer-brand-name span { color: var(--mint); }
.footer-brand-tag { font-size: 0.72rem; color: var(--mint); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h5 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,.6); padding: 3px 0; transition: color .15s; }
.footer-col a:hover { color: var(--mint); }
.footer-disclaimer {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.disclaimer-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 900px;
}
.disclaimer-text strong { color: rgba(255,255,255,.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  padding-top: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-funded {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 24px;
}
.footer-funded span { font-size: 0.78rem; color: rgba(255,255,255,.6); }
.footer-funded a { font-size: 0.78rem; color: var(--mint); font-weight: 700; }

/* ---------- Quick-nav tiles (home) ---------- */
.quick-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quick-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.quick-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--green));
  transform: scaleX(0);
  transition: transform .2s;
}
.quick-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); color: inherit; }
.quick-tile:hover::after { transform: scaleX(1); }
.quick-tile-icon { font-size: 1.8rem; }
.quick-tile h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }
.quick-tile p { font-size: 0.875rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.quick-tile-arrow { color: var(--text-light); font-size: 1.1rem; margin-top: auto; }

/* ---------- Tag pills ---------- */
.tag { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.tag--green  { background: rgba(0,168,80,.12); color: var(--green); }
.tag--orange { background: rgba(244,121,32,.12); color: var(--orange); }
.tag--purple { background: rgba(123,63,160,.12); color: var(--purple); }
.tag--pink   { background: rgba(229,0,126,.1); color: var(--pink); }
.tag--navy   { background: rgba(27,58,107,.1); color: var(--navy); }
.tag--mint   { background: rgba(77,200,160,.15); color: #2a9e7c; }

/* ---------- Highlight band ---------- */
.highlight-band {
  background: var(--green);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.highlight-band p { color: rgba(255,255,255,.9); margin: 0; font-weight: 600; }

/* ---------- Evidence types grid ---------- */
.evidence-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.evidence-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.evidence-item-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .quick-tiles { grid-template-columns: 1fr; }
  .sponsor-featured { flex-direction: column; padding: 32px; }
  .sponsor-featured-logo { width: 100%; height: 80px; }
  .hero-actions { flex-direction: column; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .highlight-band { flex-direction: column; }
  .evidence-grid { grid-template-columns: 1fr; }
  .tga-mock { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 40px 0 32px; }
}
