/* ── Reset & Variables ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark-teal:  #3d6352;
  --mid-teal:   #7fbfa8;
  --gold:       #c8a96e;
  --gold-dark:  #a8893e;
  --off-white:  #faf8f5;
  --light-sage: #eef5f2;
  --text-dark:  #1e2e28;
  --text-mid:   #4a5a54;
  --text-light: #7a9088;
  --nav-h:      68px;
  --radius:     12px;
  --shadow-sm:  0 2px 8px rgba(44,74,62,.08);
  --shadow-md:  0 6px 24px rgba(44,74,62,.12);
  --shadow-lg:  0 12px 40px rgba(44,74,62,.16);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.72;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a { color: var(--mid-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--dark-teal); }

img, svg { max-width: 100%; }

/* ── Layout Helpers ────────────────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ── Scroll Reveal ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Navigation ────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark-teal);
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
  height: var(--nav-h);
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-brand:hover { color: var(--gold); }

.nav-logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250,248,245,.75);
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(200,169,110,.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark-teal) !important;
  font-weight: 600 !important;
  padding: 0.4rem 1.1rem !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: white !important;
}

#nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--off-white);
  font-size: 1.4rem;
  line-height: 1;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--dark-teal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(127,191,168,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(200,169,110,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  padding: 4rem 0 4rem 0;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--off-white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--mid-teal);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-welcome {
  font-size: 1rem;
  color: rgba(250,248,245,.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Source Sans 3', sans-serif;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark-teal);
}
.btn-gold:hover {
  background: #dbbf80;
  color: var(--dark-teal);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,110,.4);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(250,248,245,.35);
  margin-left: 0.75rem;
}
.btn-outline:hover {
  border-color: var(--mid-teal);
  color: var(--mid-teal);
  background: rgba(127,191,168,.08);
}

.hero-map-wrap {
  padding: 3rem 2rem 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.neighborhood-map {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(127,191,168,.15);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.25));
}

/* ── Section base ──────────────────────────────────────────────────────────── */
.site-section {
  padding: 6rem 0;
}

.site-section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--dark-teal);
  margin-bottom: 1.2rem;
}

/* ── About ─────────────────────────────────────────────────────────────────── */
#about {
  background: var(--light-sage);
}

.about-intro {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.pillar {
  background: white;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--mid-teal);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.pillar h4 {
  font-size: 1rem;
  color: var(--dark-teal);
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bio-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-teal), var(--mid-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 12px rgba(44,74,62,.25);
}

.bio-card h3 {
  font-size: 1.3rem;
  color: var(--dark-teal);
  margin-bottom: 0.3rem;
}

.bio-title {
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.9rem;
}

.bio-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Preparedness ──────────────────────────────────────────────────────────── */
#preparedness {
  background: var(--off-white);
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.prep-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.prep-text p:last-child { margin-bottom: 0; }

.prep-text a {
  color: var(--dark-teal);
  font-weight: 600;
  border-bottom: 1.5px solid var(--mid-teal);
  padding-bottom: 1px;
}
.prep-text a:hover { color: var(--gold-dark); border-color: var(--gold); }

.prep-callout {
  background: var(--dark-teal);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.prep-callout::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(127,191,168,.08);
  pointer-events: none;
}

.prep-callout h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.prep-callout p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.prep-callout p:last-child { margin-bottom: 0; }

.prep-callout a {
  color: var(--mid-teal);
  font-weight: 600;
}
.prep-callout a:hover { color: var(--gold); }

/* ── Sign-Up Form ──────────────────────────────────────────────────────────── */
#signup {
  background: var(--light-sage);
}

.signup-intro {
  max-width: 580px;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 3rem;
  line-height: 1.8;
}

#signup-form {
  max-width: 760px;
  background: var(--off-white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label,
.form-group .group-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #d0ddd9;
  border-radius: 8px;
  background: white;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mid-teal);
  box-shadow: 0 0 0 3px rgba(127,191,168,.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

/* Custom checkboxes */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 0.25rem 0.5rem;
  margin-top: 0.4rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: background var(--transition);
  user-select: none;
}
.check-label:hover { background: rgba(127,191,168,.12); color: var(--dark-teal); }

