/* ================================================================
   iHub Anubhuti — IIITD Foundation
   startups.css | Dedicated Innovation & Startups Stylesheet
   Designed by: Expert UI/UX & Front-End System
   ================================================================ */

/* ----------------------------------------------------------------
   1. EDITORIAL HERO SECTION
   ---------------------------------------------------------------- */
.editorial-hero {
  position: relative;
  background: radial-gradient(circle at 75% 50%, rgba(14, 40, 73, 0.85) 0%, rgba(8, 22, 40, 0.95) 100%), url('../images/startupBg.webp');
  background-size: cover;
  background-position: center;
  padding-block: 150px 80px !important;
  min-height: 480px !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: none !important;
}

.editorial-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .editorial-hero {
    padding: 7rem 0 5rem 0;
    min-height: auto;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* ── Left Content Panel (Transparent, Cardless) ── */
.hero-left-panel {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 10;
  max-width: 620px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 575px) {
  .hero-left-panel {
    padding: 0;
    border-radius: 0;
  }
}

.panel-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.75rem;
}

.panel-breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--trans-fast);
}

.panel-breadcrumbs a:hover {
  color: var(--gold-light);
}

.panel-breadcrumbs-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.panel-breadcrumbs-active {
  color: var(--gold-light);
}

.panel-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.panel-tagline-line {
  width: 16px;
  height: 2px;
  background-color: var(--gold-light);
}

.panel-tagline-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.panel-title em {
  font-style: italic;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-weight: 600;
}

.panel-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.panel-cta-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--gold);
  padding: 0.95rem 2.25rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 750;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(238, 185, 2, 0.2);
}

.panel-cta-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 12px 30px rgba(238, 185, 2, 0.45);
  transform: translateY(-2px);
}

.panel-cta-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease);
}

.panel-cta-btn:hover i {
  transform: translateX(5px);
}

/* ── Right Column 3D Visual ── */
.hero-right-scene {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-right-scene {
    height: 440px;
    margin-top: 1rem;
  }
}

/* ── Right Content Panel (Cardless Ecosystem Stats) ── */
.hero-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  z-index: 10;
  position: relative;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stats-panel-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 850;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid rgba(238, 185, 2, 0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  align-self: flex-start;
}

.stats-panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.stats-panel-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spi-val {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spi-lbl {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .hero-stats-panel {
    gap: 2rem;
    margin-top: 1rem;
    max-width: 440px;
    margin-inline: auto;
  }
  .stats-panel-row {
    gap: 2rem;
  }
}

/* ----------------------------------------------------------------
   2. STRIPE-STYLE STARTUP LOGO MARQUEE
   ---------------------------------------------------------------- */
.marquee-section {
  padding: 4.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  overflow: hidden;
}

.marquee-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.marquee-section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.marquee-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}

.marquee-section-title em {
  font-style: normal;
  color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
  min-width: 100%;
  animation: marqueeScroll 55s linear infinite;
}

.marquee-track-reverse {
  animation: marqueeScroll 65s linear infinite reverse;
}

/* Stop scroll on hover */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-logo-card {
  flex-shrink: 0;
  width: 210px;
  height: 110px;
  background: var(--white);
  border: 1px solid rgba(14, 40, 73, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  box-shadow: 0 4px 15px rgba(11, 37, 69, 0.01);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.marquee-logo-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: rgba(28, 82, 150, 0.3);
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.08), 0 5px 15px rgba(28, 82, 150, 0.05);
}

.marquee-logo-img {
  max-width: 90%;
  max-height: 56px;
  object-fit: contain;
  filter: none; /* Colorful by default! */
  opacity: 0.95;
  transition: all 0.4s var(--ease);
}

.marquee-logo-card:hover .marquee-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

.marquee-logo-name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-align: center;
  transition: color 0.3s var(--ease);
}

.marquee-logo-card:hover .marquee-logo-name {
  color: var(--navy-light);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   3. PROGRAM KPI RIBBON
   ---------------------------------------------------------------- */
.kpi-section {
  background: #f4f8fd;
  padding: 6rem 0;
  border-bottom: 1px solid var(--grey-200);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(14, 40, 73, 0.08);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.04);
  overflow: hidden;
}

@media (max-width: 1199px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

.kpi-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Left/Right dividing lines for a clean dashboard grid */
.kpi-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(14, 40, 73, 0.08);
}

@media (max-width: 1199px) {
  .kpi-card::after { display: none; }
  .kpi-card {
    border-bottom: 1px solid rgba(14, 40, 73, 0.08);
    border-right: 1px solid rgba(14, 40, 73, 0.08);
  }
}

.kpi-card:hover {
  transform: none;
  background: rgba(28, 82, 150, 0.02);
  box-shadow: none;
}

