/* Tata TomorrowLAB - Custom Styles */

:root {
  --primary: #0a0a0a;
  --secondary: #00ab5c;
  --accent: #2fd87a;
  --light-grey: #f4f7f5;
  --dark: #111827;
  --shadow-soft: 0 2px 15px -3px rgba(0, 171, 92, 0.06), 0 4px 6px -4px rgba(10, 10, 10, 0.04);
  --shadow-soft-lg: 0 10px 40px -10px rgba(0, 171, 92, 0.12), 0 4px 12px -4px rgba(10, 10, 10, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}
#main-content {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
.display-font {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

::selection {
  background: rgba(0, 171, 92, 0.2);
  color: var(--primary);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-bar {
  width: 192px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 2rem;
}
.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 999px;
  animation: loaderFill 1.4s ease-in-out forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── Logo ── */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 220px;
  object-fit: contain;
}
.site-logo--tata {
  max-height: 40px;
  max-width: 160px;
  background: transparent;
}
.site-logo--brand {
  max-height: 44px;
  max-width: 190px;
}
.site-logo--loader {
  max-height: 72px;
  max-width: 280px;
}
.site-logo--footer {
  max-height: 60px;
  max-width: 260px;
}
@media (min-width: 992px) {
  .site-logo--tata {
    max-height: 48px;
    max-width: 200px;
  }
  .site-logo--brand {
    max-height: 52px;
    max-width: 230px;
  }
}
.header-shell {
  width: 100%;
  padding: 0.85rem 1rem;
}
@media (min-width: 992px) {
  .header-shell { padding: 0.9rem 1.25rem; }
}
@media (min-width: 1400px) {
  .header-shell { padding: 0.95rem 1.75rem; }
}
.header-bar { gap: 0.75rem; }
.header-nav { flex: 1; justify-content: center; }
.header-right { flex-shrink: 0; }
.logo-link--tata { margin-right: auto; }
.logo-link--brand { margin-left: 0; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.page-inner .site-header {
  background: rgba(10, 10, 10, 0.92);
}
.nav-link-custom {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.6rem !important;
  position: relative;
  transition: color 0.3s;
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
}
.nav-link-custom:hover,
.nav-link-custom:focus {
  color: #fff !important;
  background: transparent !important;
}
/* Underline only when header is solid — avoids video-section patch glitch */
.site-header.scrolled .nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  pointer-events: none;
}
.site-header.scrolled .nav-link-custom:hover::after,
.site-header.scrolled .nav-item-dropdown:hover > .nav-dropdown-toggle::after,
.site-header.scrolled .nav-item-dropdown.open > .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.nav-item-dropdown:hover .nav-dropdown-toggle i,
.nav-item-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: #111;
  border: 1px solid rgba(0,171,92,0.25);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1100;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(0,171,92,0.15);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: #0a0a0a;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 998;
  padding: 5.5rem 1.5rem 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
/* Keep header solid dark while mobile menu is open (no video bleed) */
body.menu-open .site-header {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.mobile-menu a {
  display: block;
  padding: 0.875rem 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }
.mobile-submenu { margin: 0.25rem 0; }
.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
}
.mobile-submenu-panel {
  display: none;
  padding-left: 0.75rem;
}
.mobile-submenu.open .mobile-submenu-panel { display: block; }
.mobile-submenu.open .mobile-submenu-toggle i { transform: rotate(180deg); }
.mobile-submenu-panel a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* ── Buttons ── */
.btn-tl-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-tl-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(0, 102, 255, 0.4);
  color: #fff;
}
.btn-tl-primary.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.btn-tl-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.2s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.btn-tl-outline-light:hover {
  transform: scale(1.02);
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.2);
  color: #fff;
}

/* ── Site container (matches Next.js max-w-7xl) ── */
.site-container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .site-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 992px) {
  .site-container { padding-left: 2rem; padding-right: 2rem; }
}

/* ── Section utilities ── */
.section-padding { padding: 3.5rem 0; }
@media (min-width: 992px) { .section-padding { padding: 4.5rem 0; } }
.section-compact { padding-top: 3.25rem; padding-bottom: 3.25rem; }
@media (min-width: 992px) {
  .section-compact { padding-top: 4rem; padding-bottom: 4rem; }
}

