/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #030712;
  color: #f9fafb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ========== HEADER & NAVBAR ========== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at top, #22c55e, #0b1120 60%);
  border: 2px solid rgba(34, 197, 94, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.7rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.1rem;
  color: #e5e7eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #22c55e, #a3e635);
  transition: width 0.2s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #bbf7d0;
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.7);
  font-size: 0.8rem;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.35), rgba(15, 23, 42, 1));
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Burger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
}

/* Mobile nav behaviour */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.85rem 1.25rem 1rem;
    background: #020617;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, #22c55e, #a3e635);
  color: #052e16;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: transparent;
  color: #e5e7eb;
}

/* ========== SECTIONS ========== */
main {
  padding-bottom: 3rem;
}

.section {
  padding: 2.8rem 0;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a3e635;
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ========== HERO ========== */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.6);
  background: rgba(15, 23, 42, 0.95);
  margin-bottom: 0.9rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.hero-title span {
  background: linear-gradient(to right, #22c55e, #eab308);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Hero right card */
.hero-card {
  border-radius: 1.3rem;
  padding: 1.2rem;
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 1));
  border: 1px solid rgba(52, 211, 153, 0.6);
}

.hero-card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #bbf7d0;
  margin-bottom: 0.4rem;
}

.hero-card-number {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-card-small {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.pill {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== GRIDS & CARDS ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: 1rem;
  padding: 1.1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.card-kicker {
  font-size: 0.75rem;
  color: #a3e635;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* ========== LISTS, TAGS ========== */
.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(31, 41, 55, 1);
  border: 1px solid rgba(75, 85, 99, 1);
}

/* ========== CONTACT & FORMS ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-card {
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.form-row {
  display: flex;
  gap: 0.9rem;
}

.form-row > div {
  flex: 1;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: #e5e7eb;
  font-size: 0.85rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.3);
}

/* Contact info box */
.contact-info-box {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.22), rgba(15, 23, 42, 1));
  border: 1px solid rgba(52, 211, 153, 0.7);
  font-size: 0.85rem;
}

.contact-info-box h3 {
  margin-bottom: 0.6rem;
}

.contact-list {
  list-style: none;
  margin-bottom: 0.8rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

/* ========== JOB CARDS ========== */
.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.job-card {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.35rem;
}

.job-title {
  font-size: 1rem;
}

.job-location {
  font-size: 0.8rem;
  color: #9ca3af;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.4rem 0 0.6rem;
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid rgba(31, 41, 55, 1);
  background: #020617;
  padding: 1.6rem 0 1.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
}

.footer-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}





/* ================= FUTURE HEADER ================= */
.future-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(22px);
  background: rgba(2,6,23,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* IMAGE TEXTURE */
.nav-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2,6,23,0.85), rgba(2,6,23,0.65)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.future-navbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

/* LOGO */
.future-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark.glow {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(34,197,94,0.6);
}

/* NAV */
.future-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.future-nav-links {
  display: flex;
  gap: 1.6rem;
}

.future-link {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #e5e7eb;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.future-link:hover {
  opacity: 1;
}

.future-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  transition: width 0.3s ease;
}

.future-link:hover::after,
.future-link.active::after {
  width: 100%;
}

/* CTA */
.future-nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  color: #020617;
  box-shadow: 0 0 25px rgba(34,197,94,0.6);
  transition: transform 0.3s ease;
}

.future-nav-cta:hover {
  transform: scale(1.1);
}

/* MOBILE */
.future-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.future-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .future-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2,6,23,0.95);
    flex-direction: column;
    padding: 1.2rem;
    display: none;
  }

  .future-nav-links.open {
    display: flex;
  }

  .future-toggle {
    display: flex;
  }
}





/* ========== HERO VISUAL UPGRADE ========== */
.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(3,7,18,0.92), rgba(3,7,18,0.6)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,0.25), transparent 60%),
    radial-gradient(circle at bottom right, rgba(163,230,53,0.18), transparent 60%);
  z-index: 1;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 2;
}

/* Glass effect */
.glass {
  backdrop-filter: blur(18px);
  background: rgba(15,23,42,0.7);
}

/* Glow */
.glow {
  box-shadow: 0 0 25px rgba(34,197,94,0.25);
}

/* Button glow */
.btn-glow {
  box-shadow: 0 12px 30px rgba(34,197,94,0.4);
}

/* Stats strip */
.stats-strip {
  background:
    linear-gradient(to right, rgba(34,197,94,0.12), rgba(3,7,18,1));
}

