/* ============================================================
   startup-incubation.css — PortfolixHub startup incubation page styles
   ============================================================ */

/* ── PAGE WRAPPER ── */
.page { padding-top: 0; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--black);
  padding: 80px var(--pad) 72px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

/* ── SECTION CONTENT ── */
.section-content {
  padding: 80px var(--pad);
  background: var(--white);
}

.section-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-content > .container > p {
  font-size: 16px;
  color: var(--g500);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 700px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  padding: 32px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  animation: slideUpReveal .6s cubic-bezier(.34, 1.56, .64, 1) backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

.feature-card:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--black);
}

.feature-card p {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
}

/* ── BENEFITS LIST ── */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.benefit-item {
  padding: 32px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.benefit-item:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.benefit-item h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--black);
}

.benefit-item p {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
}

/* ── ELIGIBILITY BOX ── */
.eligibility-box {
  padding: 40px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  margin-bottom: 48px;
}

.eligibility-box h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--black);
}

.eligibility-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eligibility-box li {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.eligibility-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #16a34a;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.step {
  padding: 32px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  animation: slideUpReveal .6s cubic-bezier(.34, 1.56, .64, 1) backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step:hover {
  border-color: var(--black);
  background: var(--g50);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--black);
}

.step p {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
}

/* ── REQUIRED DOCUMENTS ── */
.required-documents {
  padding: 40px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  margin-bottom: 48px;
}

.required-documents h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--black);
}

.required-documents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.required-documents li {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.required-documents li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 600;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 48px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--g50) 0%, rgba(250, 250, 250, .5) 100%);
  border-radius: 16px;
  border: 1px solid var(--g200);
}

.cta-section h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.cta-section p {
  font-size: 15px;
  color: var(--g500);
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.01em;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
}

.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

.btn-primary:active {
  transform: scale(.97);
}

/* ── SUCCESS GRID ── */
.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.success-card {
  padding: 32px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.success-card:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.success-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  color: var(--black);
}

.startup-tagline {
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 12px !important;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.success-card p {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.6;
}

/* ── ANIMATIONS ── */
@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  animation: fadeIn .8s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px;
  }

  .cta-section {
    padding: 32px 24px;
  }

  .section-content {
    padding: 60px var(--pad);
  }

  .eligibility-box,
  .required-documents {
    padding: 24px;
  }
}
