/* ============================================
   TechUP Founder Initiative — Premium Styles
   ============================================ */

:root {
  --bg-dark: #0a0a0f;
  --bg-mid: #12121a;
  --bg-light: #f8f9fc;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --primary-blue: #02357D;
  --accent-orange: #de981f;
  --accent-blue: var(--primary-blue);
  --accent-purple: var(--accent-orange);
  --accent-cyan: var(--primary-blue);
  --accent-green: #10b981;
  --accent-pink: var(--accent-orange);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1033 40%, #0f172a 100%);
  --gradient-cta: linear-gradient(135deg, var(--primary-blue) 0%, #2a3bd1 100%);
  --font-display: 'Instrument Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 72px;
  --section-pad: 88px;
  --section-pad-sm: 64px;
  --section-head-gap: 44px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 54px; 
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out-expo), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-logo-dots {
  display: flex;
  gap: 3px;
}

.nav-logo-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.nav-logo-dots span:nth-child(1) { background: #22c55e; }
.nav-logo-dots span:nth-child(2) { background: #ef4444; }
.nav-logo-dots span:nth-child(3) { background: #eab308; }
.nav-logo-dots span:nth-child(4) { background: var(--primary-blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 13, 161, 0.25);
}

.nav-cta-item {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out-expo);
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-blue);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(20, 13, 161, 0.3);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

.btn-glow {
  background: var(--gradient-cta);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-glow:hover::before {
  transform: translateX(100%);
}

.btn-glow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(20, 13, 161, 0.4);
}

/* ---- Section Utilities ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary-blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-top: 20px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  display: none;
}

.hero-gradient-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.hero-gradient-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-headline .gradient-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: var(--accent-orange);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-flow {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 0 auto;
}

.journey-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 88px;
  opacity: 0;
  transform: scale(0.85);
  animation: journey-appear 0.8s var(--ease-out-expo) forwards;
  z-index: 2;
}

.journey-node.pos-idea {
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  animation-delay: 1s;
}

.journey-node.pos-mvp {
  top: 22%;
  right: 0;
  animation-delay: 1.3s;
}

.journey-node.pos-product {
  bottom: 0;
  right: 8%;
  animation-delay: 1.6s;
}

.journey-node.pos-users {
  bottom: 0;
  left: 8%;
  animation-delay: 0.4s;
}

.journey-node.pos-growth {
  top: 22%;
  left: 0;
  animation-delay: 0.7s;
}

@keyframes journey-appear {
  to { opacity: 1; transform: scale(1); }
}

.journey-node.pos-idea {
  animation-name: journey-appear-center;
}

@keyframes journey-appear-center {
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}

.journey-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s, border-color 0.4s;
  color: rgba(255, 255, 255, 0.9);
}

.journey-icon svg {
  width: 28px;
  height: 28px;
}

.journey-node:hover .journey-icon {
  transform: translateY(-6px);
  border-color: rgba(20, 13, 161, 0.5);
  box-shadow:
    0 20px 48px rgba(20, 13, 161, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.journey-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  width: 100%;
}

.journey-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.journey-line {
  stroke: url(#lineGradient);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 6 4;
  animation: dash-flow 20s linear infinite;
}

.journey-pulse {
  fill: var(--accent-orange);
  opacity: 0.8;
  animation: journey-dot-pulse 2s ease-in-out infinite;
}

@keyframes journey-dot-pulse {
  0%, 100% { opacity: 0.4; r: 3; }
  50% { opacity: 1; r: 5; }
}

@keyframes dash-flow {
  to { stroke-dashoffset: -100; }
}

.hero-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  display: none;
}

/* ============================================
   STARTUP JOURNEY (Horizontal Scroll)
   ============================================ */
.journey-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.logo-img {
  height: 38px;   /* apni need ke hisaab se adjust */
  width: auto;
  display: block;
}
.journey-section-header {
  text-align: center;
  margin-bottom: var(--section-head-gap);
  padding: 0 24px;
}

.journey-track-wrapper {
  position: relative;
  overflow: hidden;
}

.journey-track {
  display: flex;
  gap: 0;
  padding: 0 max(24px, calc((100vw - min(85vw, 600px)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-track::-webkit-scrollbar {
  display: none;
}

.journey-stage {
  flex: 0 0 min(85vw, 600px);
  scroll-snap-align: center;
  padding: 0 20px;
  opacity: 0.3;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.journey-stage.active {
  opacity: 1;
  transform: scale(1);
}

.journey-stage-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.journey-stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stage-color, var(--accent-blue));
}

.journey-stage-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.08;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.journey-stage-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.journey-stage-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}

.journey-stage-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.journey-stage-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.journey-stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.journey-progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding: 0 24px;
}

.journey-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.journey-progress-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--primary-blue);
}

/* ============================================
   FOUNDER ECOSYSTEM
   ============================================ */
.ecosystem-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.ecosystem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.ecosystem-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-nodes .ecosystem-node {
  pointer-events: auto;
}

.ecosystem-visual {
  position: relative;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  margin: 0 auto;
}

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  border: 2px solid #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-clip: padding-box;
  z-index: 10;
}

.ecosystem-center-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}