/* Section background rhythm — black / mint / white / soft green */
.section-bg-mint {
  background:
    radial-gradient(ellipse at top left, rgba(0,171,92,0.08), transparent 55%),
    linear-gradient(180deg, #f2faf5 0%, #eef7f1 100%);
}
.section-bg-white {
  background:
    radial-gradient(ellipse at bottom right, rgba(47,216,122,0.06), transparent 50%),
    #ffffff;
}
.section-bg-soft {
  background:
    radial-gradient(ellipse at top right, rgba(0,171,92,0.1), transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(47,216,122,0.06), transparent 50%),
    linear-gradient(180deg, #e8f6ee 0%, #f7fbf8 100%);
}
.section-bg-green {
  background:
    radial-gradient(ellipse at top right, rgba(47,216,122,0.25), transparent 55%),
    linear-gradient(135deg, #047857 0%, #00ab5c 55%, #059669 100%);
  color: #fff;
}

.section-header {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 171, 92, 0.12);
  color: var(--secondary);
  margin-bottom: 1rem;
}
.section-eyebrow.light {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(17, 24, 39, 0.6);
  line-height: 1.7;
  margin-top: 1.25rem;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-soft-lg { box-shadow: var(--shadow-soft-lg); }

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-section--video {
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
/* Full-bleed zoom — crop side letterboxing on desktop */
.hero-media video.hero-video,
video.hero-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none;
  border: 0;
  transform: translate(-50%, -50%) scale(1.18) !important;
}
@media (min-width: 1200px) {
  .hero-media video.hero-video,
  video.hero-video {
    transform: translate(-50%, -50%) scale(1.32) !important;
  }
}
.hero-content--centered {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}
.hero-content--centered .hero-desc {
  max-width: 32rem;
  font-size: 1.05rem;
}
.hero-section--video .hero-container,
.hero-section--video .scroll-indicator { z-index: 3; }
.hero-content--centered .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.hero-container {
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .hero-container { padding-top: 10rem; }
}
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.45), rgba(10,10,10,0.3), rgba(10,10,10,0.6));
  pointer-events: none;
  z-index: 2;
}
.hero-section--video .hero-gradient-1,
.hero-section--video .hero-gradient-2 { z-index: 2; opacity: 0.25; }
.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,171,92,0.15), transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.hero-gradient-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(47,216,122,0.1), transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.hero-container { position: relative; z-index: 3; }

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(40px);
}
.hero-loaded .hero-anim-1 {
  animation: heroBadgeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-loaded .hero-anim-2 {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero-loaded .hero-anim-3 {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.hero-loaded .hero-anim-4 {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.hero-loaded .hero-anim-5 {
  animation: heroScaleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--accent);
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 1200px) {
  .hero-title { font-size: 4.5rem; }
}
.text-gradient {
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 36rem;
  margin-top: 1.5rem;
}

/* Hero illustration — proportional sizing (512px base) */
.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 1;
  margin: 0 auto;
  container-type: inline-size;
}
.hero-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21.875%;
  height: 21.875%;
  border-radius: 21%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.65rem, 3.5cqw, 0.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  z-index: 10;
  box-shadow: 0 0 40px rgba(0,171,92,0.3);
  animation: hubGlow 3s ease-in-out infinite;
}
@keyframes hubGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(0,171,92,0.3); }
  50% { box-shadow: 0 0 60px rgba(47,216,122,0.4); }
}

/* Orbit positioning — 31.25% radius (160/512), angles 0/72/144/216/288° */
.hero-orbit {
  position: absolute;
  width: 15.625%;
  height: 15.625%;
  z-index: 5;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.hero-loaded .hero-orbit-1 {
  left: calc(50% + 31.25%);
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}
.hero-loaded .hero-orbit-2 {
  left: calc(50% + 9.66%);
  top: calc(50% + 29.73%);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}
.hero-loaded .hero-orbit-3 {
  left: calc(50% - 25.16%);
  top: calc(50% + 18.38%);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.7s;
}
.hero-loaded .hero-orbit-4 {
  left: calc(50% - 25.16%);
  top: calc(50% - 18.38%);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}
.hero-loaded .hero-orbit-5 {
  left: calc(50% + 9.66%);
  top: calc(50% - 29.73%);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.9s;
}

.hero-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  height: 250%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.hero-node-inner {
  width: 100%;
  height: 100%;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.6rem, 2.5cqw, 0.7rem);
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: nodeFloat 3s ease-in-out infinite;
}
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.1);
  z-index: 1;
  pointer-events: none;
  animation: ringPulse 8s ease-in-out infinite;
}
.hero-ring-1 { inset: 6.25%; }
.hero-ring-2 {
  inset: 12.5%;
  border-style: solid;
  border-color: rgba(255,255,255,0.05);
  animation-delay: 2s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  display: block;
  width: 100%;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Cards ── */
.tl-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s, box-shadow 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}
.tl-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.tl-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.tl-card p { color: rgba(17,24,39,0.6); line-height: 1.7; margin: 0; font-size: 0.95rem; }

