/* =============================================================
   WalkTogetherCare — Public Site Stylesheet
   Covers: index.html, vendor.html, volunteer.html,
           partner.html, thank-you.html
   ============================================================= */
@import url('./base.css');

/* =============================================================
   NAVIGATION — fixed white nav
   ============================================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,.99);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo,
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 65px;
  width: auto;
  flex-shrink: 0;
  transition: transform var(--transition), filter var(--transition);
}
.nav-logo:hover .nav-logo-img,
.nav-brand:hover .nav-logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 2px 8px rgba(14,165,233,.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--slate-600);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--brand-700);
  background: var(--brand-50);
}

/* Get Help CTA */
.nav-links .nav-cta {
  color: var(--brand-700) !important;
  border: 1.5px solid var(--brand-700);
  border-radius: 9999px;
  padding: 7px 18px;
  font-weight: 600;
  margin-left: 4px;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--brand-50);
  color: var(--brand-900) !important;
}

/* Donate pill — works for both <a> and <button> */
.nav-links button.nav-donate {
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.nav-links .nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-700);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .88rem;
  line-height: 1.65;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-left: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.nav-links .nav-donate:hover {
  background: var(--brand-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-links .nav-donate svg { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--slate-100); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 1115px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 16px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; color: var(--slate-700); }
  .nav-links a:hover { color: var(--brand-700); }
  .nav-links .nav-cta { text-align: center; }
  .nav-links .nav-donate { text-align: center; justify-content: center; margin-left: 0; margin-top: 4px; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 55%, rgba(14,165,233,.07) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 5% 5%, rgba(3,105,161,.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  padding: 80px 48px 80px 5%;
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--slate-900);
  margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--brand-700); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-status {
  font-size: .8rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-status strong { color: var(--brand-700); font-weight: 700; }

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(14,165,233,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(14,165,233,0); }
}

.hero-image-panel {
  position: relative;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}
.hero-family-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.82) saturate(.95);
  transition: filter 1s ease;
}
.hero-image-panel:hover .hero-family-img { filter: brightness(.88) saturate(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,.1) 28%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}
.hero-image-caption {
  position: absolute;
  bottom: 28px; right: 24px;
  z-index: 2;
  font-size: .78rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 28px;
}
.hero-free-badge svg { color: #16a34a; flex-shrink: 0; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 100px 24px 48px; max-width: 100%; }
  .hero-image-panel { height: 420px; min-height: unset; }
  .hero-overlay { background: linear-gradient(to bottom, var(--white) 0%, transparent 30%); }
  .hero-actions { flex-direction: column; }
}

/* =============================================================
   MISSION SECTION
   ============================================================= */
.mission-section {
  padding: var(--section-gap) 0;
  background: var(--slate-50);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.mission-text .section-label { display: block; margin-bottom: 14px; }
.mission-text h2 { margin-bottom: 24px; }
.mission-text p { color: var(--text-light); font-size: 1rem; line-height: 1.75; margin-bottom: 18px; }

.mission-verse {
  border-left: 3px solid var(--brand-500);
  padding: 20px 24px;
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(14,165,233,.02));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mission-verse p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brand-900);
  margin-bottom: 10px !important;
  line-height: 1.5;
}
.mission-verse cite { font-size: .82rem; color: var(--brand-700); font-style: normal; font-weight: 600; letter-spacing: .04em; }

.mission-stats { display: flex; flex-direction: column; gap: 20px; }

.stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.stat-card:hover {
  box-shadow: var(--shadow-md), 0 0 15px rgba(14,165,233,.12);
  border-color: var(--brand-200);
  transform: translateY(-3px);
}
.stat-image-wrap { width: 140px; position: relative; flex-shrink: 0; overflow: hidden; }
.stat-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stat-image-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 5px;
  background: var(--brand-500);
  opacity: .8;
  filter: drop-shadow(-2px 0 8px var(--brand-500));
  pointer-events: none;
}
.stat-body { flex: 1; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.stat-label { font-size: .95rem; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.stat-desc  { font-size: .85rem; color: var(--text-light); line-height: 1.5; }

@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .stat-card { flex-direction: column; align-items: stretch; }
  .stat-image-wrap { width: 100%; height: 160px; }
  .stat-image-wrap::after { width: auto; height: 5px; top: auto; left: 0; right: 0; bottom: 0; filter: drop-shadow(0 -2px 8px var(--brand-500)); }
  .stat-body { padding: 20px 24px; }
}

/* =============================================================
   THREE PILLARS — dark
   ============================================================= */
.pillars-section {
  position: relative;
  padding: var(--section-gap) 0;
  background: var(--slate-900);
  overflow: hidden;
}
.pillars-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.03);
  pointer-events: none;
}
.pillars-section .section-label { color: var(--brand-500); }
.pillars-section h2 { color: var(--white); }
.pillars-section .section-subtitle { color: var(--slate-400); }