.stats-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  border-radius: 1rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(52,211,153,0.6);
}

.stats-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.85rem;
}

.stats-items span {
  display: block;
  color: #9ca3af;
  font-size: 0.75rem;
}

/* ========== ANIMATIONS ========== */
.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.9s ease forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 0.9s ease forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes slideInLeft {
  to { opacity:1; transform: translateX(0); }
}

@keyframes slideInRight {
  to { opacity:1; transform: translateX(0); }
}

@keyframes fadeUp {
  to { opacity:1; transform: translateY(0); }
}




/* ========== VISUAL AUDIENCE SECTION ========== */
.audience-visual {
  padding: 4rem 0;
}

.audience-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .audience-visual-grid {
    grid-template-columns: 1fr;
  }
}

/* BOXES */
.audience-box {
  position: relative;
  min-height: 420px;
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.audience-box:hover {
  transform: translateY(-12px) scale(1.01);
}

/* BACKGROUND IMAGES */
.audience-box.employers {
  background:
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d")
    center / cover no-repeat;
}

.audience-box.seekers {
  background:
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df")
    center / cover no-repeat;
}

/* OVERLAY */
.audience-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3,7,18,0.92), rgba(3,7,18,0.45));
  z-index: 1;
}

/* CONTENT */
.audience-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #f9fafb;
}

.audience-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.audience-content p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

/* BADGE */
.audience-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(34,197,94,0.9);
  color: #052e16;
  margin-bottom: 0.6rem;
}

.audience-badge.light {
  background: rgba(148,163,184,0.9);
  color: #020617;
}

/* LIST */
.audience-content ul {
  list-style: none;
  margin: 1rem 0 1.4rem;
}

.audience-content li {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

/* ========== ANIMATIONS ========== */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 0.9s ease forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 0.9s ease forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes slideLeft {
  to { opacity:1; transform: translateX(0); }
}

@keyframes slideRight {
  to { opacity:1; transform: translateX(0); }
}

@keyframes fadeUp {
  to { opacity:1; transform: translateY(0); }
}




/* ================= WEB3 SERVICES ================= */
.web3-services {
  position: relative;
  min-height: 100vh;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.web3-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.15), transparent 40%);
  z-index: 0;
}

#services-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.web3-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* HEADER */
.web3-header {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.web3-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #22c55e;
}

.web3-header h2 {
  font-size: 3rem;
  margin: 1rem 0;
  line-height: 1.1;
}

.web3-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.web3-header p {
  color: #9ca3af;
}

/* ORBIT */
.service-orbit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 3rem;
  perspective: 1200px;
}

/* ORB */
.service-orb {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.service-orb::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(34,197,94,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
}

.service-orb:hover::before {
  opacity: 1;
}

.service-orb:hover {
  transform: rotateX(8deg) rotateY(-8deg) scale(1.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.service-orb img {
  width: 54px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(34,197,94,0.6));
}

.service-orb h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.service-orb p {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* CTA */
.web3-cta {
  margin-top: 4rem;
}

.web3-btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  color: #020617;
  box-shadow: 0 0 40px rgba(34,197,94,0.6);
  transition: transform 0.4s ease;
}

.web3-btn:hover {
  transform: scale(1.1);
}






/* IMAGE HERO */
.image-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background image */
.hero-image-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2,6,23,0.9), rgba(2,6,23,0.6)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Right panel image */
.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  transform-style: preserve-3d;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.2)
  );
}

.panel-content {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  color: #f9fafb;
}




/* FUTURE AUDIENCE */
.future-audience {
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
}

.future-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .future-audience-grid {
    grid-template-columns: 1fr;
  }
}

.future-audience-card {
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.future-audience-card:hover {
  transform: scale(1.04);
}

.future-audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.25)
  );
}

.audience-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  max-width: 80%;
}






/* ================= FUTURE INDUSTRIES ================= */
.future-industries {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(56,189,248,0.15), transparent 40%);
  z-index: 0;
}

.future-industries .container {
  position: relative;
  z-index: 1;
}

.future-industries-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.future-industries-header h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.future-industries-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.future-industries-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* CARD */
.industry-card {
  position: relative;
  height: 340px;
  border-radius: 26px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.industry-card:hover {
  transform: scale(1.06) rotateX(6deg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}

/* OVERLAY */
.industry-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.92), rgba(2,6,23,0.3));
}

/* CONTENT */
.industry-content {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  max-width: 80%;
}

.industry-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.industry-content p {
  font-size: 0.85rem;
  color: #d1d5db;
}

