:root {
  --navy: #0f2747;
  --blue: #1f5ea8;
  --light-blue: #eaf3fb;
  --gold: #f0b429;
  --red: #d62828;
  --text: #1d2733;
  --muted: #5f6b7a;
  --white: #ffffff;
  --bg: #f7f9fc;
  --border: #dbe4ef;
  --shadow: 0 14px 34px rgba(15,39,71,.11);
  --shadow-soft: 0 8px 22px rgba(15,39,71,.08);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(31,94,168,.35); outline-offset: 3px; }

.container,
.topbar-inner,
.header-inner,
.hero-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 999;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: relative;
  z-index: 80;
  background: var(--navy);
  color: var(--white);
  font-size: .92rem;
}
.topbar-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-tagline { font-weight: 700; line-height: 1.35; }
.top-links { display: flex; align-items: center; gap: 0; }
.menu-item { position: relative; }
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.menu-trigger:hover,
.menu-trigger[aria-current="page"],
.menu-item:hover > .menu-trigger,
.menu-item.is-open > .menu-trigger { background: rgba(255,255,255,.12); }
.caret { font-size: .7rem; transition: transform .2s ease; }
.menu-item.is-open .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 245px;
  padding: 9px;
  border: 1px solid rgba(15,39,71,.08);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(15,39,71,.18);
  display: none;
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 650;
}
.dropdown a:hover,
.dropdown a[aria-current="page"] { background: var(--light-blue); color: var(--blue); }
.menu-item:hover .dropdown,
.menu-item:focus-within .dropdown,
.menu-item.is-open .dropdown { display: block; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,39,71,.08);
}
.header-inner {
  min-height: 93px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.brand-title { margin: 0; color: var(--navy); font-size: 1rem; line-height: 1.18; font-weight: 800; }
.brand-subtitle { margin: 3px 0 0; color: var(--muted); font-size: .83rem; }
.header-utility {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-link { color: var(--blue); font-weight: 700; font-size: .92rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 21px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #bd2020; }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--light-blue); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-home {
  position: relative;
  min-height: 76vh;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1b31;
}
.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8,26,49,.82) 0%, rgba(8,26,49,.62) 46%, rgba(8,26,49,.34) 100%), url('community-hero.webp');
  background-size: cover;
  background-position: center;
}
.hero-home::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,26,49,.25), transparent 45%);
}
.hero-inner { position: relative; z-index: 2; padding: 86px 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .68fr); gap: 48px; align-items: end; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(255,227,154,.42);
  border-radius: 999px;
  background: rgba(240,180,41,.16);
  color: #ffe39a;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .025em;
}
.hero-home h1,
.page-hero h1 {
  margin: 0 0 20px;
  max-width: 840px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.hero-home .lead { max-width: 720px; margin: 0 0 28px; color: rgba(255,255,255,.94); font-size: 1.12rem; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.hero-point { padding: 16px; border: 1px solid rgba(255,255,255,.17); border-radius: 16px; background: rgba(255,255,255,.10); backdrop-filter: blur(7px); }
.hero-point strong { display: block; font-size: 1.2rem; margin-bottom: 3px; }
.hero-point span { color: rgba(255,255,255,.86); font-size: .9rem; }
.hero-panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.hero-panel h2 { margin: 0 0 8px; font-size: 1.35rem; }
.hero-panel p { margin: 0 0 18px; color: rgba(255,255,255,.88); }
.hero-quick { display: grid; gap: 10px; }
.hero-quick a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 14px; background: var(--white); color: var(--navy); border-radius: 13px; font-weight: 800; }
.hero-quick a:hover { background: var(--light-blue); color: var(--blue); }

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}
.page-hero::before { background-image: linear-gradient(90deg, rgba(8,26,49,.86) 0%, rgba(8,26,49,.63) 52%, rgba(8,26,49,.35) 100%), url('community-hero.webp'); }
.page-hero .hero-inner { padding: 70px 0; }
.page-hero .kicker { margin: 0 0 12px; color: #ffe39a; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }
.page-hero p { max-width: 720px; margin: 0 0 24px; color: rgba(255,255,255,.92); font-size: 1.08rem; }
.page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4.25rem); }