.check-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 2px solid var(--mid-teal);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.check-label input[type="checkbox"]:checked {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
}
.check-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 8px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.other-input-wrap {
  margin-top: 0.6rem;
}
.other-input-wrap input {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1.5px dashed var(--mid-teal);
  border-radius: 7px;
  background: white;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.other-input-wrap input:focus {
  border-color: var(--dark-teal);
  border-style: solid;
  box-shadow: 0 0 0 3px rgba(127,191,168,.2);
}

/* Radio buttons as cards */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-card {
  position: relative;
}
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-card label {
  display: block;
  padding: 1.1rem 1.2rem;
  border: 2px solid #d0ddd9;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  background: white;
  font-weight: 400 !important;
  color: var(--text-mid) !important;
}
.radio-card label strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 0.3rem;
}
.radio-card label span {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.radio-card input:checked + label {
  border-color: var(--dark-teal);
  background: rgba(44,74,62,.04);
  box-shadow: 0 0 0 3px rgba(44,74,62,.08);
}
.radio-card:hover label {
  border-color: var(--mid-teal);
}

.form-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d0ddd9, transparent);
  margin: 2rem 0;
}

.form-note {
  background: rgba(127,191,168,.1);
  border-left: 3px solid var(--mid-teal);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

#form-error {
  background: #fff0f0;
  border: 1.5px solid #f0a8a8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #8b2020;
  margin-bottom: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--dark-teal);
  color: var(--off-white);
  border: none;
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.submit-btn:hover:not(:disabled) {
  background: #3a5f50;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(44,74,62,.3);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form confirmation */
#form-confirmation {
  max-width: 760px;
  background: var(--dark-teal);
  border-radius: 16px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  color: var(--off-white);
}

.conf-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,169,110,.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

#form-confirmation h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

#form-confirmation p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Resources ─────────────────────────────────────────────────────────────── */
#resources {
  background: var(--off-white);
}

.resources-intro {
  font-size: 1.02rem;
  color: var(--text-mid);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.8;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.resource-card:hover {
  border-color: var(--mid-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resource-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.resource-card h4 {
  font-size: 1.05rem;
  color: var(--dark-teal);
  margin-top: 0.1rem;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex-grow: 1;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-teal);
  margin-top: 0.25rem;
}
.resource-link:hover { color: var(--dark-teal); }
.resource-link::after { content: '→'; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark-teal);
  color: rgba(250,248,245,.65);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand h3 {
  font-size: 1.25rem;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-brand a {
  color: var(--mid-teal);
  font-weight: 600;
}
.footer-brand a:hover { color: var(--gold); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(250,248,245,.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1080px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(127,191,168,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250,248,245,.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Notifications ─────────────────────────────────────────────────────────── */
#notifications {
  background: var(--dark-teal);
  padding: 3.5rem 0;
}

#notifications h2 {
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

#notifications .section-label {
  color: var(--gold);
  opacity: 0.85;
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.notif-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(127,191,168,.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: background var(--transition);
}
.notif-card:hover { background: rgba(255,255,255,.09); }

.notif-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.notif-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.notif-badge--event  { background: rgba(200,169,110,.2); color: var(--gold); }
.notif-badge--update { background: rgba(127,191,168,.15); color: var(--mid-teal); }
.notif-badge--alert  { background: rgba(220,80,80,.15);  color: #e89090; }
.notif-badge--news   { background: rgba(160,160,200,.15); color: #b0b0e0; }

.notif-date {
  font-size: 0.82rem;
  color: rgba(250,248,245,.45);
}

.notif-card h4 {
  font-size: 1.05rem;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.notif-card p {
  font-size: 0.92rem;
  color: rgba(250,248,245,.7);
  line-height: 1.7;
}

.notif-empty {
  color: rgba(250,248,245,.45);
  font-size: 0.95rem;
  font-style: italic;
  padding: 1rem 0;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  #home {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
  }
  .hero-content { padding-bottom: 0; }
  .hero-welcome { margin-left: auto; margin-right: auto; }
  .hero-map-wrap { padding: 2rem 0 3rem; }
  .neighborhood-map { max-width: 460px; }

  .bio-grid { grid-template-columns: 1fr; }

  .prep-grid { grid-template-columns: 1fr; gap: 2rem; }

  .form-row { grid-template-columns: 1fr; }

  .radio-cards { grid-template-columns: 1fr; }

  #nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--dark-teal);
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  #navbar.menu-open .nav-links { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: 8px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .site-section { padding: 4rem 0; }
  #signup-form { padding: 2rem 1.5rem; }
  .check-grid { grid-template-columns: 1fr 1fr; }
}
