/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: #555555; background: #ffffff; min-width: 375px; }

/* ===== CSS VARIABLES ===== */
:root {
  --charcoal: #333A35;
  --green: #008223;
  --bright-green: #00CC36;
  --yellow: #FFEA00;
  --blue: #0077CC;
  --white: #ffffff;
  --light-grey: #F5F5F5;
  --mid-grey: #CCCCCC;
  --text-grey: #555555;
}

/* ===== NAV ===== */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
#main-nav .logo img { height: 44px; width: auto; display: block; }
#main-nav .logo span { color: white; font-weight: 700; font-size: 1rem; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--bright-green); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--charcoal); padding: 1rem 2rem 1.5rem; gap: 1rem; }
}

/* ===== SECTION SHARED ===== */
section { padding: 5rem 2rem; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.section-heading { font-size: 2rem; font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 0.75rem; }
.section-sub { font-size: 0.9375rem; color: var(--text-grey); max-width: 100%; line-height: 1.6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== S1 HERO ===== */
#hero {
  background: var(--charcoal);
  padding-top: 120px; padding-bottom: 80px;
  padding-left: 2rem; padding-right: 2rem;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #008223 0, #008223 1px, transparent 0, transparent 50%);
  background-size: 28px 28px; pointer-events: none;
}
.hero-image-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%;
  pointer-events: none;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.5) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.5) 100%);
}
@media (max-width: 768px) { .hero-image-wrap { display: none; } }
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bright-green); margin-bottom: 1rem; }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: #ffffff; line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-headline span { color: var(--bright-green); }
.hero-sub { font-size: 1.075rem; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 1rem; }
.hero-body { font-size: 0.9375rem; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #fff; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.9375rem; padding: 0.875rem 2rem;
  border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #006b1c; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.9375rem;
  padding: 0.875rem 1.5rem; border-radius: 8px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--bright-green); color: var(--bright-green); }

/* ===== S2 KPI CARDS ===== */
#kpis { background: var(--white); padding: 4.5rem 2rem; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.kpi-card {
  background: var(--white); border: 1px solid #e8e8e8;
  border-radius: 14px; padding: 2rem 1.5rem 1.75rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.kpi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.kpi-card:hover { box-shadow: 0 8px 32px rgba(0,130,35,0.12); transform: translateY(-3px); }