.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.pillar-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.pillar-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); transform: translateY(-3px); }
.pillar-card.featured {
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.35);
  box-shadow: 0 0 32px rgba(14,165,233,.12), 0 4px 16px rgba(0,0,0,.25);
}
.pillar-card.featured:hover { background: rgba(14,165,233,.15); border-color: rgba(14,165,233,.55); transform: translateY(-4px); box-shadow: 0 0 40px rgba(14,165,233,.18), 0 8px 24px rgba(0,0,0,.28); }
.pillar-card.featured h3 { font-size: 1.15rem; color: var(--white); }
.pillar-card.featured p  { color: var(--slate-300); }
.pillar-card.featured .pillar-features li { color: var(--slate-300); }

img.pillar-icon { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 18px; display: block; }
.pillar-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; font-weight: 700; }
.pillar-card p  { color: var(--slate-400); font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }

.pillar-features { display: flex; flex-direction: column; gap: 8px; }
.pillar-features li { font-size: .82rem; color: var(--slate-400); display: flex; align-items: center; gap: 8px; }
.pillar-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-500); flex-shrink: 0; }

@media (max-width: 1024px) { .pillars-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 720px)  { .pillars-grid { grid-template-columns: 1fr; gap: 28px; } }

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-it-works-section {
  padding: var(--section-gap) 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}
.how-it-works-section .section-label { color: var(--brand-700); }

.how-steps { display: flex; align-items: flex-start; gap: 0; max-width: 900px; margin: 0 auto 48px; }
.how-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.how-step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-700); color: var(--white);
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(3,105,161,.30);
}
.how-step-body h3 { color: var(--slate-900); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.how-step-body p  { font-size: .92rem; color: var(--text-light); line-height: 1.75; }

.how-step-connector {
  width: 60px; flex-shrink: 0;
  height: 2px; background: var(--brand-200);
  align-self: flex-start; margin-top: 27px;
  position: relative;
}
.how-step-connector::after {
  content: '';
  position: absolute; right: -6px; top: -4px;
  border: 5px solid transparent;
  border-left: 8px solid var(--brand-200);
}
.how-cta { text-align: center; }

@media (max-width: 680px) {
  .how-steps { flex-direction: column; align-items: center; gap: 0; }
  .how-step { padding: 0 16px 32px; width: 100%; max-width: 400px; }
  .how-step-connector { width: 2px; height: 32px; margin: 0 0 0 -1px; align-self: center; }
  .how-step-connector::after { right: -4px; top: auto; bottom: -6px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 8px solid var(--brand-200); border-bottom: none; }
}

/* =============================================================
   PARTNERSHIPS
   ============================================================= */
.partnerships-section {
  position: relative;
  padding: var(--section-gap) 0;
  background: var(--brand-900);
  overflow: hidden;
}
.partnerships-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at bottom right, rgba(14,165,233,.12), transparent 55%);
  pointer-events: none;
}
.partnerships-content { max-width: var(--container); margin: 0 auto; padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.partnerships-section .section-label { margin-bottom: 14px; color: var(--brand-500); }
.partnerships-section h2 { font-size: clamp(2rem,3vw,2.7rem); margin-bottom: 18px; color: var(--white); }
.partnerships-copy { max-width: 720px; margin: 0 auto 38px; color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.85; }
.partner-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-bottom: 30px; }
.partner-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 240px; max-width: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(14,165,233,.45); }
.partner-logo { height: 44px; width: auto; display: block; filter: brightness(0) invert(1) opacity(.85); transition: filter var(--transition); }
.partner-card:hover .partner-logo { filter: none; }
.partner-name { display: block; color: rgba(255,255,255,.80); font-weight: 700; font-size: .95rem; }
.partnerships-action { margin-top: 12px; }
.partnerships-action .link-link { color: var(--brand-500); font-weight: 600; }
.partnerships-action .link-link:hover { color: var(--white); text-decoration: underline; }

/* =============================================================
   FOUNDERS / OUR STORY
   ============================================================= */