.ecosystem-center-sub {
  font-size: 0.6875rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ecosystem-node {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  cursor: default;
}

.ecosystem-node:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(20, 13, 161, 0.25);
}

.ecosystem-node-icon {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.ecosystem-node-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.ecosystem-svg {
  position: absolute;
  inset: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  pointer-events: none;
}

.ecosystem-line {
  stroke: rgba(20, 13, 161, 0.3);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 4 4;
  animation: dash-flow 30s linear infinite;
}

/* ============================================
   WHY TECHUP INVESTS (Magazine)
   ============================================ */
.invest-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f18 100%);
}

.invest-top {
  max-width: 720px;
  margin-bottom: 36px;
}

.invest-statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.invest-statement em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-orange), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.invest-stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  /* background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px; */
  padding: 8px;
  margin-bottom: 40px;
  border: 1px solid rgb(130 130 130 / 12%);
    border-radius: 20px;
    background: linear-gradient(345deg, rgba(255, 255, 255, 0.08), rgb(0 0 0 / 3%));
}



.invest-stat-card {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-radius: 14px;
  transition: background 0.3s;
}

.invest-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.invest-stat-link {
  flex: 0 0 32px;
  position: relative;
  align-self: center;
}

.invest-stat-link::before {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(222, 152, 31, 0.5), rgba(20, 13, 161, 0.5));
}

.invest-stat-link::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(20, 13, 161, 0.7);
}

.invest-card-stat {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.invest-card-stat.green {
    background: #22c55e;
}

.invest-card-stat.blue {
  background: var(--primary-blue);
}

.invest-card-stat.yellow {
  background: var(--accent-orange);
}

.invest-card-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.invest-body {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.invest-body-item h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.invest-body-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}



#quote .invest-top {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

#quote .section-label {
  justify-content: center;
}

#quote .invest-statement {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.9);
}

#quote .section-subtitle {
  margin: 28px auto 0;
  max-width: none;
  color: var(--primary-blue);
  font-size: 0.9375rem;
}

/* ============================================
   WHAT WE BRING (Glass Cards)
   ============================================ */
.bring-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #0f0f18 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
}

.bring-header {
  text-align: center;
  margin-bottom: var(--section-head-gap);
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bring-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.bring-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(193 193 193 / 20%), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.bring-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 13, 161, 0.4);
  box-shadow: 0 24px 64px rgba(20, 13, 161, 0.15);
}

.bring-card:hover::before {
  opacity: 1;
}

.bring-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(20, 13, 161, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.bring-card-icon svg {
  width: 32px;
  height: 32px;
}

.bring-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.bring-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SUCCESS STORIES (Timeline)
   ============================================ */
.stories-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

.stories-header {
  text-align: center;
  margin-bottom: var(--section-head-gap);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.story-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.4s var(--ease-out-expo);
}

.story-card:hover {
  transform: translateY(-4px);
}

.story-card-header {
  padding: 32px 32px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.story-meta h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
}

.story-meta span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.story-timeline {
  padding: 24px 32px 32px;
}

.story-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
}

.story-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.story-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(20, 13, 161, 0.2);
  border: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.story-step-content h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.story-step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.story-outcome {
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.story-outcome strong {
  color: var(--accent-green);
  font-size: 0.8125rem;
}

/* ============================================
   INNOVATION LAB
   ============================================ */
.lab-section {
  position: relative;
  padding: var(--section-pad) 0;
  /* background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1628 50%, var(--bg-dark) 100%); */
  overflow: hidden;
}

.lab-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20, 13, 161, 0.06) 0%, transparent 60%);
}

