:root {
  --purple: #3e1a82;
  --purple-deep: #2b0f63;
  --violet: #5a35a1;
  --orange: #ff7a00;
  --gold: #f4a315;
  --lavender: #f3effb;
  --cream: #fff8eb;
  --ink: #25212b;
  --muted: #625c6b;
  --line: #e6e0ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr 180px;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 12px max(28px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgb(62 26 130 / 9%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 178px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--purple);
}

.header-cta {
  justify-self: end;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 58px;
  min-height: 660px;
  max-width: 1320px;
  margin: auto;
  padding: 70px 40px 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 600px;
  margin: 24px 0 24px;
  color: var(--purple-deep);
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--purple);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  gap: 18px;
  background: var(--purple);
  color: white;
}

.button-secondary {
  color: var(--purple);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 34px 10px 34px 10px;
  padding: 40px;
  background:
    radial-gradient(circle at 85% 12%, rgb(244 163 21 / 22%) 0 70px, transparent 71px),
    radial-gradient(circle at 8% 88%, rgb(90 53 161 / 12%) 0 110px, transparent 111px),
    linear-gradient(145deg, #faf8ff 0%, #eee8fa 100%);
  box-shadow: 0 32px 70px rgb(62 26 130 / 16%);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border: 1px solid rgb(62 26 130 / 12%);
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  width: 310px;
  height: 310px;
  right: -125px;
  bottom: -145px;
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  top: -95px;
  left: -55px;
}

.hero-mark {
  position: absolute;
  top: 40px;
  right: 44px;
  width: 170px;
  height: 150px;
}

.bulb-circle {
  position: absolute;
  top: 38px;
  left: 56px;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 27px;
  box-shadow: 0 14px 28px rgb(255 122 0 / 25%);
}

.connection {
  position: absolute;
  height: 1px;
  background: rgb(62 26 130 / 28%);
  transform-origin: left center;
}

.connection::after {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  content: "";
}

.connection-one {
  top: 69px;
  left: 18px;
  width: 44px;
}

.connection-two {
  top: 50px;
  left: 106px;
  width: 48px;
  transform: rotate(-27deg);
}

.connection-three {
  top: 100px;
  left: 103px;
  width: 52px;
  transform: rotate(30deg);
}

.hero-panel-title {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  max-width: 330px;
  padding-top: 35px;
}

.hero-panel-title span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel-title strong {
  color: var(--purple);
  font-size: 28px;
  line-height: 1.12;
}

.hero-mini-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 54px;
}

.hero-mini-stats div {
  display: grid;
  gap: 3px;
  min-height: 92px;
  padding: 17px 18px;
  border: 1px solid rgb(62 26 130 / 10%);
  border-radius: 16px;
  background: rgb(255 255 255 / 78%);
}

.hero-mini-stats strong {
  color: var(--purple);
  font-size: 29px;
}

.hero-mini-stats span,
.hero-provinces span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-provinces {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-provinces span {
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
}

.project-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  max-width: 1240px;
  margin: auto;
  padding: 110px 40px;
}

.section-intro h2,
.section-heading h2,
.results-heading h2,
.territory-section h2,
.contact-copy h2 {
  margin: 20px 0;
  color: var(--purple-deep);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-intro p,
.section-heading p,
.territory-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.program-grid {
  display: grid;
  gap: 18px;
}

.program-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.program-card.incubation {
  background: var(--lavender);
}

.program-card.strengthening {
  background: var(--cream);
}

.program-number {
  color: var(--orange);
  font-size: 42px;
  font-weight: 900;
}

.program-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 4px 0 10px;
  color: var(--purple);
  font-size: 27px;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.results-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: end;
  padding: 90px max(40px, calc((100vw - 1160px) / 2));
  background: var(--purple);
  color: white;
}

.eyebrow-light {
  color: var(--gold);
}

.results-heading h2 {
  margin-bottom: 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgb(255 255 255 / 24%);
}