.founders-section { padding: var(--section-gap) 0; background: var(--white); border-top: 1px solid var(--slate-100); }
.founders-section .section-label { color: var(--brand-700); }
.founders-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.founder-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.founder-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: var(--brand-200); }
.founder-img-wrap { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--slate-100); }
.founder-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; display: block; }
.founder-card:hover .founder-img-wrap img { transform: scale(1.05); }
.founder-info { padding: 28px 24px; display: flex; flex-direction: column; flex: 1; }
.founder-info h3 { font-size: 1.05rem; color: var(--slate-900); margin-bottom: 4px; }
.founder-title { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 12px; }
.founder-bio { font-size: .88rem; line-height: 1.65; color: var(--text-light); animation: fadeIn .35s ease-in-out; }
.btn-toggle-story {
  background: none; border: none; color: var(--brand-700); font-weight: 700; font-size: .8rem; padding: 0; margin-top: 14px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 4px; transition: color var(--transition);
  text-transform: uppercase; letter-spacing: .05em; align-self: flex-start;
}
.btn-toggle-story:hover { color: var(--brand-500); text-decoration: underline; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

@media (max-width: 1024px) { .founders-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .founders-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* =============================================================
   STORY MODAL
   ============================================================= */
.story-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; z-index: 1100; }
.story-modal.open { display: flex; }
.story-modal-overlay { position: absolute; inset: 0; background: rgba(15,23,42,.75); backdrop-filter: blur(4px); }
.story-modal-panel {
  position: relative; width: min(640px,100%); max-height: min(90vh,720px); overflow: auto;
  background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 32px; z-index: 1;
}
.story-modal-image { width: 100%; height: 280px; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 24px; }
.story-modal-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.story-modal-copy h3 { margin-bottom: 14px; font-size: clamp(1.5rem,2.2vw,2rem); color: var(--slate-900); }
.story-modal-copy p  { color: var(--text-light); line-height: 1.85; font-size: 1rem; white-space: pre-line; }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  border: none; background: var(--slate-100); color: var(--slate-700);
  font-size: 1.3rem; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 10;
}
.modal-close:hover { background: var(--slate-200); }

/* =============================================================
   GET HELP FORM SECTION
   ============================================================= */
.form-section { padding: var(--section-gap) 0; background: var(--slate-100); border-top: 1px solid var(--slate-200); position: relative; overflow: hidden; }
.form-section .section-label  { color: var(--brand-700); }
.form-section .section-label.light { color: var(--brand-700); }
.form-container { display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: start; }
.form-intro .section-label { display: block; margin-bottom: 16px; }
.form-intro h2 { color: var(--slate-900); margin-bottom: 24px; }
.form-intro p  { color: var(--text-light); font-size: .97rem; line-height: 1.75; margin-bottom: 28px; }
.service-area-callout { display: flex; align-items: flex-start; gap: 10px; background: var(--brand-50); border: 1px solid var(--brand-200); border-left: 4px solid var(--brand-700); border-radius: 8px; padding: 14px 16px; margin-bottom: 28px; }
.service-area-callout svg { color: var(--brand-700); flex-shrink: 0; margin-top: 2px; }
.service-area-callout p { font-size: .88rem; line-height: 1.6; color: var(--text-light); margin: 0; }
.service-area-callout p strong { color: var(--slate-900); font-weight: 600; }
.form-promises { display: flex; flex-direction: column; gap: 12px; }
.form-promises li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-light); font-weight: 500; }
.form-promises li svg { color: var(--brand-700); flex-shrink: 0; }
.care-form { background: var(--white); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-xl); border: 1px solid var(--slate-100); display: flex; flex-direction: column; gap: 20px; }

@media (max-width: 1024px) { .form-container { grid-template-columns: 1fr; gap: 48px; } .form-intro h2 { font-size: 2rem; } }
@media (max-width: 720px)  { .care-form { padding: 28px 20px; } }

/* =============================================================
   SIGNUP PAGES (vendor.html, volunteer.html, partner.html)
   ============================================================= */
.signup-page { min-height: 100vh; background: var(--slate-50); }
.signup-shell { max-width: 1100px; margin: 0 auto; padding: 64px 24px 96px; }

.signup-hero { text-align: center; max-width: 660px; margin: 50px auto 56px; }
.signup-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.4rem); color: var(--slate-900); line-height: 1.15; margin-bottom: 16px; }
.signup-hero h1 em { font-style: italic; color: var(--brand-700); }
.signup-hero p { font-size: 1.05rem; color: var(--slate-600); line-height: 1.7; }

.signup-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }

.signup-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 28px; }
.info-card h2 { font-size: 1.1rem; font-weight: 700; color: var(--slate-800); margin-bottom: 16px; }
.info-card ul { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0; }
.info-card li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--slate-600); line-height: 1.55; }
.info-card li svg { color: var(--brand-700); flex-shrink: 0; margin-top: 2px; }

.info-quote { background: linear-gradient(135deg,var(--brand-700),#0284c7); border-radius: var(--radius-md); padding: 28px; color: #fff; }
.info-quote blockquote { font-size: 1rem; font-style: italic; line-height: 1.65; margin: 0 0 12px; opacity: .92; }
.info-quote cite { font-size: .82rem; font-weight: 700; opacity: .75; font-style: normal; }

.signup-form-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 36px; }
.signup-form-card h2 { font-size: 1.3rem; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.signup-form-card > p { font-size: .88rem; color: var(--slate-500); margin-bottom: 28px; }

.form-section-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-700); margin: 24px 0 14px; display: block; }
.form-section-label:first-of-type { margin-top: 0; }