.kpi-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  background: rgba(14, 40, 73, 0.04);
  color: var(--navy-light);
  transition: all 0.3s var(--ease);
}

/* Hover color highlights */
.kpi-card:nth-child(1) :hover .kpi-icon-wrap { background: #3b82f6; color: #fff; }
.kpi-card:nth-child(2) :hover .kpi-icon-wrap { background: #10b981; color: #fff; }
.kpi-card:nth-child(3) :hover .kpi-icon-wrap { background: #f97316; color: #fff; }
.kpi-card:nth-child(4) :hover .kpi-icon-wrap { background: #8b5cf6; color: #fff; }
.kpi-card:nth-child(5) :hover .kpi-icon-wrap { background: #0ea5e9; color: #fff; }
.kpi-card:nth-child(6) :hover .kpi-icon-wrap { background: #f59e0b; color: #fff; }

.kpi-val-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
  margin-bottom: 0.5rem;
}

.kpi-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Custom gradients for values */
.kpi-card:nth-child(1) .kpi-value { background: linear-gradient(135deg, #1d4ed8, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-card:nth-child(2) .kpi-value { background: linear-gradient(135deg, #047857, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-card:nth-child(3) .kpi-value { background: linear-gradient(135deg, #ea580c, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-card:nth-child(4) .kpi-value { background: linear-gradient(135deg, #7c3aed, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-card:nth-child(5) .kpi-value { background: linear-gradient(135deg, #0284c7, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-card:nth-child(6) .kpi-value { background: linear-gradient(135deg, #d97706, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.kpi-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-left: 2px;
}

.kpi-card:nth-child(1) .kpi-suffix { color: #3b82f6; }
.kpi-card:nth-child(2) .kpi-suffix { color: #10b981; }
.kpi-card:nth-child(3) .kpi-suffix { color: #f97316; }
.kpi-card:nth-child(4) .kpi-suffix { color: #8b5cf6; }
.kpi-card:nth-child(5) .kpi-suffix { color: #0ea5e9; }
.kpi-card:nth-child(6) .kpi-suffix { color: #f59e0b; }

.kpi-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-500);
  margin-top: 0.5rem;
}

/* Micro sparkline styles */
.kpi-sparkline {
  width: 80px;
  height: 24px;
  margin-top: 1rem;
  opacity: 0.5;
  transition: all 0.3s var(--ease);
}

.kpi-card:hover .kpi-sparkline {
  opacity: 1;
  transform: scale(1.05);
}

.kpi-sparkline path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.kpi-card:nth-child(1) .kpi-sparkline path { stroke: #3b82f6; }
.kpi-card:nth-child(2) .kpi-sparkline path { stroke: #10b981; }
.kpi-card:nth-child(3) .kpi-sparkline path { stroke: #f97316; }
.kpi-card:nth-child(4) .kpi-sparkline path { stroke: #8b5cf6; }
.kpi-card:nth-child(5) .kpi-sparkline path { stroke: #0ea5e9; }
.kpi-card:nth-child(6) .kpi-sparkline path { stroke: #f59e0b; }

/* ----------------------------------------------------------------
   4. FEATURED STARTUP SECTION
   ---------------------------------------------------------------- */
.featured-section {
  padding: 6.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.featured-header {
  text-align: center;
  margin-bottom: 4rem;
}

.featured-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.featured-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.featured-box {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  min-height: 480px;
}

@media (max-width: 991px) {
  .featured-box { grid-template-columns: 1fr; }
}

.featured-content {
  padding: 4rem;
  z-index: 2;
}

@media (max-width: 575px) {
  .featured-content { padding: 2.5rem 1.75rem; }
}

.featured-startup-badge {
  background: rgba(255, 196, 0, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.featured-startup-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.featured-startup-sector {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-light);
  color: #00b4d8;
  margin-bottom: 1.5rem;
}

.featured-startup-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.25rem;
}

.featured-startup-link {
  background: var(--white);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
}

.featured-startup-link:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 25px rgba(255, 196, 0, 0.35);
  transform: translateY(-2px);
}

.featured-startup-link i {
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease);
}

.featured-startup-link:hover i {
  transform: translateX(4px);
}

/* ── Laptop mockup visual on right ── */
.featured-visual {
  background: radial-gradient(circle at center, #14355c 0%, #081628 100%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  min-height: 380px;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

.laptop-screen-outer {
  background: #111;
  border-radius: 12px 12px 0 0;
  padding: 7px 7px 0 7px;
  border: 2px solid #333;
}

.laptop-screen-inner {
  aspect-ratio: 16/10;
  background: #222;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.mockup-webpage {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.mockup-webpage-header {
  height: 14px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 3px;
  padding-left: 6px;
  border-bottom: 1px solid #e0e0e0;
}

.mockup-header-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.mockup-header-dot.red { background: #ff5f56; }
.mockup-header-dot.yellow { background: #ffbd2e; }
.mockup-header-dot.green { background: #27c93f; }

.mockup-webpage-body {
  flex-grow: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0b132b;
  color: #fff;
  font-family: monospace;
  font-size: 0.45rem;
}

.mockup-brand {
  font-weight: bold;
  color: #00b4d8;
  border-bottom: 1px solid #1c2541;
  padding-bottom: 3px;
}

.mockup-code-line {
  height: 4px;
  background: #1c2541;
  border-radius: 2px;
  width: 80%;
}

.mockup-code-line.w50 { width: 50%; }
.mockup-code-line.w70 { width: 70%; }
.mockup-code-line.w30 { width: 30%; }
.mockup-code-line.accent { background: rgba(0, 180, 216, 0.4); }

.laptop-base {
  height: 8px;
  background: #d1d5db;
  border-radius: 0 0 16px 16px;
  position: relative;
  width: 110%;
  left: -5%;
  border-bottom: 2px solid #9ca3af;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #9ca3af;
  border-radius: 0 0 4px 4px;
}

/* ----------------------------------------------------------------
   5. INTERACTIVE STARTUP DIRECTORY
   ---------------------------------------------------------------- */
.directory-section {
  padding: 6.5rem 0;
  background: #f8fafd;
  border-bottom: 1px solid var(--grey-200);
}

.directory-header {
  text-align: center;
  margin-bottom: 4rem;
}

.directory-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.directory-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
}

/* ── Filter Bar ── */
.filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(14, 40, 73, 0.04);
  border: 1px solid rgba(14, 40, 73, 0.05);
}

@media (max-width: 767px) {
  .filter-bar { border-radius: 20px; padding: 0.75rem; }
}

.filter-tab {
  background: transparent;
  border: none;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-600);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-tab:hover {
  color: var(--navy);
  background: rgba(28, 82, 150, 0.05);
}

.filter-tab.is-active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(14, 40, 73, 0.15);
}

/* ── Startup Wall Grid ── */
.startup-wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1199px) {
  .startup-wall-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .startup-wall-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .startup-wall-grid { grid-template-columns: 1fr; }
}

.startup-wall-card {
  background: var(--white);
  border: 1px solid rgba(14, 40, 73, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(11, 37, 69, 0.01);
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.startup-wall-card.is-hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
}

.startup-wall-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 82, 150, 0.15);
  box-shadow: 0 15px 30px rgba(11, 37, 69, 0.06);
}

.sw-card-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-100);
  padding-bottom: 1rem;
}

.sw-card-logo-img {
  max-height: 40px;
  max-width: 80%;
  object-fit: contain;
}

.sw-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.sw-card-domain {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy-light);
  text-transform: uppercase;
  background: rgba(28, 82, 150, 0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}

.sw-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey-600);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.sw-card-support-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey-600);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-top: 1px dashed var(--grey-100);
  padding-top: 0.75rem;
}

.sw-card-support-badge i {
  color: var(--gold-dark);
}

/* ----------------------------------------------------------------
   6. THE STARTUP JOURNEY (TIMELINE PROCESS)
   ---------------------------------------------------------------- */
.journey-section {
  padding: 6.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.journey-header {
  text-align: center;
  margin-bottom: 5rem;
}

.journey-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.journey-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
}

.journey-timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  padding-top: 2rem;
}

@media (max-width: 991px) {
  .journey-timeline-horizontal { grid-template-columns: 1fr; gap: 3rem; padding-left: 2rem; }
}

/* Timeline horizontal connecting line */
.journey-timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 8.33%;
  width: 83.33%;
  height: 2px;
  background: linear-gradient(to right, var(--navy-light) 0%, var(--gold) 100%);
  opacity: 0.15;
  z-index: 1;
}

@media (max-width: 991px) {
  .journey-timeline-horizontal::before {
    left: 21px;
    top: 2rem;
    width: 2px;
    height: 90%;
    background: linear-gradient(to bottom, var(--navy-light) 0%, var(--gold) 100%);
  }
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .journey-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 1.5rem; }
}

.journey-node-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(28, 82, 150, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease);
}

.journey-step:hover .journey-node-wrap {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(28, 82, 150, 0.3);
}

.journey-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .journey-step-content { align-items: flex-start; }
}

.journey-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.journey-step-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey-600);
  line-height: 1.5;
  max-width: 170px;
}

@media (max-width: 991px) {
  .journey-step-desc { max-width: 100%; }
}

/* ----------------------------------------------------------------
   7. ANIMATIONS KEYFRAMES
   ---------------------------------------------------------------- */
@keyframes rotateCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateCCW {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes counterRotateCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes counterRotateCCW {
  0% { transform: rotate(-360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes floatCenter {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.93); opacity: 0.75; }
  100% { transform: scale(1.07); opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