/* CTA */
.industries-cta {
  text-align: center;
  margin-top: 4rem;
}



/* ================= FUTURE HERO ================= */
.future-hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
  display: flex;
  align-items: center;
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.future-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.18), transparent 45%);
  z-index: 1;
}

.future-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT */
.future-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.05;
}

.future-hero-content h1 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.future-chip {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #22c55e;
}

.future-hero-content p {
  margin: 1.2rem 0 2rem;
  color: #9ca3af;
  max-width: 520px;
}

/* BUTTONS */
.future-hero-actions {
  display: flex;
  gap: 1.2rem;
}

.future-btn {
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  transition: transform 0.4s ease;
}

.future-btn.primary {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  color: #020617;
  box-shadow: 0 0 40px rgba(34,197,94,0.6);
}

.future-btn.ghost {
  border: 1px solid rgba(255,255,255,0.2);
}

.future-btn:hover {
  transform: scale(1.1);
}

/* METRICS */
.future-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.future-metrics div span {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
}

/* RIGHT PANEL */
.future-hero-panel {
  position: relative;
  padding: 3rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.08);
  transform-style: preserve-3d;
}

.panel-ring {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  border: 1px dashed rgba(34,197,94,0.4);
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.panel-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}



/* ================= FUTURE PROCESS ================= */
.future-process {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.15), transparent 40%);
  z-index: 0;
}

.future-process .container {
  position: relative;
  z-index: 1;
}

/* HEADER */
.future-process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.future-process-header h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.future-process-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.future-process-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* TIMELINE */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* STEP */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.process-step.reverse {
  direction: rtl;
}

.process-step.reverse .process-content {
  direction: ltr;
}

@media (max-width: 900px) {
  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* IMAGE */
.process-image {
  position: relative;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.process-image:hover {
  transform: scale(1.05);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15);
}

/* CONTENT */
.process-content {
  max-width: 420px;
}

.step-index {
  font-size: 2.6rem;
  font-weight: 700;
  opacity: 0.15;
}

.process-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.process-content p {
  color: #9ca3af;
  font-size: 0.9rem;
}



/* ================= FUTURE WHY SECTION ================= */
.future-why {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(56,189,248,0.15), transparent 40%);
  z-index: 0;
}

.future-why .container {
  position: relative;
  z-index: 1;
}

/* HEADER */
.future-why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.future-why-header h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.future-why-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.future-why-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.8rem;
}

/* CARD */
.why-card {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.why-card:hover {
  transform: scale(1.06) rotateX(6deg);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15);
}

/* OVERLAY */
.why-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.92), rgba(2,6,23,0.3));
}

/* CONTENT */
.why-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.why-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.why-content p {
  font-size: 0.9rem;
  color: #d1d5db;
}







/* ================= FUTURE TESTIMONIALS ================= */
.future-testimonials {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.15), transparent 40%);
  z-index: 0;
}

.future-testimonials .container {
  position: relative;
  z-index: 1;
}

/* HEADER */
.future-testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.future-testimonials-header h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.future-testimonials-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.future-testimonials-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

/* CARD */
.testimonial-card {
  position: relative;
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.testimonial-card:hover {
  transform: scale(1.06);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15);
}

/* OVERLAY */
.testimonial-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.92), rgba(2,6,23,0.35));
}

/* CONTENT */
.testimonial-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.testimonial-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(34,197,94,0.9);
  color: #052e16;
  margin-bottom: 0.8rem;
}

.testimonial-tag.light {
  background: rgba(148,163,184,0.9);
  color: #020617;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.testimonial-role {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}





/* ================= FUTURE FINAL CTA ================= */
.future-final-cta {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,197,94,0.22), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(56,189,248,0.18), transparent 40%);
  z-index: 0;
}

.future-final-cta .container {
  position: relative;
  z-index: 1;
}

/* HEADER */
.final-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.final-header h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.final-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.final-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* OPTIONS GRID */
.final-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media (max-width: 900px) {
  .final-options {
    grid-template-columns: 1fr;
  }
}

/* FINAL CARD */
.final-card {
  position: relative;
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.final-card:hover {
  transform: scale(1.06);
  box-shadow: 0 50px 100px rgba(0,0,0,0.65);
}

.final-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15);
}

/* OVERLAY */
.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.95), rgba(2,6,23,0.25));
}

/* CONTENT */
.final-content {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  right: 2.4rem;
}

.final-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.final-content p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 1.2rem;
}





/* ================= FUTURE FOOTER ================= */
.future-footer {
  position: relative;
  padding: 6rem 0 2rem;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.15), transparent 40%);
  z-index: 0;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

