/* Prithvi Roots Ecosystem Expansion Styles
   White Luxury Theme: Apple + Notion + McKinsey Aesthetic
*/

:root {
  --bg-alabaster: #F9F9F9;
  --text-dark: #1A1A1A;
  --accent-gold: #C5A880;
  --accent-gold-hover: #B4966E;
  --divider-light: #E5E5E5;
  --text-muted: #666666;
  --card-bg: #FFFFFF;
  --font-family: "Montserrat", sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background-color: var(--bg-alabaster) !important;
  color: var(--text-dark) !important;
  font-family: var(--font-family);
  overflow-x: hidden;
}

/* --- Utility Styles --- */
.section-padding {
  padding: 120px 0;
}

.text-gold {
  color: var(--accent-gold);
}

.bg-alabaster-section {
  background-color: var(--bg-alabaster);
}

.luxury-heading {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.luxury-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* --- Frosted Glass Navbar --- */
.sticky-nav {
  transition: var(--transition-smooth) !important;
  border: 1px solid transparent;
  border-radius: 0px;
  padding: 15px 25px !important;
}

.sticky-nav.scrolled {
  background: rgba(249, 249, 249, 0.75) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: 16px;
  top: 15px !important;
  left: 20px !important;
  width: calc(100% - 40px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sticky-nav.scrolled .logo {
  filter: invert(1); /* Invert white logo to black on light scrolled bg */
}

.sticky-nav.scrolled #nav-btn {
  filter: invert(0) !important; /* Keep menu button visible */
}

.sticky-nav.scrolled #nav-btn .icon {
  stroke: var(--text-dark) !important;
}

/* --- Magnetic Buttons & CTAs --- */
.btn-gold {
  background-color: var(--accent-gold);
  color: #FFFFFF !important;
  border: 1px solid var(--accent-gold);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-gold:hover {
  border-color: var(--text-dark);
}

.btn-gold:hover::after {
  height: 100%;
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--text-dark) !important;
  border: 1px solid var(--accent-gold);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* --- Section Dividers Drawing on Scroll --- */
.scroll-divider-wrap {
  width: 100%;
  height: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-divider {
  width: 100%;
  height: 1px;
  background-color: var(--divider-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-divider.active {
  transform: scaleX(1);
}

/* --- Section 1: "The Prithvi Roots Ecosystem" Brand Story --- */
.ecosystem-story {
  position: relative;
  background-color: var(--bg-alabaster);
  overflow: hidden;
}

.seed-animation-container {
  position: relative;
  height: 500px;
  margin-top: 50px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 5;
}

.grid-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
  height: 100%;
  justify-content: center;
}

.col-left {
  align-items: flex-start;
}

.col-right {
  align-items: flex-end;
}

.col-center {
  justify-content: center;
  align-items: center;
}

.seed-node {
  width: 80px;
  height: 80px;
  background-color: var(--text-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(197, 168, 128, 0.4);
  animation: pulseSeed 3s infinite alternate;
}

.seed-node i {
  color: var(--accent-gold);
  font-size: 1.8rem;
}

.branch-lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.branch-path {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 2px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.65;
}

.sector-card-wrapper {
  width: 280px;
  z-index: 5;
}

.sector-card {
  background: var(--card-bg);
  border: 1px solid var(--divider-light);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.sector-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.12);
}

.sector-card .icon-wrap {
  width: 48px;
  height: 48px;
  background-color: rgba(197, 168, 128, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.sector-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.sector-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@keyframes pulseSeed {
  0% { box-shadow: 0 0 20px rgba(197, 168, 128, 0.3); }
  100% { box-shadow: 0 0 40px rgba(197, 168, 128, 0.6); }
}

/* --- Section 2: Interactive Network Animation --- */
.network-section {
  background-color: var(--bg-alabaster);
  overflow: hidden;
  position: relative;
}

.network-container {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.network-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.network-line {
  stroke: var(--divider-light);
  stroke-width: 2px;
  stroke-dasharray: 6 4;
  fill: none;
  transition: var(--transition-smooth);
}

.network-line.active {
  stroke: var(--accent-gold);
  stroke-dasharray: none;
  stroke-width: 3px;
  filter: drop-shadow(0 0 5px rgba(197, 168, 128, 0.5));
}

.network-node {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--divider-light);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.network-node:hover, .network-node.active {
  border-color: var(--accent-gold);
  background-color: var(--text-dark);
  color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.2);
}

.network-node.center-node {
  background-color: var(--text-dark);
  color: #FFFFFF;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  padding: 0;
  justify-content: center;
  flex-direction: column;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  cursor: default;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.network-node.center-node:hover {
  transform: none;
}

.network-node.center-node span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-node.center-node .gold-root-text {
  color: var(--accent-gold);
}

/* Placements around center node */
.node-tech { top: 12%; left: 33%; }
.node-marketing { top: 12%; right: 33%; }
.node-exports { top: 50%; left: 10%; transform: translateY(-50%); }
.node-finance { top: 50%; right: 10%; transform: translateY(-50%); }
.node-legal { bottom: 12%; left: 33%; }
.node-clients { bottom: 12%; right: 33%; }

.network-node i {
  color: var(--accent-gold);
}

.network-node:hover i {
  animation: spinSlow 4s infinite linear;
}

/* Info Panel Overlay */
.network-info-panel {
  position: absolute;
  width: 280px;
  background: var(--card-bg);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.network-info-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.network-info-panel h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.network-info-panel p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Section 3: "You Build. We Handle the Rest." Split Scroll --- */
.split-scroll-section {
  position: relative;
  background-color: #FFFFFF;
  border-top: 1px solid var(--divider-light);
  border-bottom: 1px solid var(--divider-light);
}

.split-scroll-container {
  display: flex;
  flex-wrap: wrap;
}

.split-left {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-alabaster);
  border-right: 1px solid var(--divider-light);
}

.founder-animation-wrap {
  width: 80%;
  height: 60%;
  position: relative;
}

.visual-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.visual-stage.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.stage-graphic {
  width: 250px;
  height: 250px;
  border: 1px solid var(--divider-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 30px;
}

.stage-graphic i {
  font-size: 5rem;
  color: var(--accent-gold);
}

.stage-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stage-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 300px;
}

/* Pulsating rings for AI code stage */
.pulsating-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  animation: pulseRing 4s infinite linear;
}
.pulsating-ring:nth-child(2) {
  animation-delay: 1.5s;
  width: 120%;
  height: 120%;
}

@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.split-right {
  width: 50%;
  padding: 100px 8%;
}

.tasks-headline-wrap {
  margin-bottom: 60px;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 45px;
  opacity: 0.3;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.task-item.active {
  opacity: 1;
  transform: translateY(0);
}

.task-checkbox {
  width: 30px;
  height: 30px;
  border: 2px solid var(--divider-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-top: 3px;
}

.task-item.active .task-checkbox {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

.task-checkbox i {
  font-size: 0.9rem;
}

.task-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.task-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Section 4: Stacked Cards Peel --- */
.stack-section {
  position: relative;
  /* height is set by JS based on card count */
}

.stack-wrapper {
  position: relative;
  height: 100vh; /* overridden by JS */
  overflow: hidden;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  will-change: transform;
  transform-origin: center top;
}

.stack-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 0.8s ease;
}

.stack-card:hover .stack-card-bg {
  transform: scale(1.12);
}

.stack-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.35) 55%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 1;
}

.stack-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10% 0 10%;
  max-width: 680px;
}

.stack-card-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.stack-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  text-transform: uppercase;
  border: 1px solid var(--accent-gold);
  padding: 4px 12px;
  border-radius: 100px;
}

.stack-tag-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.stack-card-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
}

.stack-card-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  border-left: 2px solid var(--accent-gold);
  padding-left: 22px;
  margin-bottom: 0;
}

.stack-card-number {
  position: absolute;
  right: 8%;
  bottom: 8%;
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  z-index: 1;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}


/* --- Section 5: The Global Reach Section --- */
.global-reach-section {
  background-color: var(--bg-alabaster);
  position: relative;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 500px;
  position: relative;
  margin-top: 50px;
  border: 1px solid var(--divider-light);
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.world-map-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.continent-path {
  fill: #F0F0F0;
  stroke: #E2E2E2;
  stroke-width: 0.8px;
}

.map-route-path {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: 0.8;
  filter: drop-shadow(0 2px 4px rgba(197, 168, 128, 0.4));
}

.map-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--accent-gold);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition-smooth);
}