.offer-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-lg);
  border-color: rgba(0,171,92,0.2);
}
.offer-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: width 0.4s;
}
.offer-card:hover::after { width: 100%; }
.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s;
}
.offer-card:hover .offer-icon { transform: scale(1.1); }

/* ── Stats (Facts & Figures) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .stats-grid { gap: 1.5rem; }
}
@media (min-width: 992px) {
  .stats-grid { grid-template-columns: repeat(5, 1fr); }
}

.stat-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(to bottom right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 576px) {
  .stat-number { font-size: 3rem; }
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(17, 24, 39, 0.5);
}
.stat-card::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.stat-card:hover::after { transform: scaleX(1); }

.stats-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.stats-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.stats-grid .reveal:nth-child(5) { transition-delay: 0.25s; }

/* ── Ecosystem strip ── */
.ecosystem-strip {
  background:
    radial-gradient(ellipse at left, rgba(0,171,92,0.25), transparent 55%),
    linear-gradient(135deg, #0a0a0a 0%, #0f1a14 50%, #0a0a0a 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 0;
  border: 1px solid rgba(0,171,92,0.2);
}
.ecosystem-strip--on-green {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.ecosystem-strip--on-green .ecosystem-stat-value {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.ecosystem-strip--on-green .ecosystem-stat-label {
  color: rgba(255,255,255,0.85);
}

/* ── Impact ── */
.impact-card {
  background: #fff;
  border: 1px solid rgba(0,171,92,0.12);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}
.impact-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.impact-label {
  margin: 0.65rem 0 0;
  color: rgba(17,24,39,0.65);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ── Thrust Areas ── */
.thrust-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid rgba(0,171,92,0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
}
.thrust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,171,92,0.4);
  box-shadow: var(--shadow-soft-lg);
}
.thrust-card--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}
.thrust-card--link::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0,171,92,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.thrust-card--link:hover::before { opacity: 1; }
.thrust-card--link .thrust-icon {
  margin-bottom: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.thrust-card--link:hover .thrust-icon { transform: scale(1.08) rotate(-3deg); }
.thrust-card--link h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--dark);
}
.thrust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,171,92,0.25);
}
.thrust-card h3 { margin-bottom: 0.65rem; }
.thrust-card p {
  margin: 0 0 0.85rem;
  color: rgba(17,24,39,0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}
.thrust-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(17,24,39,0.65);
  font-size: 0.88rem;
  line-height: 1.65;
}
.thrust-list li { margin-bottom: 0.25rem; }

.about-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-soft-lg);
  border: 1px solid rgba(0,171,92,0.18);
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
}
.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,171,92,0.18), transparent 45%, rgba(10,10,10,0.25));
  pointer-events: none;
}
.about-media:hover img { transform: scale(1.04); }
@media (max-width: 991.98px) {
  .about-media { aspect-ratio: 16 / 9; }
}