/* BRAND */
.footer-desc {
  margin: 1rem 0 1.4rem;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-image {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  opacity: 0.85;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* LINKS */
.footer-links-block h3,
.footer-contact h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links-block ul {
  list-style: none;
}

.footer-links-block li {
  margin-bottom: 0.5rem;
}

.footer-links-block a {
  color: #d1d5db;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links-block a:hover {
  color: #22c55e;
}

/* CONTACT */
.footer-contact p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

/* BOTTOM */
.footer-bottom-future {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-bottom-future a {
  color: #38bdf8;
}





/* ================= ABOUT WHO WE ARE ================= */
.about-who {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.about-who-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(56,189,248,0.16), transparent 40%);
  z-index: 0;
}

.about-who .container {
  position: relative;
  z-index: 1;
}

/* HEADER */
.about-who-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-who-header h2 {
  font-size: 3rem;
  line-height: 1.1;
}

.about-who-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.about-who-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.about-who-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (max-width: 900px) {
  .about-who-grid {
    grid-template-columns: 1fr;
  }
}

/* STORY */
.about-story h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.about-story p {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

/* IMAGE */
.about-story-image {
  position: relative;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.9), rgba(2,6,23,0.3));
}

/* BELIEFS */
.about-beliefs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.belief-card {
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.belief-card:hover {
  transform: scale(1.06);
}

.belief-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belief-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.92), rgba(2,6,23,0.25));
}

.belief-card p {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}





/* ================= MVV SYSTEM (FIXED) ================= */
.mvv-system {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

/* BACKGROUND */
.mvv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(56,189,248,0.15), transparent 40%);
}

/* HEADER */
.mvv-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.mvv-header h2 {
  font-size: 3rem;
}

.mvv-header span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

/* FLOW */
.mvv-flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* NODE — ALWAYS VISIBLE */
.mvv-node {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mvv-node.reverse {
  direction: rtl;
}

.mvv-node.reverse * {
  direction: ltr;
}

@media (max-width: 900px) {
  .mvv-node,
  .mvv-node.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* LINE (OPTIONAL VISUAL) */
.mvv-line {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #22c55e, #38bdf8);
  transform: translateX(-50%);
  opacity: 0.15;
}

/* CONTENT */
.mvv-content {
  position: relative;
  z-index: 2;
}

.mvv-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.mvv-content p,
.mvv-content li {
  color: #9ca3af;
  font-size: 0.95rem;
}

.mvv-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #22c55e;
}

/* VISUAL */
.mvv-visual {
  position: relative;
  z-index: 2;
  height: 300px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.mvv-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- SAFE ANIMATION ---------------- */

/* base state */
.mvv-node .mvv-content,
.mvv-node .mvv-visual {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease-out;
}

/* before activation */
.mvv-node:not(.active) .mvv-content,
.mvv-node:not(.active) .mvv-visual {
  opacity: 0.2;
  transform: translateY(20px);
}

/* active */
.mvv-node.active .mvv-content,
.mvv-node.active .mvv-visual {
  opacity: 1;
  transform: translateY(0);
}






/* ================= ORG SYSTEM (FIXED) ================= */
.org-system {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

/* BACKGROUND */
.org-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(56,189,248,0.15), transparent 40%);
}

/* HEADER */
.org-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.org-header h2 {
  font-size: 3rem;
}

.org-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.org-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* FLOW */
.org-flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* NODE (VISIBLE BY DEFAULT) */
.org-node {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* REVERSE */
.org-node.reverse {
  direction: rtl;
}

.org-node.reverse * {
  direction: ltr;
}

@media (max-width: 900px) {
  .org-node,
  .org-node.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* VISUAL */
.org-visual {
  position: relative;
  z-index: 2;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  opacity: 0.9;
}

.org-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.25)
  );
}

/* CONTENT */
.org-content {
  position: relative;
  z-index: 2;
}

.org-step {
  font-size: 2.8rem;
  font-weight: 800;
  opacity: 0.15;
}