.kpi-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: #e8f5e9; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.kpi-icon-wrap svg { color: var(--green); width: 22px; height: 22px; }
.kpi-number {
  font-size: 3.25rem; font-weight: 700; color: var(--charcoal);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.kpi-label { font-size: 0.875rem; font-weight: 500; color: var(--text-grey); line-height: 1.4; }
.kpi-context-text {
  font-size: 0.9375rem; color: var(--text-grey); line-height: 1.75;
  max-width: 780px; margin-bottom: 2rem; margin-top: 0.5rem;
}
.kpi-disclaimer {
  font-size: 0.75rem; color: #999; line-height: 1.6;
  margin-top: 1.5rem; max-width: 780px; font-style: italic;
}
@media (max-width: 900px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kpi-number { font-size: 2.5rem; } }

/* ===== AIRBNB-STYLE FILTER CHIPS ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.625rem; align-items: center; margin-top: 1.5rem; margin-bottom: 1.25rem; }
.filter-chip {
  position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border: 1.5px solid #ddd; border-radius: 999px;
  background: white; font-family: 'Inter', sans-serif; font-size: 0.8125rem;
  font-weight: 500; color: var(--charcoal); cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap; user-select: none;
}
.filter-chip:hover { border-color: #aaa; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.filter-chip.active { border-color: var(--charcoal); background: var(--charcoal); color: white; }
.filter-chip svg { width: 12px; height: 12px; transition: transform 0.2s; }
.filter-chip.open svg { transform: rotate(180deg); }
.filter-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 200;
  background: white; border: 1px solid #ddd; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14); min-width: 180px; max-height: 280px;
  overflow-y: auto; padding: 0.5rem; display: none;
}
.filter-dropdown.open { display: block; }
.filter-option {
  padding: 0.5rem 0.75rem; border-radius: 8px; font-size: 0.8125rem;
  cursor: pointer; color: var(--charcoal); transition: background 0.12s;
  display: flex; align-items: center; gap: 0.5rem;
}
.filter-option:hover { background: var(--light-grey); }
.filter-option.selected { background: #e8f5e9; color: var(--green); font-weight: 600; }
.filter-option.selected::before { content: '✓'; font-size: 0.75rem; }

/* ===== S3 BUBBLE EXPLORER ===== */
#bubble-explorer { background: var(--light-grey); padding: 4rem 2rem; }
#bubble-back-btn {
  display: none; align-items: center; gap: 0.5rem;
  background: var(--charcoal); color: white; border: none; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 600;
  padding: 0.5rem 1.125rem; cursor: pointer; transition: background 0.2s;
  margin-top: 0.5rem; width: fit-content;
}
#bubble-back-btn:hover { background: var(--green); }
#bubble-canvas {
  width: 100%; height: 560px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  position: relative; overflow: hidden; margin-top: 1rem;
}
#bubble-canvas svg { width: 100%; height: 100%; display: block; }
.bubble-group { cursor: pointer; }
.bubble-group:hover circle { filter: brightness(1.1); }
@media (max-width: 768px) { #bubble-canvas { height: 380px; } }

/* ===== S4 MAP ===== */
#map-section { background: var(--white); padding: 4rem 2rem; }
.map-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.map-pill {
  padding: 0.375rem 0.875rem; border-radius: 999px; font-size: 0.8125rem;
  font-weight: 500; border: 1.5px solid var(--mid-grey); background: white;
  cursor: pointer; color: var(--charcoal); transition: all 0.15s; white-space: nowrap;
}
.map-pill.active, .map-pill:hover { border-color: var(--green); background: var(--green); color: white; }
#map-container { height: 520px; border-radius: 12px; overflow: hidden; border: 1px solid var(--mid-grey); }
.leaflet-popup-content-wrapper { border-radius: 10px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important; }
.leaflet-popup-content { margin: 14px 16px !important; }
.popup-name { font-weight: 700; font-size: 0.9375rem; color: var(--charcoal); margin-bottom: 5px; }
.popup-sector { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 999px; color: white; margin-bottom: 8px; }
.popup-link { font-size: 0.8125rem; color: var(--green); font-weight: 600; text-decoration: none; }
.popup-link:hover { text-decoration: underline; }
@media (max-width: 768px) { #map-container { height: 360px; } }

/* ===== S5 CHARTS ===== */
#charts { background: var(--light-grey); padding: 4rem 2rem; }
.charts-scroll-wrap { overflow-x: auto; padding-bottom: 0.5rem; margin-top: 2rem; }
.charts-row {
  display: flex; gap: 1.5rem; align-items: stretch;
  min-width: max-content;
}
.chart-card {
  background: white; border-radius: 14px; border: 1px solid #e8e8e8;
  padding: 1.75rem 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.chart-card.chart-donut { width: 300px; display: flex; flex-direction: column; }
.donut-canvas-wrap { position: relative; height: 260px; flex-shrink: 0; margin: auto 0; }
.chart-card.chart-sdg   { width: 420px; }
.chart-card.chart-year  { width: 420px; }
.chart-title { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.25rem; }
@media (max-width: 768px) {
  .charts-row { flex-direction: column; min-width: 0; }
  .chart-card { width: 100% !important; }
}

/* ===== S6 DIRECTORY ===== */
#directory { background: var(--white); padding: 4rem 2rem; }
.directory-controls { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; align-items: flex-start; }
#dir-search {
  width: 100%; max-width: 320px; min-width: 180px;
  padding: 0.625rem 1rem 0.625rem 2.25rem;
  border: 1.5px solid var(--mid-grey); border-radius: 999px;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--charcoal);
  outline: none; transition: border-color 0.2s;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") no-repeat 0.75rem center;
}
#dir-search:focus { border-color: var(--green); }
.dir-dropdowns { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.dir-dropdown-wrap { position: relative; }
.dir-dropdown-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border: 1.5px solid #ddd; border-radius: 999px;
  background: white; font-family: 'Inter', sans-serif; font-size: 0.8125rem;
  font-weight: 500; color: var(--charcoal); cursor: pointer; white-space: nowrap;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.dir-dropdown-btn:hover { border-color: #aaa; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.dir-dropdown-btn.active { border-color: var(--charcoal); background: var(--charcoal); color: white; }
.dir-dropdown-btn svg { width: 12px; height: 12px; flex-shrink: 0; transition: transform 0.2s; }
.dir-dropdown-btn.open svg { transform: rotate(180deg); }
.dir-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 200;
  background: white; border: 1px solid #ddd; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14); min-width: 200px; max-height: 260px;
  overflow-y: auto; padding: 0.5rem; display: none;
}
.dir-dropdown-panel.open { display: block; }
.dir-dropdown-option {
  padding: 0.5rem 0.75rem; border-radius: 8px; font-size: 0.8125rem;
  cursor: pointer; color: var(--charcoal); transition: background 0.12s;
}
.dir-dropdown-option:hover { background: var(--light-grey); }
.dir-dropdown-option.selected { background: #e8f5e9; color: var(--green); font-weight: 600; }
#dir-count { font-size: 0.875rem; color: var(--text-grey); margin: 1rem 0; }
.dir-toggle-wrap { margin: 0 0 1.5rem; }
#dir-toggle-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: white; border: none; border-radius: 8px;
  padding: 0.75rem 1.5rem; font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
#dir-toggle-btn:hover { background: #006b1c; transform: translateY(-1px); }
.cards-grid {
  display: none; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  animation: fadeUp 0.3s ease-out;
}
.cards-grid.expanded { display: grid; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

/* ===== ENTERPRISE CARD ===== */
.ent-card {
  background: white; border: 1px solid #e8e8e8; border-radius: 14px;
  padding: 1.375rem; display: flex; flex-direction: column; gap: 0.625rem;
  min-height: 260px;
  transition: box-shadow 0.2s, transform 0.2s; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.ent-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.ent-card.highlighted {
  outline: 3px solid var(--green);
  animation: pulse-outline 2.2s ease-out forwards;
}
@keyframes pulse-outline {
  0%   { outline-color: var(--green); }
  60%  { outline-color: var(--bright-green); }
  100% { outline-color: transparent; }
}
.card-header { display: flex; align-items: center; gap: 0.75rem; }
.card-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; overflow: hidden;
}
.card-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.card-name-wrap { flex: 1; min-width: 0; }
.card-name { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); line-height: 1.3; }
.card-subline { font-size: 11px; color: var(--text-grey); margin-top: 0.25rem; line-height: 1.4; }
.card-desc {
  font-size: 0.8125rem; color: var(--text-grey); line-height: 1.6;
  padding-left: calc(40px + 0.75rem);
}
.card-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.tag {
  display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 600; line-height: 1.7;
}
.tag-gender { background: #e8f5e9; color: #1b5e20; }
.tag-stage  { background: #e0f2f1; color: #004d40; }
.card-desc-spacer { flex: 1; min-height: 0.5rem; }
.card-footer { margin-top: auto; padding-top: 0.5rem; }
.card-cta-wrap { margin-bottom: 0.625rem; padding-left: calc(40px + 0.75rem); }
.card-meta {
  display: flex; align-items: center; gap: 0.375rem;
  flex-wrap: wrap; justify-content: flex-end;
}
.card-cta {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--green); color: white; border: none; border-radius: 6px;
  padding: 0.5rem 0.875rem; font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.card-cta:hover { background: #006b1c; }
.sdg-icon {
  width: 32px; height: 32px; border-radius: 5px; flex-shrink: 0;
  object-fit: contain; display: block;
}
.sdg-badge {
  width: 32px; height: 32px; border-radius: 5px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: white; line-height: 1;
  text-align: center;
}

/* ===== FLOATING BACK BTN ===== */
#float-back {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  background: var(--charcoal); color: white;
  padding: 0.75rem 1.25rem; border-radius: 999px; border: none;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  display: none; align-items: center; gap: 0.375rem;
  transition: background 0.2s, transform 0.15s;
}
#float-back:hover { background: var(--green); transform: translateY(-2px); }
#float-back.visible { display: flex; }

/* ===== S7 FOOTER / CONTACT ===== */
#contact { background: var(--charcoal); padding: 5rem 2rem 3rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info .section-label { color: var(--bright-green); }
.contact-info .section-heading { color: white; font-size: 1.75rem; }
.contact-info p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.contact-email-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--bright-green); font-weight: 600; text-decoration: none; font-size: 0.9375rem; }
.contact-email-link:hover { text-decoration: underline; }
.contact-form-wrap { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 2rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.375rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  color: white; outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--bright-green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-fine { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; line-height: 1.5; }
.form-honeypot { display: none !important; }
#contact-success { display: none; color: white; text-align: center; padding: 2rem 0; }
#contact-success .success-icon { font-size: 2rem; color: var(--bright-green); margin-bottom: 0.75rem; }
#contact-success h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
#contact-success p { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 3rem; padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 28px; opacity: 0.85; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===== EMAIL GATE ===== */
.gate-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.gate-panel { background: white; border-radius: 16px; padding: 2rem; max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.25); position: relative; }
.gate-panel h3 { font-size: 1.0625rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.375rem; line-height: 1.4; }
.gate-panel p { font-size: 0.875rem; color: var(--text-grey); line-height: 1.6; margin-bottom: 1.25rem; }
.gate-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; cursor: pointer; color: var(--text-grey); font-size: 1.25rem; line-height: 1; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.15s; }
.gate-close:hover { background: var(--light-grey); }
.gate-field { margin-bottom: 0.875rem; }
.gate-field label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.25rem; }
.gate-field input { width: 100%; padding: 0.625rem 0.875rem; border: 1.5px solid var(--mid-grey); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--charcoal); outline: none; transition: border-color 0.2s; }
.gate-field input:focus { border-color: var(--green); }
.gate-fine { font-size: 0.75rem; color: var(--text-grey); line-height: 1.5; margin-top: 0.75rem; }
.gate-success-msg { text-align: center; padding: 1rem 0; color: var(--green); font-weight: 600; font-size: 0.9375rem; }
.gate-error-msg { color: #c0392b; font-size: 0.8125rem; margin-top: 0.5rem; }

/* ===== UTILITIES ===== */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