.section { padding: 76px 0; }
.section-sm { padding: 52px 0; }
.section-white { background: var(--white); }
.section-blue { background: linear-gradient(135deg, #f6faff, #edf5fc); }
.section-navy { background: var(--navy); color: var(--white); }
.section-head { max-width: 850px; margin-bottom: 30px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { margin: 0 0 8px; color: var(--blue); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.14; letter-spacing: -.015em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.section-navy .section-head h2 { color: var(--white); }
.section-navy .section-head p { color: rgba(255,255,255,.78); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.media-card { position: relative; min-height: 390px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.media-card .caption { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 16px 18px; border-radius: 14px; background: rgba(15,39,71,.88); color: var(--white); font-weight: 700; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid rgba(15,39,71,.07); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); }
.card--flat { box-shadow: none; border-color: var(--border); }
.card-label { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 42px; padding: 0 10px; border-radius: 12px; background: var(--light-blue); color: var(--blue); font-weight: 900; font-size: .85rem; margin-bottom: 18px; }
.card h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.2rem; line-height: 1.3; }
.card p { margin: 0; color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 15px; color: var(--blue); font-weight: 800; }
.card .text-link:hover { text-decoration: underline; }

.focus-card { position: relative; overflow: hidden; }
.focus-card::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; right: -40px; top: -40px; background: rgba(31,94,168,.06); }

.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.stat-box { padding: 22px; border-radius: 17px; background: var(--white); border: 1px solid var(--border); }
.stat-box strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 1.7rem; }
.stat-box span { color: var(--muted); }

.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: start; }
.timeline-year { padding: 12px 14px; border-radius: 12px; background: var(--navy); color: var(--white); text-align: center; font-weight: 900; }
.timeline-body { padding: 4px 0 20px; border-bottom: 1px solid var(--border); }
.timeline-body h3 { margin: 0 0 8px; color: var(--navy); }
.timeline-body p { margin: 0; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { padding: 24px; text-align: center; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.avatar { width: 78px; height: 78px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--light-blue), #d6e8f8); color: var(--navy); font-weight: 900; font-size: 1.15rem; border: 4px solid var(--white); box-shadow: 0 0 0 1px var(--border); }
.team-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; }
.team-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.event-card { display: flex; flex-direction: column; min-height: 100%; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 10px; border-radius: 999px; background: var(--light-blue); color: var(--blue); font-size: .78rem; font-weight: 800; }
.badge.gold { background: #fff6d9; color: #7b5700; }
.badge.navy { background: #e7edf5; color: var(--navy); }
.event-card .text-link { margin-top: auto; padding-top: 18px; }

.feature-band { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: center; padding: 38px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); box-shadow: var(--shadow); }
.feature-band h2 { margin: 0 0 10px; font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.15; }
.feature-band p { margin: 0; color: rgba(255,255,255,.88); }
.feature-list { display: grid; gap: 10px; }
.feature-list div { padding: 14px 16px; border-radius: 13px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.13); }

.callout { padding: 34px; border-radius: var(--radius-lg); background: var(--light-blue); border: 1px solid #d3e4f3; }
.callout h2, .callout h3 { margin-top: 0; color: var(--navy); }
.callout p { color: var(--muted); }

.list-check { list-style: none; padding: 0; margin: 18px 0 0; }
.list-check li { position: relative; padding-left: 26px; margin: 9px 0; color: var(--text); }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.form-shell { max-width: 820px; margin: 0 auto; padding: 34px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-weight: 800; font-size: .92rem; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #cbd7e4;
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  padding: 12px 13px;
}
.form-field textarea { min-height: 145px; resize: vertical; }
.form-note { color: var(--muted); font-size: .88rem; margin: 12px 0 0; }
.hidden { display: none !important; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.contact-card { padding: 28px; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.contact-card h3 { margin-top: 0; }
.contact-card a { color: #dbeafe; text-decoration: underline; text-underline-offset: 3px; }
.contact-item { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-item:first-of-type { border-top: 0; }
.contact-item strong { display: block; margin-bottom: 4px; }

.reader-wrap { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--border); }
.reader-head { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.reader-head h3 { margin: 0; color: var(--navy); }
.reader-frame { width: 100%; height: 760px; border: 0; background: #f3f6fa; }

.cta { padding: 40px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta h2 { margin: 0 0 8px; font-size: 2rem; line-height: 1.2; }
.cta p { max-width: 720px; margin: 0; color: rgba(255,255,255,.88); }

.site-footer { background: #081a31; color: rgba(255,255,255,.88); margin-top: 0; }
.footer-inner { padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h2,
.site-footer h3 { margin: 0 0 13px; color: var(--white); font-size: 1rem; }
.site-footer p,
.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.76); font-size: .94rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.58); font-size: .86rem; }

.page-note { padding: 18px 20px; border-left: 4px solid var(--gold); background: #fff9e7; border-radius: 0 12px 12px 0; color: #5b4b1a; }
.spacer-top { margin-top: 28px; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.max-760 { max-width: 760px; }
.max-900 { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }


/* Enhanced Netlify forms */
.form-shell--wide { max-width: 980px; }
.form-intro { max-width: 760px; margin: -6px auto 26px; text-align: center; color: var(--muted); }
.form-section { grid-column: 1 / -1; padding-top: 10px; }
.form-section + .form-section { margin-top: 2px; padding-top: 24px; border-top: 1px solid var(--border); }
.form-section-title { margin: 0 0 4px; color: var(--navy); font-size: 1.12rem; }
.form-section-note { margin: 0; color: var(--muted); font-size: .9rem; }
.required-mark { color: var(--red); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: 3px solid rgba(31,94,168,.13); border-color: var(--blue); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #8b98a8; }
.field-help { margin: -1px 0 0; color: var(--muted); font-size: .82rem; }
.choice-fieldset { grid-column: 1 / -1; border: 0; padding: 0; margin: 0; }
.choice-fieldset legend { margin-bottom: 9px; color: var(--navy); font-weight: 800; font-size: .92rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-option { display: flex; align-items: flex-start; gap: 10px; padding: 12px 13px; border: 1px solid #cbd7e4; border-radius: 12px; background: #fbfdff; color: var(--text); cursor: pointer; }
.choice-option:hover { border-color: #9fb8d2; background: var(--light-blue); }
.choice-option input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--blue); }
.choice-option span { line-height: 1.35; font-size: .92rem; }
.consent-box { grid-column: 1 / -1; display: grid; gap: 10px; padding: 16px; border-radius: 14px; background: #f7f9fc; border: 1px solid var(--border); }
.checkbox-line { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: .9rem; line-height: 1.45; }
.checkbox-line input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--blue); }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 2px; }
.form-actions .form-note { margin: 0; flex: 1 1 360px; }
.form-success-card { max-width: 760px; margin: 0 auto; padding: 38px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.form-success-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--light-blue); color: var(--blue); font-size: 1.75rem; font-weight: 900; }
.form-success-card h1 { color: var(--navy); margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; }
.form-success-card p { color: var(--muted); }

@media (max-width: 1020px) {
  .hero-grid, .split, .feature-band, .contact-grid { grid-template-columns: 1fr; }
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-utility { display: none; }
  .hero-panel { max-width: 680px; }
}

@media (max-width: 780px) {
  .container, .topbar-inner, .header-inner, .hero-inner, .footer-inner { width: min(100% - 28px, var(--max)); }
  .topbar-inner { min-height: 56px; }
  .topbar-tagline { font-size: .86rem; max-width: calc(100% - 58px); }
  .menu-toggle { display: inline-flex; flex-shrink: 0; }
  .top-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    background: var(--navy);
    box-shadow: 0 18px 38px rgba(0,0,0,.24);
  }
  .top-links.is-open { display: flex; }
  .menu-item { width: 100%; }
  .menu-trigger { width: 100%; justify-content: space-between; background: rgba(255,255,255,.06); }
  .dropdown { position: static; width: 100%; margin-top: 6px; box-shadow: none; }
  .header-inner { min-height: 82px; }
  .brand-logo { width: 58px; height: 58px; }
  .brand-title { font-size: .9rem; }
  .brand-subtitle { font-size: .74rem; }
  .hero-home { min-height: auto; }
  .hero-home::before, .page-hero::before { background-image: linear-gradient(180deg, rgba(8,26,49,.72), rgba(8,26,49,.83)), url('community-hero-mobile.webp'); background-position: center; }
  .hero-inner { padding: 62px 0; }
  .hero-home h1, .page-hero h1 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
  .hero-points { grid-template-columns: 1fr; }
  .page-hero { min-height: 390px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 42px 0; }
  .grid-3, .grid-2, .grid-4, .team-grid, .stat-strip { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-year { width: max-content; }
  .form-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .reader-frame { height: 560px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { padding: 30px; }
  .feature-band { padding: 28px; }
}

@media (max-width: 480px) {
  .topbar-tagline { font-size: .8rem; }
  .brand { gap: 10px; }
  .brand-logo { width: 52px; height: 52px; }
  .brand-title { font-size: .83rem; }
  .brand-subtitle { font-size: .7rem; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
  .hero-panel, .card, .split-card, .form-shell, .callout { padding: 22px; }
  .cta { padding: 24px; }
  .reader-frame { height: 500px; }
}