.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: .87rem; color: var(--slate-700); cursor: pointer; padding: 8px 10px; border-radius: 7px; border: 1px solid var(--slate-200); background: var(--slate-50); transition: background var(--transition), border-color var(--transition); }
.checkbox-label:hover { background: var(--brand-50); border-color: var(--brand-200); }
.checkbox-label input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; flex-shrink: 0; border: 1.5px solid var(--slate-300); border-radius: 5px; background: var(--white); cursor: pointer; transition: background var(--transition), border-color var(--transition); }
.checkbox-label input[type="checkbox"]:checked { background: var(--brand-700); border-color: var(--brand-700); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 65%; }
.checkbox-label input[type="checkbox"]:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 2px; }

.signup-submit-row { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.signup-submit-row .btn { width: 100%; justify-content: center; }
.signup-privacy { font-size: .78rem; color: var(--slate-600); text-align: center; line-height: 1.5; }

@media (max-width: 860px) {
  .signup-layout { grid-template-columns: 1fr; }
  .signup-sidebar { order: 2; }
  .signup-form-card { order: 1; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,.60); padding: 64px 0 0; }
.footer-container {
  max-width: var(--container); margin: 0 auto; padding: 0 24px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-brand .footer-logo .nav-logo-img { height: 65px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 10px; }
.footer-legal { font-size: .75rem !important; color: rgba(255,255,255,.55) !important; margin-top: 8px; }

.footer-nav h3, .footer-serve h3, .footer-connect h3 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-nav ul, .footer-serve ul, .footer-connect ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.72); transition: color var(--transition); }
.footer-nav a:hover { color: var(--brand-500); }
.footer-serve li, .footer-connect li { font-size: .88rem; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); }
.footer-serve svg, .footer-connect svg { color: var(--brand-500); flex-shrink: 0; }
.footer-connect a { color: rgba(255,255,255,.72); transition: color var(--transition); }
.footer-connect a:hover { color: var(--brand-500); }
.footer-connect button.footer-donate-btn {
  font-family: inherit;
  font-size: .88rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}
.footer-connect button.footer-donate-btn:hover { color: var(--brand-500); }

.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 8px;
}

@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================================
   THANK-YOU / SUCCESS PAGE
   ============================================================= */
.success-page {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--slate-50); padding: 48px 24px; text-align: center; position: relative; overflow: hidden;
}
.success-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 20%, rgba(14,165,233,.07), transparent 65%),
    radial-gradient(ellipse 400px 400px at 90% 90%, rgba(3,105,161,.04), transparent 55%);
  pointer-events: none;
}
.success-brand { display: flex; align-items: center; margin-bottom: 48px; position: relative; z-index: 1; text-decoration: none; }
.success-brand .nav-logo-img { height: 65px; width: auto; }
.success-card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-xl);
  padding: 56px 48px; max-width: 580px; width: 100%; position: relative; z-index: 1; box-shadow: var(--shadow-xl);
}
.success-checkmark {
  width: 80px; height: 80px; background: var(--brand-50); border: 2px solid var(--brand-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
  animation: checkIn .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes checkIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-checkmark svg { width: 36px; height: 36px; color: var(--brand-700); animation: drawCheck .4s .3s ease both; }
@keyframes drawCheck { from { stroke-dashoffset: 50; opacity: 0; } to { stroke-dashoffset: 0; opacity: 1; } }

.success-card h1     { color: var(--slate-900); font-size: clamp(1.75rem,3.5vw,2.4rem); margin-bottom: 16px; }
.success-card h1 em  { color: var(--brand-700); }
.success-card .lead  { color: var(--slate-600); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }

.success-details {
  background: var(--slate-50); border: 1px solid var(--slate-200); border-left: 3px solid var(--brand-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; margin-bottom: 32px; text-align: left;
}
.success-details p {
  font-size: .9rem; color: var(--slate-600); line-height: 1.65;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-weight: 500;
}
.success-details p:last-child { margin-bottom: 0; }
.success-details a { color: var(--brand-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.success-details p svg { color: var(--brand-700); flex-shrink: 0; margin-top: 2px; }

.success-actions { display: flex; flex-direction: column; gap: 12px; }
.success-verse { margin-top: 40px; font-size: .82rem; color: var(--slate-400); font-style: italic; position: relative; z-index: 1; font-family: var(--font-display); }

@media (max-width: 560px) { .success-card { padding: 36px 20px; } }

/* Signup feedback boxes */
#signup-feedback {
  display: none; padding: 14px 16px; border-radius: 8px; font-size: .92rem; font-weight: 600; margin-bottom: 20px;
}
