body {
  margin: 0;
  font-family: 'Albert Sans', Arial, sans-serif;
  background: #111 url('Public/page-bg.b18ea32f.png') center center no-repeat;
  color: #fff;
  background-size: contain;
  background-repeat: repeat;
  background-position: center center;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(17, 17, 17, 0.98);
  box-shadow: none;
}
.logo {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0 32px 0 32px;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a.active, .nav-links li a:focus, .nav-links li a:hover {
  color: #ff7a1a;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-icon {
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cta-btn {
  background: #ff7a1a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 rgba(255,122,26,0.10);
  border: none;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-btn:hover {
  background: #e65c00;
  color: #fff;
}

.hero {
  background: #111;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-family: 'Albert Sans', Arial, sans-serif;
}
.hero-content h2 {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  margin: 48px 0 12px 0;
  font-weight: 400;
}
.hero-content h1 {
  font-size: 5rem;
  letter-spacing: 0.35em;
  margin: 0 0 32px 0;
  font-weight: 700;
}
.banner-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
.ecosystem-banner {
  width: 100%;
  border-radius: 28px;
  display: block;
}
.center-logo {
  display: none;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  .nav-links {
    gap: 16px;
    margin: 0 0 0 0;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
  .ecosystem-banner {
    border-radius: 16px;
  }
  .center-logo img {
    height: 36px !important;
  }
}

.ecosystem-section {
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 0 24px 48px 24px;
  background: #111;
}
.ecosystem-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ff7a1a;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.ecosystem-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #181A1B;
  border: 1.5px solid #232a28;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(16,30,54,0.04);
  padding: 24px 20px;
  text-decoration: none;
  transition: box-shadow 0.18s, border 0.18s;
  min-height: 110px;
  color: #fff;
}
.ecosystem-card:hover {
  box-shadow: 0 4px 16px 0 rgba(255,122,26,0.10);
  border: 1.5px solid #ff7a1a;
}
.ecosystem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #f3f4f6;
  flex-shrink: 0;
}
.ecosystem-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ff7a1a;
  margin-bottom: 6px;
}
.ecosystem-desc {
  font-size: 1rem;
  color: #e6e6e6;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ecosystem-section {
    padding: 0 8px 32px 8px;
  }
  .ecosystem-card {
    padding: 16px 10px;
    gap: 12px;
  }
  .ecosystem-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
}

.cta-cards-section {
  width: 100%;
  background: #111;
  padding: 48px 0 48px 0;
}
.cta-cards-container {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-card {
  position: relative;
  background: #181A1B;
  color: #fff;
  border-radius: 48px;
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 540px;
  padding: 44px 40px 56px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px;
  box-shadow: none;
}
.cta-card h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  line-height: 1.1;
  color: #fff;
}
.cta-card .highlight {
  color: #ff7a1a;
  font-weight: 800;
}
.cta-card p {
  font-size: 1.18rem;
  margin-bottom: 36px;
  color: #e6e6e6;
  font-weight: 400;
}
.cta-btn-yellow {
  background: #ff7a1a;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 20px 0;
  margin-top: auto;
  cursor: pointer;
  width: 90%;
  max-width: 370px;
  align-self: center;
  transition: background 0.18s, color 0.18s;
  box-shadow: none;
  letter-spacing: 0.01em;
  display: block;
}
.cta-btn-yellow:hover {
  background: #e65c00;
  color: #fff;
}