.org-content h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.org-content p {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* ---------------- ANIMATION (SAFE) ---------------- */

/* default (visible) */
.org-node .org-content,
.org-node .org-visual {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease-out;
}

/* pre-animate state */
.org-node:not(.active) .org-content,
.org-node:not(.active) .org-visual {
  opacity: 0.2;
  transform: translateY(20px);
}

/* active state */
.org-node.active .org-content,
.org-node.active .org-visual {
  opacity: 1;
  transform: translateY(0);
}

/* VALUE ZONE */
.org-value-zone {
  position: relative;
  z-index: 2;
  margin-top: 5.5rem;
  text-align: center;
}

.org-value-zone h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.org-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.org-value {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #d1d5db;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.org-value:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}







/* ================= SEEKER SYSTEM ================= */
.seeker-system {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.seeker-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(34,197,94,0.15), transparent 40%);
}

/* HEADER */
.seeker-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.seeker-header h2 {
  font-size: 3rem;
}

.seeker-header h2 span {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.seeker-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* FLOW */
.seeker-flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.seeker-node {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.seeker-node.reverse {
  direction: rtl;
}

.seeker-node.reverse * {
  direction: ltr;
}

@media (max-width: 900px) {
  .seeker-node {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* VISUAL */
.seeker-visual {
  position: relative;
  height: 300px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.seeker-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seeker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.9), rgba(2,6,23,0.25));
}

/* CONTENT */
.seeker-content {
  position: relative;
  z-index: 2;
}

.seeker-step {
  font-size: 2.6rem;
  font-weight: 800;
  opacity: 0.15;
}

.seeker-content h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.seeker-content p {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* ENGAGEMENT */
.seeker-engage {
  position: relative;
  z-index: 2;
  margin-top: 5.5rem;
  text-align: center;
}

.seeker-engage h3 {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.seeker-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}

.seeker-actions div {
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #d1d5db;
  transition: transform 0.4s ease;
}

.seeker-actions div:hover {
  transform: translateY(-6px);
}

.seeker-email {
  font-size: 0.85rem;
  color: #9ca3af;
}












/* ================= PRESENCE SYSTEM ================= */
.presence-system {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.presence-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(56,189,248,0.15), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(34,197,94,0.15), transparent 40%);
}

/* HEADER */
.presence-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.presence-header h2 {
  font-size: 3rem;
}

.presence-header h2 span {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.presence-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.presence-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .presence-grid {
    grid-template-columns: 1fr;
  }
}

/* VISUAL */
.presence-visual {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.presence-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presence-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.3)
  );
}

/* PULSE DOT */
.pulse-dot {
  position: absolute;
  bottom: 38%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.pulse-dot span {
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  display: block;
  position: relative;
}

.pulse-dot span::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.6);
  animation: pulse 2s infinite;
}

.pulse-dot label {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: #e5e7eb;
  text-align: center;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* CONTENT */
.presence-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.presence-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.presence-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.presence-card p,
.presence-card li {
  font-size: 0.85rem;
  color: #d1d5db;
}

.presence-card ul {
  list-style: none;
  padding: 0;
}

.presence-card li {
  margin-bottom: 0.4rem;
}

.presence-card .muted {
  margin-top: 0.6rem;
  color: #9ca3af;
}













/* ================= EVOLUTION SYSTEM ================= */
.evolution-system {
  position: relative;
  padding: 6.5rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.evolution-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(34,197,94,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.15), transparent 40%);
}

/* HEADER */
.evolution-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.evolution-header h2 {
  font-size: 3rem;
}

.evolution-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.evolution-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* LOOP GRID */
.evolution-loop {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* NODE */
.evolution-node {
  padding: 1.8rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.evolution-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.loop-index {
  font-size: 2.4rem;
  font-weight: 800;
  opacity: 0.12;
}

.evolution-node h3 {
  font-size: 1.4rem;
  margin: 0.3rem 0 0.5rem;
}

.evolution-node p {
  font-size: 0.85rem;
  color: #d1d5db;
}

/* CTA */
.evolution-cta {
  position: relative;
  z-index: 2;
  margin-top: 4.5rem;
  text-align: center;
}

.evolution-cta p {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 1.2rem;
}








/* ================= SERVICES HERO SYSTEM ================= */
.services-hero-system {
  position: relative;
  padding: 6.5rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(34,197,94,0.15), transparent 40%);
}

/* HEADER */
.services-hero-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
}

.services-hero-header h1 {
  font-size: 3.2rem;
}

.services-hero-header h1 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.services-hero-header p {
  margin-top: 1rem;
  color: #9ca3af;
}

/* GRID */
.services-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* VISUAL */
.services-hero-visual {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.65);
}

.services-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.25)
  );
}

/* ORBIT LABELS */
.services-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.services-orbit span {
  position: absolute;
  font-size: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  animation: float 6s ease-in-out infinite;
}