.about-copy {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,171,92,0.12);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.about-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}
.about-copy--compact { padding: 1.5rem 1.75rem 1.5rem 2rem; }
.about-copy p {
  color: rgba(17,24,39,0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-more { margin-top: 0.25rem; }
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(0,171,92,0.35);
  border-radius: 999px;
  background: rgba(0,171,92,0.08);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-view-more:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-view-more i { transition: transform 0.25s; }
.btn-view-more.is-open i { transform: rotate(180deg); }

.journey-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.journey-tab {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.journey-tab.active,
.journey-tab:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-color: transparent;
}
.journey-panel[hidden] { display: none !important; }
.journey-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.challenge-accordion { max-width: 56rem; margin: 0 auto; }
.challenge-acc-item {
  border: 1px solid rgba(0,171,92,0.15) !important;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: #fff;
}
.challenge-acc-item .accordion-button {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  box-shadow: none;
}
.challenge-acc-item .accordion-button:not(.collapsed) {
  color: var(--secondary);
  background: rgba(0,171,92,0.06);
}
.challenge-acc-item .accordion-button:focus { box-shadow: none; border-color: transparent; }
.challenge-acc-item .accordion-body {
  color: rgba(17,24,39,0.7);
  line-height: 1.75;
}
.faq-answer ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: rgba(17,24,39,0.65);
  line-height: 1.7;
}
.faq-answer a { color: var(--secondary); font-weight: 600; }

/* ── Media & Events ── */
.media-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.media-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.media-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,171,92,0.12);
  color: var(--secondary);
  font-weight: 600;
}
.media-meta time { color: rgba(17,24,39,0.5); }
.media-card h3 { margin-bottom: 0.65rem; }
.media-card p {
  color: rgba(17,24,39,0.6);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.media-link {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.media-link:hover { color: #047857; }

/* ── FAQs ── */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,171,92,0.12);
  border-radius: 14px;
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
}
.faq-question i { color: var(--secondary); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  margin: 0;
  color: rgba(17,24,39,0.65);
  line-height: 1.7;
}
.ecosystem-stat-value {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
}
.ecosystem-stat-label { font-weight: 600; color: #fff; margin-top: 0.25rem; }
.ecosystem-stat-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ── Journey Timeline ── */
.journey-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,171,92,0.18), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(47,216,122,0.1), transparent 40%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
}
.journey-timeline-h {
  position: relative;
  padding-top: 3rem;
}
.journey-line-h {
  position: absolute;
  top: 52px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.journey-line-h-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  will-change: width;
}
.journey-step-h { text-align: center; position: relative; opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.journey-step-h.is-visible { opacity: 1; transform: translateY(0); }
.journey-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 104px;
  margin-bottom: 1rem;
}
.journey-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,171,92,0.3);
  transition: transform 0.3s;
}
.journey-step-h:hover .journey-num { transform: scale(1.1); }
.journey-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.4s;
}
.journey-step-h:hover .journey-glass {
  transform: translateY(-4px);
  border-color: rgba(47,216,122,0.3);
  background: rgba(255,255,255,0.1);
}
.journey-glass h4 { color: #fff; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.journey-glass p { color: rgba(255,255,255,0.5); font-size: 0.75rem; line-height: 1.6; margin: 0; }

/* Vertical timeline mobile */
.journey-timeline-v { position: relative; padding-left: 2.5rem; }
.journey-line-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.journey-line-v-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
  will-change: height;
}
.journey-step-v {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.journey-step-v.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.journey-step-v .journey-num {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 20px;
  height: 20px;
  font-size: 0.6rem;
  margin: 0;
}

/* ── Challenges ── */
.featured-challenge {
  background: linear-gradient(135deg, var(--primary), var(--primary), var(--secondary));
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(47,216,122,0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.challenge-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17,24,39,0.05);
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-lg);
}
.badge-open { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.badge-closing { background: rgba(245,158,11,0.1); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }
.badge-upcoming { background: rgba(0,171,92,0.1); color: #00ab5c; border: 1px solid rgba(0,171,92,0.2); }
.status-badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* ── Success Stories ── */
.story-slider {
  position: relative;
  overflow: hidden;
}
.story-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft-lg);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.story-card.story-out {
  opacity: 0;
  transform: translateX(-40px);
}
.story-card.story-in-from {
  opacity: 0;
  transform: translateX(40px);
  transition: none !important;
}
.story-card.story-in-to {
  opacity: 1;
  transform: translateX(0);
}
.story-panel {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 320px;
}
.story-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
}
.story-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}
.story-content {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}
.story-quote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark);
}
.metric-box {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 1rem;
}
.metric-box small {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17,24,39,0.4);
}
.metric-box strong {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17,24,39,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.story-dot.active {
  width: 32px;
  border-radius: 999px;
  background: var(--secondary);
}
.story-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(17,24,39,0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.story-nav-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ── Startups ── */
.startup-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17,24,39,0.05);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.startup-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,171,92,0.2);
  box-shadow: var(--shadow-soft-lg);
}
.startup-bubble {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(0,171,92,0.05), rgba(47,216,122,0.05));
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.startup-card:hover .startup-bubble {
  transform: scale(1.5);
}
.startup-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.startup-card:hover .startup-logo { transform: scale(1.1); }
.startup-card h3,
.startup-card .sector-tag,
.startup-card .startup-details {
  position: relative;
  z-index: 1;
}
.sector-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.startup-details {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.startup-card:hover .startup-details { opacity: 1; }
.startup-details i {
  transition: transform 0.3s ease;
}
.startup-card:hover .startup-details i {
  transform: translate(2px, -2px);
}

/* ── Final CTA ── */
.cta-section {
  background:
    radial-gradient(ellipse at center top, rgba(0,171,92,0.22), transparent 55%),
    linear-gradient(180deg, #0d1410 0%, #0a0a0a 60%, #050805 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,171,92,0.2), transparent 70%);
  pointer-events: none;
}

/* ── Footer ── */
.site-footer {
  background:
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0,171,92,0.15);
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social:hover {
  background: var(--secondary);
  color: #fff;
}
.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.newsletter-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #fff;
  width: 100%;
  font-size: 0.875rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.btn-newsletter {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-newsletter:hover { opacity: 0.9; }

/* ── Sticky Mobile CTA ── */
.sticky-mobile-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  pointer-events: none;
}
.sticky-mobile-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-mobile-cta .btn-tl-primary { width: 100%; }

/* ── Go to Top ── */
.go-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 171, 92, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, box-shadow 0.3s;
}
.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go-to-top:hover {
  box-shadow: 0 10px 28px rgba(0, 171, 92, 0.45);
  color: #fff;
}
.go-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (max-width: 767.98px) {
  .go-to-top {
    bottom: 5.5rem;
    right: 1rem;
  }
}

/* ── Floating shapes ── */
.float-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,171,92,0.1), rgba(47,216,122,0.05));
  filter: blur(60px);
  pointer-events: none;
  animation: floatShape 20s ease-in-out infinite;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -30px) scale(1.05); }
  66% { transform: translate(-10px, -15px) scale(1.02); }
}

