/* ==========================================================================
   Trusted Pro Connect — shared design system
   Built from the TPC logo: royal blue → indigo → purple on light backgrounds.
   Audience: home-service business owners.
   ========================================================================== */

:root {
  /* Brand */
  --blue-royal: #1E3AC4;
  --blue-royal-dark: #17309F;
  --blue-bright: #3B6FF0;
  --navy: #101C4A;
  --navy-deep: #0B1430;
  --indigo: #3B4FE0;
  --purple: #8B3FB0;
  --purple-bright: #9A4FC4;
  --grad: linear-gradient(120deg, #1E3AC4 0%, #3B4FE0 48%, #9A4FC4 100%);
  --grad-soft: linear-gradient(135deg, #EEF1FF 0%, #F6EEFC 100%);

  /* Neutrals */
  --white: #FFFFFF;
  --gray-cool: #F6F8FC;
  --blue-pale: #F4F7FF;
  --lavender-pale: #FAF7FF;
  --charcoal: #242A38;
  --ink: #111A3D;
  --muted: #5A6379;
  --muted-light: #7A8299;
  --border: #E4E8F5;
  --border-strong: #D9DFF0;

  /* Feedback */
  --danger: #C33B3B;
  --danger-bg: #FDF1F1;
  --danger-border: #F2C9C9;
  --notice: #8A6A22;
  --notice-bg: #FFF8E9;
  --notice-border: #F2DFB4;
  --good: #1F7A4D;
  --good-bg: #EDF7F1;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(20, 35, 90, .06);
  --shadow-md: 0 12px 28px rgba(20, 35, 90, .10);
  --shadow-lg: 0 20px 50px rgba(18, 32, 84, .13);
  --shadow-brand: 0 10px 26px rgba(30, 58, 196, .28);

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 22px; --s-6: 28px;  --s-7: 36px;  --s-8: 48px;
  --s-9: 64px; --s-10: 80px; --s-11: 104px;

  /* Type scale */
  --t-xs: 13px; --t-sm: 14.5px; --t-base: 17px; --t-md: 18.5px;
  --t-lg: 20px; --t-xl: 24px;   --t-2xl: 31px;  --t-3xl: 40px; --t-4xl: 52px;
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Geometry */
  --r-sm: 10px; --r-md: 14px; --r-lg: 18px; --r-xl: 22px; --r-pill: 999px;
  --container: 1200px;
  --container-narrow: 1000px;
  --speed: .18s;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: pretty;
}
h1 { font-size: clamp(34px, 5vw, var(--t-4xl)); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, var(--t-3xl)); font-weight: 800; }
h3 { font-size: var(--t-lg); font-weight: 700; }
h4 { font-size: var(--t-base); font-weight: 700; }
p  { margin: 0; text-wrap: pretty; }

a { color: var(--blue-royal); text-decoration: none; }
a:hover { color: var(--purple); text-decoration: underline; }

img { max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid #7C5CE0; outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; text-decoration: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-10) 0; }
.section-tight { padding: var(--s-8) 0; }
.lede { font-size: var(--t-md); color: var(--muted); line-height: 1.6; max-width: 66ch; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--purple); }
.grad-text { background: linear-gradient(110deg, #1E3AC4 10%, #5B45D8 55%, #A855C9 95%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }
.measure { max-width: 660px; }
.measure-center { max-width: 680px; margin-left: auto; margin-right: auto; }

.bg-pale { background: var(--blue-pale); border-block: 1px solid #E9EDF8; }
.bg-cool { background: var(--gray-cool); border-block: 1px solid #E9EDF8; }
.bg-lav  { background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--blue-pale) 100%); border-block: 1px solid #ECE7F7; }
.bg-navy { background: var(--navy); color: #DCE3F7; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-grad { background: linear-gradient(120deg, #1B2FA8 0%, #3B3FD4 45%, #8B44C6 100%); color: #DDE2FB; }
.bg-grad h1, .bg-grad h2 { color: #fff; }

.grid { display: grid; gap: var(--s-5); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-8); align-items: center; }
.split-start { align-items: start; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px;
  padding: 15px 28px; border-radius: 12px; border: none; cursor: pointer;
  min-height: 50px; text-decoration: none; text-align: center;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, border-color var(--speed) ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(30, 58, 196, .36); }
.btn-solid { background: var(--blue-royal); color: #fff; }
.btn-solid:hover { background: var(--blue-royal-dark); color: #fff; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: #763394; color: #fff; }
.btn-outline { background: #fff; color: var(--blue-royal); border: 2px solid #C9D3F5; padding: 13px 26px; }
.btn-outline:hover { border-color: var(--blue-royal); background: var(--blue-pale); color: var(--blue-royal); }
.btn-light { background: #fff; color: #1E2FA8; }
.btn-light:hover { background: #EFE9FB; color: #1E2FA8; transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.5); padding: 13px 26px; }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-sm { font-size: 15px; padding: 12px 20px; min-height: 44px; border-radius: var(--r-sm); }
.btn-lg { font-size: 17.5px; padding: 18px 34px; min-height: 58px; }
.link-arrow { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Header ---------- */
.topbar { background: linear-gradient(120deg, #101C4A 0%, #1E3AC4 60%, #6D3A9E 100%); color: #DCE4FF; font-size: 13.5px; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; justify-content: center; padding-block: 9px; text-align: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 3px; }
.topbar a:hover { color: #fff; text-decoration-color: #fff; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.site-header .container { display: flex; align-items: center; gap: var(--s-4); padding-block: 8px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 58px; width: auto; display: block; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links > a, .nav-links .menu > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 11px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 600;
  color: #2C3550; white-space: nowrap; background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.nav-links > a:hover, .nav-links .menu > button:hover { background: #EEF2FF; color: var(--blue-royal); text-decoration: none; }
.nav-links a[aria-current="page"], .nav-links .menu[data-active] > button { background: var(--grad-soft); color: var(--blue-royal); }
.menu { position: relative; }
.menu > button svg { transition: transform var(--speed) ease; }
.menu[data-open] > button svg { transform: rotate(180deg); }
.menu-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 70;
}
.menu[data-open] .menu-panel { display: block; }
.menu-panel a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 600; color: #2C3550; }
.menu-panel a:hover { background: #EEF2FF; color: var(--blue-royal); text-decoration: none; }
.menu-panel a span { display: block; font-weight: 400; font-size: 13.5px; color: var(--muted-light); margin-top: 2px; }
.nav .btn { margin-left: 10px; padding: 12px 20px; font-size: 15px; min-height: 46px; border-radius: var(--r-sm); }
.nav-login { font-size: 14px; font-weight: 600; color: var(--muted); padding: 8px 10px; white-space: nowrap; }
.nav-toggle { display: none; margin-left: 8px; background: #F3F5FC; border: 1px solid #E0E5F3; border-radius: var(--r-sm); width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer; }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: #fff; padding: 12px var(--s-5) var(--s-6); max-height: 78vh; overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 10px; border-radius: var(--r-sm); font-size: 16.5px; font-weight: 600; color: #2C3550; }
.mobile-nav a:hover { background: #EEF2FF; text-decoration: none; }
.mobile-nav .mgroup { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-light); padding: 16px 10px 4px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: var(--t-sm); color: var(--muted-light); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumbs a { font-weight: 600; }
.page-head { background: linear-gradient(170deg, var(--blue-pale) 0%, #FFF 100%); border-bottom: 1px solid #E9EDF8; }
.page-head .container { padding-block: var(--s-8) var(--s-8); }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-6); }
.card-hover { transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #BFC9F0; }
.card h3 + p, .card h2 + p { margin-top: 9px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.card-top-blue { border-top: 4px solid var(--blue-royal); }
.card-top-purple { border-top: 4px solid var(--purple-bright); }
.card-left-blue { border-left: 4px solid var(--blue-royal); }
.card-left-purple { border-left: 4px solid var(--purple-bright); }
.card-dashed { border: 1px dashed #C9D2EA; background: #FBFCFF; }
.card-soft { background: var(--blue-pale); border: 1px solid var(--border); }

.icon-tile { display: flex; width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft); color: #3E43CE; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-tile-grad { background: var(--grad); color: #fff; }
.num-tile { display: flex; width: 42px; height: 42px; border-radius: 11px; background: var(--grad); color: #fff; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; }

/* Pillars */
.pillar { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-5); text-align: left; }
.pillar h3 { margin-top: 14px; font-size: 18.5px; }
.pillar p { margin-top: 8px; font-size: 15.5px; color: var(--muted); line-height: 1.5; }

/* Category chips for "who TPC is for" */
.cat-chip {
  display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px; font-family: var(--font-head); font-weight: 700;
  font-size: 16px; color: var(--ink);
}
.cat-chip .icon-tile { width: 38px; height: 38px; border-radius: 10px; }

/* ---------- Badges ---------- */
.badge { display: inline-block; font-size: 12.5px; font-weight: 700; border-radius: var(--r-pill); padding: 5px 11px; }
.badge-blue { color: var(--blue-royal); background: #EEF2FF; }
.badge-purple { color: var(--purple); background: #F6EDFB; }
.badge-sample { color: var(--notice); background: #FBF0D9; }
.chip { background: #fff; border: 1px solid #E1E6F5; border-radius: var(--r-pill); padding: 11px 20px; font-size: 16.5px; font-weight: 700; font-family: var(--font-head); color: #2B3455; }
.badge-row { display: flex; flex-wrap: wrap; gap: 7px; }
.trust-line { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid #DDE3F5; border-radius: var(--r-pill); padding: 7px 15px 7px 9px; font-size: 13.5px; font-weight: 600; color: #33406B; box-shadow: var(--shadow-sm); }
.trust-line .dot { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(120deg, #1E3AC4, #A855C9); flex-shrink: 0; }

/* ---------- Comparison ---------- */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.vs-col { border-radius: var(--r-lg); padding: var(--s-6); }
.vs-old { background: var(--gray-cool); border: 1px solid var(--border); }
.vs-new { background: linear-gradient(165deg, #F3F6FF 0%, #FAF6FF 100%); border: 1px solid #D9E0F8; border-top: 4px solid var(--blue-royal); }
.vs-col h3 { font-size: 21px; }
.vs-col ul { margin-top: var(--s-4); display: flex; flex-direction: column; gap: 12px; }
.vs-col li { display: flex; gap: 11px; align-items: flex-start; font-size: 16.5px; line-height: 1.5; }
.vs-old li { color: var(--muted); }
.vs-new li { color: #2B3455; font-weight: 600; }
.vs-col li svg { flex-shrink: 0; margin-top: 3px; }

.matrix-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; }
table.matrix { width: 100%; border-collapse: collapse; min-width: 760px; }
table.matrix th, table.matrix td { padding: 15px 18px; text-align: left; border-bottom: 1px solid #EDF0F9; font-size: 15.5px; vertical-align: top; }
table.matrix thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-size: 15px; font-weight: 700; position: sticky; top: 0; }
table.matrix thead th.tpc-col { background: linear-gradient(120deg, #1E3AC4, #8B44C6); }
table.matrix tbody th { font-family: var(--font-head); font-weight: 700; color: var(--ink); width: 26%; background: #FBFCFF; }
table.matrix td.tpc-col { background: #F7F5FF; font-weight: 600; color: #2B3455; }
table.matrix tr:last-child th, table.matrix tr:last-child td { border-bottom: none; }
.unknown { color: var(--muted-light); font-style: italic; }

.acc { border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; overflow: hidden; }
.acc + .acc { margin-top: 10px; }
.acc > button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px; color: var(--ink);
}
.acc > button:hover { background: var(--blue-pale); }
.acc > button svg { flex-shrink: 0; transition: transform var(--speed) ease; }
.acc[data-open] > button svg { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 18px 18px; }
.acc[data-open] .acc-body { display: block; }
.acc-body dl { display: grid; grid-template-columns: 1fr; gap: 12px; }
.acc-body .row { border-top: 1px solid #EDF0F9; padding-top: 12px; }
.acc-body dt { font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-light); }
.acc-body dd { margin: 4px 0 0; font-size: 16px; color: #2B3455; }
.acc-body .row-tpc dt { color: var(--purple); }
.acc-body .row-tpc dd { font-weight: 600; }

/* ---------- Ecosystem hub diagram ---------- */
.hub { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hub-core {
  grid-column: 1 / -1; background: var(--grad); color: #fff; border-radius: var(--r-lg);
  padding: var(--s-6); text-align: center;
}
.hub-core h3 { color: #fff; font-size: 24px; }
.hub-core p { color: #DCE2FB; margin-top: 8px; font-size: 16.5px; }
.hub-node { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; text-align: center; }
.hub-node h4 { font-size: 16.5px; margin-top: 12px; }
.hub-node .icon-tile { margin: 0 auto; }

/* ---------- Notices ---------- */
.notice { background: var(--notice-bg); border: 1px solid var(--notice-border); border-radius: var(--r-sm); padding: 13px 18px; font-size: 15px; color: #6B5320; display: flex; gap: 10px; align-items: flex-start; }
.notice svg { flex-shrink: 0; margin-top: 3px; }
.info-panel { background: #EEF2FF; border: 1px solid #D8E0FA; border-radius: var(--r-md); padding: var(--s-5); color: #2B3455; }
.alert-error { background: var(--danger-bg); border: 1px solid var(--danger-border); border-left: 4px solid var(--danger); border-radius: var(--r-md); padding: 15px 18px; color: #8E2C2C; font-size: 16px; }
.disclaimer { background: var(--gray-cool); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s-5); font-size: 15px; color: var(--muted); line-height: 1.6; }
.disclaimer strong { color: var(--charcoal); }

/* ---------- Media placeholders ---------- */
.media-slot { border-radius: var(--r-xl); border: 1px solid #DFE5F5; background: #EDF1FB; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--s-6); aspect-ratio: 4 / 3.2; color: var(--muted-light); }
.media-slot .slot-label { font-size: var(--t-sm); font-weight: 700; color: #4E5A7C; font-family: var(--font-head); margin-top: 12px; }
.media-slot .slot-hint { font-size: 13.5px; color: #77809C; line-height: 1.5; max-width: 300px; margin: 6px auto 0; }

/* ---------- Forms ---------- */
.field { display: block; }
.field > span.label { display: block; font-size: var(--t-sm); font-weight: 700; color: #2B3455; margin-bottom: 7px; }
.field > span.hint { display: block; font-size: 13.5px; color: var(--muted-light); margin: -3px 0 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--border-strong);
  border-radius: 11px; font-size: 16px; background: #FBFCFF; transition: border-color var(--speed) ease;
}
.field textarea { resize: vertical; font-family: var(--font-body); }
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-royal); }
.field [aria-invalid="true"] { border-color: var(--danger); background: #FFFBFB; }
.field-error { display: none; margin-top: 6px; font-size: var(--t-sm); color: var(--danger); font-weight: 600; }
.field-error.show { display: block; }
.check-field { display: flex; gap: 13px; align-items: flex-start; background: var(--blue-pale); border: 1.5px solid #DFE5F5; border-radius: 13px; padding: 18px 20px; cursor: pointer; }
.check-field.invalid { border-color: var(--danger); }
.check-field input { width: 21px; height: 21px; margin: 2px 0 0; accent-color: var(--blue-royal); cursor: pointer; flex-shrink: 0; }
.check-field span { font-size: 16px; color: #2B3455; line-height: 1.55; }
.form-card { background: #fff; border: 1px solid #DFE5F5; border-radius: var(--r-xl); padding: var(--s-8); box-shadow: var(--shadow-lg); }
.form-section { border-top: 1px solid var(--border); padding-top: var(--s-6); margin-top: var(--s-7); }
.form-section:first-of-type { border-top: none; padding-top: 0; margin-top: var(--s-6); }
.form-section > h3 { font-size: 21px; }
.form-section > p.sub { color: var(--muted); font-size: 15.5px; margin-top: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); margin-top: var(--s-5); }
.form-grid .full { grid-column: 1 / -1; }
.form-success { text-align: center; padding: var(--s-7) var(--s-2); }
.success-mark { display: inline-flex; width: 66px; height: 66px; border-radius: 50%; background: var(--grad); align-items: center; justify-content: center; }
.form-note { font-size: var(--t-sm); color: var(--muted-light); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
[hidden] { display: none !important; }

/* ---------- Events ---------- */
.event-list { border: 1px solid #E1E6F5; border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.event-row { display: grid; grid-template-columns: 118px 1fr auto; gap: var(--s-5); align-items: center; padding: var(--s-5); border-bottom: 1px solid #EDF0F9; }
.event-row:last-child { border-bottom: none; }
.event-date { background: linear-gradient(150deg, #101C4A 0%, #2A2F82 100%); border-radius: 13px; padding: 12px 8px; text-align: center; color: #fff; }
.event-date .dow { display: block; font-size: 13px; font-weight: 600; color: #B9A6E8; }
.event-date .day { display: block; font-size: 30px; font-weight: 800; font-family: var(--font-head); line-height: 1.1; }
.event-date .mon { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .09em; color: #C9D2F2; }
.event-venue { color: var(--purple); font-weight: 600; font-size: 16.5px; margin-top: 6px; }

/* ---------- FAQ / lists ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; padding: var(--s-5); }
.faq-item + .faq-item { margin-top: 12px; }
.faq-item h3 { font-size: var(--t-lg); }
.faq-item p { margin-top: 9px; color: var(--muted); font-size: 16.5px; line-height: 1.6; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 16.5px; color: #3E4761; line-height: 1.5; }
.check-list svg { flex-shrink: 0; margin-top: 4px; }

.std-list { display: flex; flex-direction: column; gap: 12px; }
.std-list li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--blue-royal); border-radius: var(--r-md); padding: 16px 18px; }
.std-list li svg { flex-shrink: 0; margin-top: 3px; }
.std-list li span { font-size: 16.5px; color: #2B3455; line-height: 1.5; }
.std-list li.no { border-left-color: #C33B3B; }

/* ---------- Dark tiles ---------- */
.tile-dark { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); border-radius: 13px; padding: 17px 18px; display: flex; gap: 11px; align-items: flex-start; }
.tile-dark span { font-size: 16px; font-weight: 600; color: #E6EAFA; line-height: 1.4; }
.tile-dark svg { flex-shrink: 0; margin-top: 3px; }
.eco-panel { background: linear-gradient(160deg, #141F4A 0%, #232A6E 55%, #4A2A78 100%); border-radius: var(--r-xl); padding: var(--s-9); color: #DDE3F7; }
.eco-panel h2, .eco-panel h3 { color: #fff; }
.eco-panel p { color: #BCC5E2; }
.eco-tile { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-md); padding: 20px 18px; }
.eco-tile p { color: #B4BEDE; font-size: 15px; line-height: 1.5; margin-top: 8px; }
.foundation-pill { border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-pill); padding: 9px 18px; font-size: var(--t-sm); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #E4E9FA; }
.mission-line { font-size: 21px; font-weight: 700; font-family: var(--font-head); color: #fff; }

.pull-quote { margin: 0; border-radius: var(--r-lg); border: 1px solid var(--border); border-left: 5px solid var(--purple-bright); background: linear-gradient(165deg, #F8F6FF 0%, #F6F8FF 100%); padding: var(--s-7) var(--s-6); }
.pull-quote p { font-size: 21px; line-height: 1.55; color: #2B3455; font-family: var(--font-head); font-weight: 600; }
.pull-quote footer { margin-top: var(--s-4); font-size: 15px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--purple); }

.statement { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1.25; color: var(--ink); letter-spacing: -.02em; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 76ch; }
.prose h2 { font-size: 26px; margin-top: var(--s-7); }
.prose h3 { font-size: 19px; margin-top: var(--s-5); }
.prose p, .prose li { font-size: 16.5px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose li { margin-top: 8px; }
.prose strong { color: var(--charcoal); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s cubic-bezier(.2,.7,.3,1), transform .55s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card-hover:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 1080px) {
  .g3, .g4, .g5 { grid-template-columns: repeat(2, 1fr); }
  .hub { grid-template-columns: repeat(2, 1fr); }
  .eco-panel { padding: var(--s-7); }
}
@media (max-width: 760px) {
  .section { padding: var(--s-8) 0; }
  .g2, .g3, .g4, .g5, .split, .vs-grid, .form-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hub { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 84px 1fr; }
  .event-row .btn { grid-column: 1 / -1; }
  .form-card { padding: var(--s-6) var(--s-5); }
  .brand img { height: 50px; }
  .split { gap: var(--s-7); }
  .matrix-wrap { display: none; }
}
@media (min-width: 761px) { .acc-mobile { display: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #AEB8D6; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-8); padding-block: var(--s-9) var(--s-7); }
.site-footer h3 { font-size: var(--t-sm); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.site-footer ul { margin-top: var(--s-4); display: flex; flex-direction: column; gap: 11px; }
.site-footer a { color: #AEB8D6; font-size: 16px; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-logo { display: inline-flex; background: #fff; border-radius: var(--r-md); padding: 14px 18px; }
.footer-logo img { height: 78px; width: auto; display: block; }
.footer-creed { display: flex; flex-wrap: wrap; gap: 10px 26px; padding: var(--s-5) 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-creed span { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: #C9D2F2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; padding-block: var(--s-5); }
.footer-bottom p { font-size: 16px; font-weight: 700; font-family: var(--font-head); color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; font-size: var(--t-sm); }
@media (max-width: 1080px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .site-footer .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); } }