.lab-header {
  text-align: center;
  margin-bottom: var(--section-head-gap);
  position: relative;
  z-index: 2;
}

.lab-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.lab-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.lab-stage {
  flex: 1;
  min-width: 0;
  max-width: 240px;
  text-align: center;
}

.lab-stage-frame {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 16px;
  aspect-ratio: 280 / 180;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
  border-color: rgba(20, 13, 161, 0.4);
    box-shadow: 0 8px 28px rgba(20, 13, 161, 0.15);
}

.lab-stage-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.lab-stage:hover .lab-stage-frame {
  transform: translateY(-4px);
  border-color: rgba(20, 13, 161, 0.35);
  box-shadow: 0 12px 32px rgba(20, 13, 161, 0.12);
}

.lab-stage--highlight .lab-stage-frame {
  border-color: rgba(20, 13, 161, 0.4);
  box-shadow: 0 8px 28px rgba(20, 13, 161, 0.15);
}

.lab-stage-num {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.lab-stage-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000000;
}

.lab-stage-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 0 4px;
}

.lab-flow-arrow {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  opacity: 0.7;
}

.lab-flow-arrow svg {
  width: 36px;
  height: 18px;
}

.lab-toolkit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(222,152,31,0.12), rgba(20,13,161,0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  flex-wrap: wrap;
}

.lab-toolkit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.lab-toolkit-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.lab-toolkit-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.lab-toolkit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.lab-toolkit-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================
   APPLICATION JOURNEY
   ============================================ */
.apply-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.apply-header {
  text-align: center;
  margin-bottom: var(--section-head-gap);
}

.apply-journey {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.apply-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: -28px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, rgba(30, 58, 138, 0.15) 100%);
  opacity: 1;
  border-radius: 999px;
  z-index: 0;
}

.apply-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 48px;
  opacity: 0.4;
  transition: opacity 0.6s var(--ease-out-expo);
  position: relative;
}

.apply-step.active {
  opacity: 1;
}

.apply-step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s var(--ease-out-expo);
}

.apply-step.active .apply-step-marker {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  margin-top: 20px;
}
.ecosystem-node-icon svg{
    width:40px;
    height:40px;
    display:block;
}
.apply-step-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: transform 0.4s var(--ease-out-expo);
}

.apply-step.active .apply-step-content {
  transform: translateX(8px);
}

.apply-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.apply-step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.apply-step-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--primary-blue);
  font-weight: 500;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-bg {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, #0a0a0f 0%, #1a1033 30%, #0f172a 60%, #0a0a0f 100%); */
  background:#e1e1e1;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(222, 152, 31, 0.25) 0%, rgba(20, 13, 161, 0.1) 40%, transparent 70%);
  animation: cta-glow-pulse 4s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-subheadline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.cta-content--split {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}

.cta-text .cta-headline {
  text-align: left;
}

.cta-text .cta-subheadline {
  margin-bottom: 20px;
}

.cta-terms {
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 1;
  line-height: 1.6;
}

.apply-form-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}

.cta-visual {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.cta-visual-img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.cta-intro-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cta-expect-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
}

.cta-expect-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.cta-expect-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-expect-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-left: 4px;
}

.cta-expect-list li::marker {
  color: var(--primary-blue);
  font-weight: 700;
}



.apply-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.apply-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-form-field--full {
  grid-column: 1 / -1;
}

.apply-form-field--hidden {
  display: none;
}

.apply-form-field--hidden.is-visible {
  display: flex;
}

.apply-form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.apply-form-field input,
.apply-form-field textarea,
.apply-form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(10, 10, 15, 0.6);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Fix for intl-tel-input search input to not overlap search icon */
.apply-form-field input.iti__search-input {
  padding-left: 40px;
  border: none;
  border-bottom: 1px solid var(--glass-border);
}

.apply-form-field input.iti__search-input:focus {
  box-shadow: none;
  border-color: var(--glass-border);
}

/* Standardize intl-tel-input alignment and font sizes */
.iti {
  width: 100%;
}