.map-node.active {
  opacity: 1;
  transform: scale(1);
}

.map-node::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  animation: pulseNode 2s infinite linear;
}

@keyframes pulseNode {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Specific node placements on our map viewBox="0 0 1000 500" */
.map-node-india { top: 56%; left: 68%; }
.map-node-us-east { top: 35%; left: 28%; }
.map-node-europe { top: 32%; left: 51%; }
.map-node-middle-east { top: 48%; left: 60%; }
.map-node-singapore { top: 68%; left: 74%; }

/* --- Section 6: The Founder Journey Timeline --- */
.timeline-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--divider-light);
  border-bottom: 1px solid var(--divider-light);
  overflow: hidden;
  position: relative;
}

.timeline-pin-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
}

.timeline-track-wrap {
  width: 100%;
  position: relative;
  margin-top: 50px;
  padding: 60px 0;
}

.timeline-progress-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--divider-light);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.1s linear;
}

.timeline-nodes-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16%;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border: 2px solid var(--divider-light);
  border-radius: 50%;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.timeline-node.active .timeline-dot {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.5);
  transform: scale(1.25);
}

.timeline-card {
  background: var(--card-bg);
  border: 1px solid var(--divider-light);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  width: 180px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.timeline-node.active .timeline-card {
  transform: translateY(0);
  opacity: 1;
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.timeline-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.timeline-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --- Section 7: Final CTA --- */
.final-cta-section {
  background-color: var(--bg-alabaster);
  text-align: center;
  position: relative;
}

.cta-box {
  background-color: #FFFFFF;
  border: 1px solid var(--divider-light);
  border-radius: 24px;
  padding: 80px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.02);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
}

/* --- Stats Counter --- */
.stats-wrap {
  border-top: 1px solid var(--divider-light);
  padding-top: 40px;
  margin-top: 60px;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Custom Cursor --- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  opacity: 0;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  opacity: 0;
}

/* Hover effects for cursor on interactive elements */
body.hover-link .custom-cursor {
  background-color: var(--text-dark);
  width: 4px;
  height: 4px;
}

body.hover-link .custom-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--accent-gold);
  background-color: rgba(197, 168, 128, 0.05);
}