.stat {
  display: grid;
  gap: 7px;
  padding: 20px 24px;
  border-right: 1px solid rgb(255 255 255 / 24%);
}

.stat strong {
  color: var(--gold);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
}

.documents-section {
  padding: 110px max(40px, calc((100vw - 1240px) / 2));
  background: #fbfaff;
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.document-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 45px rgb(39 21 75 / 8%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.document-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgb(39 21 75 / 14%);
}

.document-cover {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 22px;
  height: 210px;
  padding: 28px;
  overflow: hidden;
  background: var(--lavender);
}

.document-card.orange .document-cover {
  background: var(--cream);
}

.pdf-icon {
  position: relative;
  width: 82px;
  height: 104px;
  border: 3px solid var(--purple);
  border-radius: 8px;
  background: white;
}

.pdf-icon::before {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 28px;
  height: 28px;
  border-bottom: 3px solid var(--purple);
  border-left: 3px solid var(--purple);
  border-radius: 0 6px 0 5px;
  background: var(--lavender);
  content: "";
}

.pdf-icon span {
  position: absolute;
  left: 9px;
  bottom: 15px;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--purple);
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.document-card.orange .pdf-icon {
  border-color: var(--orange);
}

.document-card.orange .pdf-icon::before {
  border-color: var(--orange);
  background: var(--cream);
}

.document-card.orange .pdf-icon span {
  background: var(--orange);
}

.document-cover-copy {
  display: grid;
  gap: 8px;
}

.document-cover-copy small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-cover-copy strong {
  color: var(--purple);
  font-size: 21px;
  line-height: 1.12;
}

.document-cover > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--purple);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.document-card.orange .document-cover > span {
  background: var(--orange);
}

.document-content {
  padding: 26px;
}

.document-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-meta span:last-child {
  color: var(--muted);
}

.document-content h3 {
  margin: 15px 0 10px;
  color: var(--purple);
  font-size: 24px;
  line-height: 1.1;
}

.document-content p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.document-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.document-actions a {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.document-card.orange .document-actions a {
  color: var(--orange);
}

.territory-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  padding: 110px max(40px, calc((100vw - 1160px) / 2));
  background: var(--purple-deep);
}

.territory-section h2,
.territory-section p {
  color: white;
}

.territory-section p {
  color: rgb(255 255 255 / 72%);
}

.province-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.province-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 86px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  background: rgb(255 255 255 / 7%);
}

.province-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.province-list strong {
  color: white;
  font-size: 21px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  max-width: 1240px;
  margin: auto;
  padding: 110px 40px;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-options a {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 26px 70px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--lavender);
}

.contact-options a:nth-child(2) {
  background: var(--cream);
}

.contact-options span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-options strong {
  color: var(--purple);
  font-size: clamp(15px, 2vw, 21px);
  overflow-wrap: anywhere;
}

.contact-options i {
  position: absolute;
  top: 50%;
  right: 28px;
  color: var(--orange);
  font-size: 28px;
  font-style: normal;
  transform: translateY(-50%);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px max(40px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
}

footer img {
  width: 142px;
}

footer p {
  color: var(--muted);
  font-size: 12px;
}

footer a {
  justify-self: end;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .project-section,
  .results-section,
  .territory-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .stats-grid {
    border-left: 0;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding: 8px 20px;
  }

  .brand img {
    width: 142px;
    height: 50px;
  }

  .header-cta {
    padding: 11px 14px;
    font-size: 11px;
  }

  .hero,
  .project-section,
  .documents-section,
  .territory-section,
  .contact-section {
    padding: 70px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-mark {
    opacity: 0.35;
  }

  .hero-mini-stats {
    margin-top: 35px;
  }

  .program-card {
    grid-template-columns: 1fr;
  }

  .results-section {
    padding: 70px 20px;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .documents-grid,
  .province-list {
    grid-template-columns: 1fr;
  }

  .document-cover {
    height: 205px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer a {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .document-card {
    transition: none;
  }
}