.incubator-section {
  width: 100%;
  background: #111;
  padding: 56px 0 56px 0;
}
.incubator-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  background: #181A1B;
  border-radius: 48px;
  padding: 56px 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: none;
}
.incubator-left {
  flex: 2 1 420px;
  min-width: 320px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.incubator-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.incubator-subtitle {
  font-size: 1.3rem;
  color: #bfc3c2;
  margin-bottom: 32px;
  font-weight: 500;
}
.incubator-desc {
  font-size: 1.18rem;
  color: #e6e6e6;
  margin-bottom: 36px;
  line-height: 1.5;
  font-weight: 400;
}
.incubator-applications {
  font-size: 1.35rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: #ff7a1a;
  display: inline-block;
}
.incubator-highlight {
  color: #ff7a1a;
  font-weight: 800;
}
.incubator-btn {
  background: #ff7a1a;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 20px 0;
  margin-top: 18px;
  width: 220px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: none;
  letter-spacing: 0.01em;
  display: block;
  align-self: center;
}
.incubator-btn:hover {
  background: #e65c00;
  color: #fff;
}
.incubator-right {
  flex: 1 1 340px;
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.resources-card {
  background: #0b0a0a;
  color: #fff;
  border-radius: 36px;
  padding: 36px 32px;
  min-width: 320px;
  max-width: 440px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.resources-title {
  color: #ff7a1a;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.resources-icon {
  font-size: 1.5rem;
  color: #fff;
}
.resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.18rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resources-list li {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .cta-cards-container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .cta-card {
    max-width: 98vw;
    min-width: 0;
  }
  .incubator-container {
    flex-direction: column;
    gap: 32px;
    padding: 36px 12px;
  }
  .resources-card {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .cta-card {
    padding: 28px 12px 40px 12px;
    border-radius: 24px;
    min-height: 220px;
  }
  .cta-card h2 {
    font-size: 1.5rem;
  }
  .cta-btn-yellow {
    font-size: 1rem;
    padding: 12px 0;
  }
  .incubator-title {
    font-size: 2rem;
  }
  .incubator-section {
    padding: 24px 0 24px 0;
  }
  .incubator-container {
    padding: 18px 2px;
    border-radius: 18px;
  }
  .resources-card {
    padding: 18px 8px;
    border-radius: 18px;
  }
}

.hero, .cta-cards-section, .ecosystem-section, .incubator-section {
  background: transparent !important;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 10;
}
.footer-illustration {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}
.footer-bg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.footer-logo-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0.7;
}
.footer-logo-img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.footer-logo-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px #000a;
  letter-spacing: 0.01em;
}
.footer-bar {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin: 0;
  padding: 18px 24px 14px 24px;
  background: #b23a1a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-family: 'Albert Sans', Arial, sans-serif;
}
.footer-bar-left {
  color: #fff;
  opacity: 0.9;
}
.footer-bar-right a {
  color: #fff;
  opacity: 0.9;
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer-bar-right a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-bar {
    flex-direction: column;
    gap: 8px;
    padding: 14px 8px 10px 8px;
    font-size: 0.95rem;
  }
  .footer-logo-title {
    font-size: 1.5rem;
  }
  .footer-logo-img {
    width: 120px;
  }
}

.bg-detail {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  max-width: 340px;
  max-height: 340px;
  transition: opacity 0.3s;
}
.bg-detail-left {
  left: 0;
  bottom: 0;
}
.bg-detail-right {
  right: 0;
  top: 0;
}
@media (max-width: 900px) {
  .bg-detail {
    display: none;
  }
}

html, body {
  overflow-x: hidden;
}

.incubator-tagline {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  margin-top: -8px;
  letter-spacing: 0.01em;
}

.support-programs-section {
  margin-top: 48px;
  width: 100%;
  text-align: center;
}
.support-programs-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #ff7a1a;
  text-stroke: 2px #ff7a1a;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
  text-align: center;
}
.support-programs-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.support-program-card {
  background: radial-gradient(ellipse at 60% 40%, #2a1a13 60%, #181A1B 100%);
  border-radius: 36px;
  padding: 38px 32px 32px 32px;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 320px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  border: none;
}
.support-program-name {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}
.support-program-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #ff7a1a 50%, transparent 100%);
  margin-bottom: 24px;
}
.support-program-amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ff7a1a;
  margin-bottom: 18px;
  line-height: 1.2;
}
.support-program-amount span {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ff7a1a;
}
.support-program-desc {
  font-size: 1.1rem;
  color: #e6e6e6;
  margin-top: 12px;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .support-programs-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .support-program-card {
    max-width: 98vw;
    min-width: 0;
  }
}

.support-programs-table-section {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.support-programs-table {
  width: 100%;
  max-width: 900px;
  background: #181A1B;
  border-radius: 28px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  box-shadow: none;
  margin: 0 auto;
}
.support-programs-table th, .support-programs-table td {
  padding: 22px 24px;
  text-align: left;
}
.support-programs-table th {
  background: #181A1B;
  color: #ff7a1a;
  font-size: 1.18rem;
  font-weight: 800;
  border-bottom: 2px solid #232a28;
}
.support-programs-table td {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  border-bottom: 1px solid #232a28;
}
.support-programs-table tr:last-child td {
  border-bottom: none;
}
.support-programs-table tr:hover td {
  background: #040403;
}
@media (max-width: 700px) {
  .support-programs-table th, .support-programs-table td {
    padding: 12px 8px;
    font-size: 0.98rem;
  }
  .support-programs-table {
    border-radius: 12px;
  }
}

.opencircle-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.opencircle-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 380px;
  min-width: 320px;
}
.opencircle-table-section {
  margin-top: 0;
}
.opencircle-table {
  margin-top: 0;
  margin-bottom: 0;
}
.support-tier-highlight {
  color: #ff7a1a;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.support-tier-desc {
  color: #e6e6e6;
  font-size: 0.98rem;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .opencircle-flex {
    flex-direction: column;
    gap: 32px;
  }
  .opencircle-right {
    gap: 24px;
  }
}

.opencircle-right-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .opencircle-right-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.resources-card, .opencircle-table-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.incubator-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-x-icon, .footer-x-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  transition: opacity 0.2s;
  opacity: 0.85;
}
.nav-x-icon:hover, .footer-x-icon:hover {
  opacity: 1;
} 