.services-orbit span:nth-child(1) { top: 20%; left: 18%; }
.services-orbit span:nth-child(2) { top: 25%; right: 18%; animation-delay: 1s; }
.services-orbit span:nth-child(3) { bottom: 25%; left: 22%; animation-delay: 2s; }
.services-orbit span:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 3s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* CONTENT */
.services-hero-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.services-hero-content p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.8rem;
}

.services-hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}















/* ================= SERVICES CORE ================= */
.services-core-system {
  position: relative;
  padding: 6.5rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.services-core-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(56,189,248,0.16), transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(34,197,94,0.14), transparent 40%);
}

/* HEADER */
.services-core-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem;
}

.services-core-header h2 {
  font-size: 3rem;
}

.services-core-header h2 span {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.services-core-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.services-core-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* MODULE */
.service-module {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-module.reverse {
  direction: rtl;
}

.service-module.reverse * {
  direction: ltr;
}

@media (max-width: 900px) {
  .service-module {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* VISUAL */
.service-visual {
  position: relative;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.65);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.25)
  );
}

/* CONTENT */
.service-content {
  padding: 0.5rem 0;
}

.service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #22c55e;
}

.service-content h3 {
  font-size: 1.8rem;
  margin: 0.4rem 0 0.6rem;
}

.service-content p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.8rem;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.8rem;
}

.service-content li {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

/* TAGS */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}


















/* ================= PROCESS SYSTEM ================= */
.process-system {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(56,189,248,0.15), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(34,197,94,0.15), transparent 40%);
}

/* HEADER */
.process-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}

.process-header h2 {
  font-size: 3rem;
}

.process-header h2 span {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.process-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* PIPELINE */
.process-pipeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1100px) {
  .process-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-pipeline {
    grid-template-columns: 1fr;
  }
}

/* NODE */
.process-node {
  position: relative;
}

.process-index {
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.12;
  margin-bottom: 0.6rem;
}

/* CARD */
.process-card {
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.8rem;
}

.process-card ul {
  list-style: none;
  padding: 0;
}

.process-card li {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

/* FLOW LINE (DESKTOP) */
@media (min-width: 1100px) {
  .process-node::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    opacity: 0.5;
  }

  .process-node:last-child::after {
    display: none;
  }
}
















/* ================= ADVISORY SYSTEM ================= */
.advisory-system {
  position: relative;
  padding: 7rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.advisory-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(56,189,248,0.18), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(34,197,94,0.18), transparent 45%);
}

/* HEADER */
.advisory-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}

.advisory-header h2 {
  font-size: 3rem;
}

.advisory-header h2 span {
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.advisory-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* CORE */
.advisory-core {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  perspective: 1200px;
}

/* NODE */
.advisory-node {
  position: relative;
  padding: 2.2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s ease;
}

.advisory-node:hover {
  box-shadow: 0 40px 90px rgba(0,0,0,0.7);
}

/* GLOW */
.node-glow {
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(120deg, #22c55e, #38bdf8, #22c55e);
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.advisory-node:hover .node-glow {
  opacity: 0.6;
}

/* CONTENT */
.advisory-node h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.advisory-node p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.8rem;
}

.advisory-node ul {
  list-style: none;
  padding: 0;
}

.advisory-node li {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}












.segment-system {
  position: relative;
  padding: 7rem 0;
  background: #020617;
  overflow: hidden;
}

/* HEADER */
.segment-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.segment-header h2 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

/* STAGE */
.segment-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* IMAGES */
.segment-images {
  position: relative;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
}

.segment-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
}

.segment-img.active {
  opacity: 1;
  transform: scale(1);
}

/* INFO */
.segment-block {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.segment-block.active {
  opacity: 1;
  transform: translateY(0);
}

.segment-info {
  position: relative;
  min-height: 180px;
}

/* SCANNER */
.segment-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  animation: scan 3.5s linear infinite;
}

@keyframes scan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}


















.engagement-system {
  position: relative;
  padding: 7rem 0;
  background: #020617;
  overflow: hidden;
}

.engage-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}

.engage-header h2 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

