@import url("./index.css");

.funding-page {
  min-height: 100vh;
  padding: 132px 40px 96px;
  background:
    radial-gradient(circle at 18% 4%, rgba(126, 232, 255, 0.09), transparent 34%),
    radial-gradient(circle at 88% 30%, rgba(155, 126, 255, 0.07), transparent 32%),
    var(--bg);
}

.funding-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.funding-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  margin-bottom: 46px;
}

.funding-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--ice);
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.funding-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--jade));
}

.funding-title {
  max-width: 780px;
  font-family: var(--cond);
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.funding-title em {
  display: block;
  color: var(--ice);
  font-style: italic;
  font-weight: 300;
}

.funding-summary {
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.funding-summary strong {
  color: var(--w);
  font-weight: 500;
}

.funding-document {
  overflow: hidden;
  border: 1px solid rgba(126, 232, 255, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.funding-document img {
  display: block;
  width: 100%;
  height: auto;
}

.funding-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-top: 1px solid rgba(7, 8, 9, 0.1);
  background: #f5f7fa;
  color: #070809;
}

.funding-caption {
  font-family: var(--cond);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.funding-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 11px 16px;
  border-radius: 4px;
  background: #0f53ae;
  color: #fff;
  font-family: var(--cond);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.funding-pdf-link:hover,
.funding-pdf-link:focus-visible {
  background: #083e87;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 760px) {
  .funding-page {
    padding: 108px 20px 64px;
  }

  .funding-header {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .funding-title {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .funding-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