.iti__country-btn {
  font-size: 15px;
  padding: 0 10px;
  min-height: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.iti__country-name,
.iti__selected-dial-code {
  font-size: 15px;
  line-height: 1;
}

.iti__tel-input {
  font-size: 15px;
  font-family: var(--font-body);
  height: 48px;
  min-height: 48px;
  padding: 12px 14px;
  line-height: 24px;
  vertical-align: middle;
}

.apply-form-field input::placeholder,
.apply-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.apply-form-field input:focus,
.apply-form-field textarea:focus,
.apply-form-field select:focus {
  border-color: rgba(20, 13, 161, 0.6);
  box-shadow: 0 0 0 3px rgba(20, 13, 161, 0.15);
}

.apply-form-field input.is-error,
.apply-form-field textarea.is-error,
.apply-form-field select.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.apply-form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.apply-form-field input[type="date"] {
  color-scheme: dark;
}

.apply-select-wrap {
  position: relative;
}

.apply-select-wrap select {
  appearance: none;
  padding-right: 36px;
}

.apply-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
  font-size: 1rem;
}

.apply-form-submit {
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.apply-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-snackbar {
  margin-top: 16px;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.25rem;
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity 0.3s;
}

.form-snackbar.is-visible {
  opacity: 1;
}

.form-snackbar.is-success {
  color: var(--accent-green);
}

.form-snackbar.is-error {
  color: #f87171;
}

/* ============================================
   FOOTER IFRAME
   ============================================ */
.footer-frame-wrap {
  width: 100%;
  background: #0a0a0f;
  margin-top: -1px;
}

.footer-frame-wrap--dark {
  background: linear-gradient(180deg, #0a0a0f 0%, #0a0a0f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-frame-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
}

/* ============================================
   FOOTER (legacy static)
   ============================================ */
.site-footer {
  background: #f4f4f4;
  color: var(--text-dark);
  padding: 64px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-brand-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #111;
}

.footer-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 24px;
}

.footer-address {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-address strong {
  display: block;
  color: #333;
  margin-bottom: 4px;
}

.footer-member {
  font-size: 0.8125rem;
  color: #555;
  margin-bottom: 20px;
}

.footer-member a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.footer-consulting-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.footer-consulting-logo span {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #111;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.8125rem;
  color: #555;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #111;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: #333;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #111;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #777;
}

.footer-bottom a {
  color: var(--primary-blue);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: white;
  flex: 0 0 auto;
}

/* Logo SVG dots */
.logo-dots {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  width: 28px;
}

.logo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.logo-dots span:nth-child(1) { background: #22c55e; }
.logo-dots span:nth-child(2) { background: #ef4444; }
.logo-dots span:nth-child(3) { background: #eab308; }
.logo-dots span:nth-child(4) { background: var(--primary-blue); }

.consulting-t {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e, var(--primary-blue), #ef4444, #eab308);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.iti--fullscreen-popup .iti__search-input {
    min-height: 60px;
}

.mobile-only {
  display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    height: 320px;
    order: 2;
  }

  .hero-text {
    order: 1;
  }

  .invest-body {
    grid-template-columns: 1fr;
  }

  .bring-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lab-flow {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .lab-flow::-webkit-scrollbar { display: none; }

  .lab-stage {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .lab-flow-arrow {
    flex: 0 0 28px;
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
    --section-head-gap: 24px;
    --nav-height: 64px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
.apply-step.active .apply-step-content {
    transform: none;
  }
  .nav-inner {
    padding: 0 16px;
  }

  .logo-img {
    height: 32px;
  }

  .nav-cta--desktop {
    display: none;
  }

  .nav-cta-item {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding-top: 8px;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
  }

  .nav-cta--menu {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.875rem;
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 32px 16px 48px;
    gap: 28px;
  }

  .hero-headline {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 6px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .bring-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 260px;
  }

  .journey-flow {
    width: min(280px, 82vw);
    height: min(280px, 82vw);
  }

  .journey-icon {
    width: 52px;
    height: 52px;
    border-width: 1.5px;
  }

  .journey-icon svg {
    width: 22px;
    height: 22px;
  }

  .journey-label {
    font-size: 0.5625rem;
  }

  .journey-section {
    padding: 48px 0;
  }

  .journey-section-header {
    padding: 0 16px;
    margin-bottom: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
.journey-track {
    padding: 0 16px;
    scroll-padding-inline: 16px;
  }
  .journey-track {
    padding: 0 12px;
    scroll-padding: 0 12px;
  }

  .journey-stage {
    flex: 0 0 100%;
    max-width: 520px;
    padding: 0 8px;
    margin: 0 auto;
  }

  .journey-stage-card {
    padding: 28px 22px;
    min-height: unset;
    border-radius: 18px;
  }

 





  .journey-stage-number {
    font-size: 3rem;
    top: 12px;
    right: 16px;
  }

  .journey-stage-icon {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .journey-stage-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }

  .journey-stage-desc {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .journey-stage-tags {
    gap: 6px;
  }

  .journey-tag {
    font-size: 0.6875rem;
    padding: 8px 12px;
  }

  .journey-progress {
    margin-top: 28px;
  }

  .ecosystem-section {
    padding: var(--section-pad) 0;
  }

  .ecosystem-header {
    margin-bottom: 28px;
  }

  .ecosystem-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ecosystem-svg {
    display: none;
  }

  .ecosystem-nodes {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    order: 1;
    pointer-events: auto;
  }

  .ecosystem-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 110px;
    height: 110px;
    aspect-ratio: 1 / 1;
    margin: 8px auto 0;
    flex-shrink: 0;
    overflow: hidden;
  }

  .ecosystem-center-label {
    font-size: 0.9375rem;
  }

  .ecosystem-center-sub {
    font-size: 0.5625rem;
  }

  .ecosystem-node {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    height: auto;
    min-height: 76px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 8px;
  }

  .ecosystem-node-icon {
    font-size: 1.125rem;
    margin-bottom: 4px;
  }

  .ecosystem-node-label {
    font-size: 0.625rem;
    line-height: 1.2;
  }

  .invest-statement {
    font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  }


  #quote .invest-statement {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  #quote .section-subtitle {
    margin-top: 20px;
    font-size: 0.875rem;
  }

  /* .invest-stats-row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border-radius: 28px;
  } */

  

 



  

  .invest-card-stat {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .invest-card-label {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
  }

  .invest-body-item h4 {
    font-size: 1rem;
  }

  .invest-body-item p {
    font-size: 0.875rem;
  }

  .bring-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .bring-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .bring-card-title {
    font-size: 1.0625rem;
  }

  .bring-card-desc {
    font-size: 0.875rem;
  }

  .lab-flow {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }



.lab-stage {
    max-width: 320px;
    width: 100%;
  }



  .lab-flow-arrow {
    padding: 0;
    transform: rotate(90deg);
    flex: 0 0 auto;
    align-self: center;
    z-index: 1;
  }



  .lab-toolkit {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 16px;
  }

  .lab-toolkit-divider {
    width: 60px;
    height: 1px;
  }

  .lab-toolkit-item {
    flex-direction: column;
    text-align: center;
  }

  .lab-toolkit-icon {
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .apply-step:not(:last-child)::before {
    left: 20px;
    top: 20px;
    bottom: -20px;
  }

  .apply-step {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding-bottom: 28px;
  }

  .apply-step-marker {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  .apply-step-content {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .apply-step-title {
    font-size: 1.0625rem;
  }

  .apply-step-desc {
    font-size: 0.8125rem;
  }

  .cta-content--split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-text .cta-headline {
    text-align: center;
  }

  .apply-form-panel {
    padding: 24px 20px;
  }

  .apply-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .apply-form-field--full {
    grid-column: 1;
  }

  .cta-headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-subheadline {
    font-size: 0.9375rem;
    margin-bottom: 32px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .story-card-header {
    padding: 20px 18px 0;
  }

  .story-timeline {
    padding: 16px 18px 20px;
  }
}
@media (max-width: 1024px) {
  .invest-stats-row {
    flex-direction: column;
    padding: 12px;
  }
  
}

@media (max-width: 380px) {


  

  .ecosystem-nodes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .invest-stat-link {
    flex: 0 0 24px;
    width: 100%;
  }

  .invest-stat-link::before {
    left: 50%;
    right: auto;
    top: 4px;
    bottom: 4px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(222, 152, 31, 0.5), rgba(20, 13, 161, 0.5));
  }

  .invest-stat-link::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 2px;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(20, 13, 161, 0.7);
    border-left-color: transparent;
  }
  
}
@media (max-width: 768px) {
  .bring-card-title {
    font-size: 1.0625rem;
  }

  .bring-card-desc {
    font-size: 0.875rem;
  }

  .lab-flow {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .apply-step.active .apply-step-marker {
    margin-top: 13px;
}


.invest-top{
    text-align: center;
}


.lab-stage {
    max-width: 320px;
    width: 100%;
  }



  .lab-flow-arrow {
    padding: 0;
    transform: rotate(90deg);
    flex: 0 0 auto;
    align-self: center;
    z-index: 1;
  }



  .lab-toolkit {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 16px;
  }

  .lab-toolkit-divider {
    width: 60px;
    height: 1px;
  }

  .lab-toolkit-item {
    flex-direction: column;
    text-align: center;
  }

  .lab-toolkit-icon {
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .apply-step:not(:last-child)::before {
    left: 20px;
    top: 20px;
    bottom: -20px;
  }

  .apply-step {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding-bottom: 28px;
  }

  .apply-step-marker {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  .apply-step-content {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .apply-step-title {
    font-size: 1.0625rem;
  }

  .apply-step-desc {
    font-size: 0.8125rem;
  }

  .cta-content--split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .cta-text .cta-headline {
    text-align: center;
  }

  .apply-form-panel {
    padding: 24px 20px;
  }

  .apply-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .apply-form-field--full {
    grid-column: 1;
  }

  .cta-headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-subheadline {
    font-size: 0.9375rem;
    margin-bottom: 32px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .story-card-header {
    padding: 20px 18px 0;
  }

  .story-timeline {
    padding: 16px 18px 20px;
  }
}
@media (max-width: 1024px) {
  .invest-stats-row {
    flex-direction: column;
    padding: 12px;
  }
  
}

@media (max-width: 380px) {


  

  .ecosystem-nodes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .invest-stat-link {
    flex: 0 0 24px;
    width: 100%;
  }

  .invest-stat-link::before {
    left: 50%;
    right: auto;
    top: 4px;
    bottom: 4px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(222, 152, 31, 0.5), rgba(20, 13, 161, 0.5));
  }

  .invest-stat-link::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 2px;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(20, 13, 161, 0.7);
    border-left-color: transparent;
  }
  
}
@media (max-width: 768px) {
    .apply-form-field label {
        text-align: left;
    }
}

/* ==========================================================================
   BREAKPOINTS: 360px, 768px, 1024px, 1200px, 1440px
   ========================================================================== */

/* Desktop Large (1440px and above) */
@media (min-width: 1440px) {
  .nav-container,
  .cta-content--split {
    max-width: 1320px;
    margin: 0 auto;
  }
}

/* Laptop / Desktop Standard (1201px to 1439px) */
@media (max-width: 1439px) and (min-width: 1201px) {
  .nav-container {
    padding: 0 32px;
  }
}

/* Tablet / Intermediate Viewports (Up to 1200px) */
@media (max-width: 1200px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height, 70px);
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
    text-align: center;
    z-index: 999;
  }

  .nav-links.active, .nav-links.open {
    display: flex;
  }

  .nav-cta--desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-only {
    display: block;
  }
}

/* Mobile Standard (Up to 768px) */
@media (max-width: 768px) {
  .cta-content--split {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .apply-form-panel {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

/* Small Mobile Devices (360px) */
@media (max-width: 360px) {
  .nav-container {
    padding: 0 12px;
  }
  
  .apply-form-panel {
    padding: 16px;
  }
  
  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    font-size: 14px;
  }
}

/* Required UI Color Formatting rules */
.required-star {
  color: #ef4444 !important;
  margin-left: 2px;
}

.text-orange-notice {
  color: #de981f !important;
  font-weight: 500;
}

/* Standardized Field Sizing */
.apply-form input:not([type="checkbox"]),
.apply-form select,
.apply-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  box-sizing: border-box;
}

/* Checkbox Styling */
.apply-form input[type="checkbox"] {
  width: auto;
  min-height: auto;
  border: none !important;
  outline: none !important;
}

/* Remove validation border on checkboxes */
.apply-form input[type="checkbox"]:invalid {
  border: none !important;
  outline: none !important;
}