/* Brand motif nodes (inspired by logo tree/circuit) */
.brand-motif {
  position: absolute;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
  background:
    radial-gradient(circle at 30% 30%, var(--accent) 0 6px, transparent 7px),
    radial-gradient(circle at 70% 25%, var(--secondary) 0 5px, transparent 6px),
    radial-gradient(circle at 55% 65%, var(--accent) 0 7px, transparent 8px),
    radial-gradient(circle at 25% 70%, rgba(255,255,255,0.7) 0 4px, transparent 5px);
  filter: drop-shadow(0 0 12px rgba(0,171,92,0.35));
  animation: motifPulse 6s ease-in-out infinite;
}
.brand-motif::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(47,216,122,0.35);
  transform: skewX(-12deg);
  border-radius: 4px;
}
.brand-motif--tl { top: 12%; left: 4%; animation-delay: 0s; }
.brand-motif--br { bottom: 10%; right: 5%; animation-delay: 1.5s; }
.brand-motif--cta {
  top: 10%;
  right: 8%;
  opacity: 0.35;
}
@keyframes motifPulse {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.4; }
  50% { transform: scale(1.06) translateY(-8px); opacity: 0.65; }
}

.btn-tl-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(0,171,92,0.35);
  background: rgba(0,171,92,0.08);
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-tl-secondary:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* Inner pages */
.page-inner { padding-top: 0; }
.page-hero {
  background:
    radial-gradient(ellipse at top right, rgba(0,171,92,0.35), transparent 55%),
    linear-gradient(135deg, #0a0a0a 0%, #0f1f16 100%);
  padding-top: 7.5rem !important;
  padding-bottom: 3rem !important;
}
.page-hero .section-subtitle { max-width: 36rem; }
.approach-block {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0,171,92,0.12);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.approach-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft-lg);
}
.approach-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}
.approach-block .thrust-icon { margin-bottom: 0.85rem; }
.approach-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.approach-block > p {
  color: rgba(17,24,39,0.65);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
#thrust-areas, #journey, #benefits, #decarbonization, #safety,
#operational-efficiency, #sensors-robotics, #raw-materials,
#sustainability-circularity, #success-stories, #contact {
  scroll-margin-top: 96px;
}

.section-eyebrow.light { color: rgba(255,255,255,0.75); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-anim, .hero-orbit { opacity: 1; transform: none; }
  .journey-step-h, .journey-step-v { opacity: 1; transform: none; }
  .journey-line-h-fill { width: 100% !important; }
  .journey-line-v-fill { height: 100% !important; }
  .story-card { transition: none !important; opacity: 1 !important; transform: none !important; }
  .brand-motif { animation: none !important; }
}