/* FLOW */
.engage-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* NODE */
.engage-node {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  opacity: 1;                     /* visible by default */
  transform: translateY(0);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

/* soft inactive state (NOT hidden) */
.engage-node.inactive {
  opacity: 0.35;
  transform: scale(0.96);
}

/* highlighted active node */
.engage-node.active {
  opacity: 1;
  transform: scale(1);
}

/* VISUAL */
.engage-visual {
  height: 320px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.engage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.engage-step {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #22c55e;
}

.engage-content h3 {
  font-size: 1.6rem;
  margin: 0.5rem 0;
}

.engage-content p {
  color: #9ca3af;
  font-size: 0.95rem;
}

.engage-content ul {
  margin-top: 0.6rem;
}

.engage-content li {
  font-size: 0.85rem;
  color: #d1d5db;
}

/* PROGRESS BAR */
.engage-progress {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.engage-bar {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom,#22c55e,#38bdf8);
  animation: engageFill 6s infinite;
}

@keyframes engageFill {
  0% { height: 0%; }
  40% { height: 40%; }
  100% { height: 100%; }
}

/* CTA */
.engage-cta {
  margin-top: 5rem;
  text-align: center;
}




/* ================= INDUSTRY SYSTEM ================= */
.industry-system {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.industry-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(56,189,248,0.18), transparent 40%);
}

.industry-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 2;
}

.industry-header h1 {
  font-size: 3.2rem;
}

.industry-header h1 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.industry-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* MATRIX */
.industry-matrix {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

/* NODE */
.industry-node {
  position: relative;
  height: 260px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.94);
  opacity: 0.55;
  transition: all 0.8s ease;
}

.industry-node.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7);
}

.industry-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,6,23,0.9), rgba(2,6,23,0.3));
}

.industry-node h3 {
  position: absolute;
  bottom: 2.8rem;
  left: 1.6rem;
  font-size: 1.4rem;
}

.industry-node span {
  position: absolute;
  bottom: 1.4rem;
  left: 1.6rem;
  font-size: 0.8rem;
  color: #d1d5db;
}



/* ================= SECTOR SYSTEM ================= */
.sector-system {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.sector-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,197,94,0.15), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(56,189,248,0.15), transparent 40%);
}

.sector-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
  position: relative;
  z-index: 2;
}

.sector-header h2 {
  font-size: 3rem;
}

.sector-header h2 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.sector-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* GRID */
.sector-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 2.4rem;
}

/* CARD */
.sector-card {
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  opacity: 1;                    /* visible */
  transform: translateY(0);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

/* animation enhancement */
.sector-card.reveal {
  transform: translateY(0);
  opacity: 1;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.92),
    rgba(2,6,23,0.35)
  );
}

/* CONTENT */
.sector-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sector-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.sector-content p {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 0.6rem;
}

.sector-content ul {
  font-size: 0.8rem;
  color: #9ca3af;
}

.sector-content li {
  margin-bottom: 0.25rem;
}











/* ================= ROLE SYSTEM ================= */
.role-system {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.role-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,197,94,0.15), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(56,189,248,0.15), transparent 40%);
}

.role-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
  position: relative;
  z-index: 2;
}

.role-header h2 {
  font-size: 3rem;
}

.role-header h2 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.role-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* ENGINES */
.role-engines {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .role-engines {
    grid-template-columns: 1fr;
  }
}

/* ENGINE CARD */
.role-engine {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

/* VISUAL */
.engine-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.engine-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: drift 14s linear infinite;
}

@keyframes drift {
  0% { transform: scale(1.05) translateY(0); }
  50% { transform: scale(1.08) translateY(-6px); }
  100% { transform: scale(1.05) translateY(0); }
}

.engine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.95),
    rgba(2,6,23,0.3)
  );
}

/* CONTENT */
.engine-content {
  padding: 2rem;
}

.engine-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #22c55e;
}

.engine-content h3 {
  font-size: 1.6rem;
  margin: 0.4rem 0;
}

.engine-content p {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.engine-content ul {
  font-size: 0.8rem;
  color: #9ca3af;
}

.engine-content li {
  margin-bottom: 0.25rem;
}

/* TAGS */
.engine-tags {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.engine-tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}




/* ================= GROWTH SYSTEM ================= */
.growth-system {
  position: relative;
  padding: 8rem 0;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.growth-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,197,94,0.15), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(56,189,248,0.15), transparent 40%);
}

.growth-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4.5rem;
  position: relative;
  z-index: 2;
}

.growth-header h2 {
  font-size: 3rem;
}

.growth-header h2 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.growth-header p {
  color: #9ca3af;
  margin-top: 1rem;
}