/* --- Premium Luxury Footer --- */
.footer-luxury {
  background-color: #FFFFFF;
  border-top: 1px solid var(--divider-light);
  padding: 80px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-logo-img {
  width: 220px;
  height: 45px;
  background-image: url("../assets/img/prithviroots-white.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;
  filter: invert(1); /* Invert white logo to black for light footer */
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-info i {
  color: var(--accent-gold);
  margin-top: 4px;
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--divider-light);
  padding-top: 30px;
  margin-top: 60px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .seed-animation-container {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 0;
  }
  
  .branch-lines-svg, .seed-node {
    display: none;
  }
  
  .sector-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .sector-card {
    opacity: 1;
    transform: none;
  }
  
  .network-container {
    min-height: auto;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }
  
  .network-svg, .network-node.center-node {
    display: none;
  }
  
  .network-node {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    justify-content: flex-start;
  }
  
  .network-info-panel {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100%;
    max-width: 320px;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  
  .network-node.active + .network-info-panel {
    display: block;
  }
  
  .split-left {
    width: 100%;
    height: 40vh;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--divider-light);
  }
  
  .split-right {
    width: 100%;
    padding: 60px 20px;
  }
  
  .stage-graphic {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }
  
  .stage-graphic i {
    font-size: 3rem;
  }
  
  .horizontal-scroll-container {
    width: 100% !important;
    height: auto;
    flex-direction: column;
  }
  
  .showcase-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 80px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(229, 229, 229, 0.1);
  }
  
  .showcase-graphic-wrap {
    width: 100%;
    height: 300px;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .map-container {
    height: 350px;
  }
  
  .timeline-pin-container {
    height: auto;
    padding: 80px 20px;
  }
  
  .timeline-track-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  
  .timeline-nodes-wrap {
    width: 1000px;
  }
  
  .timeline-progress-bg, .timeline-progress-bar {
    width: 1000px;
  }
  
  .timeline-card {
    opacity: 1;
    transform: none;
  }
  
  .timeline-node .timeline-card {
    transform: none !important;
    opacity: 1 !important;
  }
}
