:root {
  --bg: #0b1020;
  --card: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: #b9c3d6;
  --accent: #4f8cff;
  --accent-soft: rgba(79, 140, 255, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.22), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-title span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.hero {
  padding: 56px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.card,
.side-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.hero-card {
  padding: 38px;
}

.eyebrow {
  color: #9ec0ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.15rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 760px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
}

.button.secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.side-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-card h2 {
  margin-top: 0;
}

.side-card p {
  color: var(--muted);
}

.section {
  padding: 24px 0 56px;
}

.section-title {
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #bcd3ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer {
  padding: 28px 0 36px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  transition: transform 0.15s ease, background 0.15s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.social-links svg {
  width: 17px;
  height: 17px;
  display: block;
}

.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;
}

@media (max-width: 860px) {
  .header-inner,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .hero-card {
    padding: 28px;
  }
}

.header-emcomm-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-left: auto;
}

@media (max-width: 860px) {
  .header-emcomm-logo {
    margin-left: 0;
  }
}

.header-emcomm-logo {
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.nav-row {
  margin-top: 14px;
}

.nav-row .nav {
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .header-emcomm-logo {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
  }

  .nav-row .nav {
    justify-content: flex-start;
  }
}

.header-nav {
  flex: 1;
  justify-content: center;
}

@media (max-width: 860px) {
  .header-nav {
    justify-content: flex-start;
    flex: none;
  }
}

.fund-logo-wrap {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.fund-logo {
  display: block;
  max-width: min(680px, 100%);
  height: auto;
}

.project-card {
  margin-top: 22px;
}


.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .partner-head {
    align-items: flex-start;
  }

  .partner-head .partner-logo {
    max-width: 58px;
  }
}



.partner-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.card .partner-head img.partner-logo {
  display: block;
  width: 64px;
  max-width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0;
  flex: 0 0 64px;
}

.card .partner-head h3 {
  margin: 0;
  line-height: 1.2;
}


.step-card .badge {
  font-size: 1rem;
  min-width: 2.2rem;
  text-align: center;
}

.highlight-card {
  border-color: rgba(0, 210, 255, 0.35);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.12), rgba(25, 39, 70, 0.9));
}

.clean-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.clean-list li {
  margin: 0.35rem 0;
}