/* TRACK */
.growth-track {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

/* NODE */
.growth-node {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.growth-node.reverse {
  direction: rtl;
}
.growth-node.reverse * {
  direction: ltr;
}

@media (max-width: 900px) {
  .growth-node {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* VISUAL */
.growth-visual {
  position: relative;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.growth-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: floatSlow 18s linear infinite;
}

@keyframes floatSlow {
  0% { transform: scale(1.05) translateY(0); }
  50% { transform: scale(1.08) translateY(-6px); }
  100% { transform: scale(1.05) translateY(0); }
}

.growth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.95),
    rgba(2,6,23,0.35)
  );
}

/* CONTENT */
.growth-level {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #22c55e;
}

.growth-content h3 {
  font-size: 1.7rem;
  margin: 0.4rem 0;
}

.growth-content p {
  color: #d1d5db;
  font-size: 0.95rem;
}

.growth-content ul {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.growth-content li {
  margin-bottom: 0.3rem;
}



.geo-system {
  position: relative;
  padding: 7rem 0;
  background: #020617;
}

.geo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(56,189,248,0.12), transparent 45%);
}

.geo-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.geo-header h2 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .geo-grid {
    grid-template-columns: 1fr;
  }
}

.geo-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.geo-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(34,197,94,0.12),
    rgba(56,189,248,0.12)
  );
}









/* ================= CAREER HERO ================= */
.career-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}

.career-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,197,94,0.18), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(56,189,248,0.15), transparent 40%);
  animation: bgDrift 20s linear infinite;
}

@keyframes bgDrift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.career-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .career-grid {
    grid-template-columns: 1fr;
  }
}

.career-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
}

.career-content h1 span {
  background: linear-gradient(90deg,#22c55e,#38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.career-content p {
  color: #9ca3af;
  max-width: 520px;
  margin: 1.2rem 0;
}

.career-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.career-trust {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #d1d5db;
}

/* VISUAL */
.career-visual {
  position: relative;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7);
}

.career-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageFloat 16s ease-in-out infinite;
}

@keyframes imageFloat {
  0% { transform: scale(1.05); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1.05); }
}

.career-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.9),
    rgba(2,6,23,0.3)
  );
}





/* ================= CAREER PILLARS ================= */
.career-pillars {
  padding: 6rem 0;
  background: #020617;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;

  /* visible by default */
  opacity: 1;
  transform: translateY(0);

  transition: transform 0.9s ease, box-shadow 0.9s ease;
}

/* animation enhancement only */
.pillar-card.reveal {
  transform: translateY(0);
}


.pillar-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.pillar-card p {
  color: #9ca3af;
  font-size: 0.9rem;
}






.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.job-filters select {
  background: #020617;
  color: #e5e7eb;
  border: 1px solid rgba(148,163,184,0.6);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.job-card {
  margin-bottom: 1.4rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}









/* RESUME SYSTEM */
.resume-system {
  background: radial-gradient(circle at top, #020617, #000);
}

.resume-card {
  max-width: 720px;
  margin: auto;
  padding: 2.5rem;
  border-radius: 28px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.resume-drop {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: 20px;
  border: 2px dashed rgba(148,163,184,0.4);
  background: rgba(2,6,23,0.6);
  cursor: pointer;
  transition: all 0.35s ease;
}

.resume-drop:hover {
  border-color: #22c55e;
  background: rgba(34,197,94,0.08);
}

.resume-icon {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}

.resume-drop span {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.3rem;
}

.resume-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #22c55e;
}

.resume-fallback {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* SUPPORT FLOW */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

.support-step {
  padding: 1.8rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease;
}

.support-step:hover {
  transform: translateY(-6px);
}

.support-step span {
  font-size: 2rem;
  font-weight: 800;
  opacity: 0.15;
}

.support-step h3 {
  margin-top: 0.4rem;
  font-size: 1.2rem;
}

.support-step p {
  font-size: 0.9rem;
  color: #9ca3af;
}

@media(max-width:900px){
  .support-grid { grid-template-columns:1fr; }
}







.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.6rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(55,65,81,0.9);
  margin-bottom: 1.4rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.form-card.danger {
  border-color: rgba(248,113,113,0.7);
  background: linear-gradient(
    to bottom,
    rgba(248,113,113,0.08),
    rgba(15,23,42,0.96)
  );
}

.form-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.form-row > div {
  flex: 1;
}

label {
  font-size: 0.8rem;
  margin-top: 0.6rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(55,65,81,0.9);
  background: #020617;
  color: #e5e7eb;
  margin-top: 0.2rem;
}

textarea {
  min-height: 110px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

.contact-info-box {
  position: sticky;
  top: 90px;
  padding: 1.3rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(34,197,94,0.22), rgba(15,23,42,1));
  border: 1px solid rgba(52,211,153,0.7);
}

.contact-info-box h3 {
  margin-bottom: 0.6rem;
}

.contact-info-box .note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #fca5a5;
}
