:root {
  --green-600: #178a4c;
  --green-500: #1fa35a;
  --green-400: #34c079;
  --green-100: #e5f6ec;
  --navy-950: #0a1420;
  --navy-900: #101d2e;
  --navy-800: #16273c;
  --navy-100: #eaf0f5;
  --ink: #16213a;
  --muted: #5b6478;
  --bg: #ffffff;
  --bg-alt: #f6f8f9;
  --border: #e6e9ec;
  --radius: 14px;
  --shadow: 0 10px 40px -12px rgba(10, 20, 32, 0.16);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --accent-rose: #e0475f;
  --accent-green: #1fa35a;
  --accent-blue: #3b82c4;
  --accent-pink: #d6558f;
  --accent-amber: #d98c2b;
  --accent-indigo: #4c6fdc;
  --accent-orange: #dd7a33;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); line-height: 1.2; }
p { color: var(--muted); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--green-500); }

/* Progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--navy-800));
  z-index: 1000; transition: width 0.1s ease-out;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px -8px rgba(10, 20, 32, 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-logo { height: 48px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--navy-800); letter-spacing: 0.2px; position: relative; padding: 6px 0; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--green-500); transition: width 0.25s ease;
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--green-500); color: #fff !important; padding: 10px 22px !important;
  border-radius: 100px; transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--green-600); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all 0.3s ease; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 76px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 900px 600px at 88% 8%, rgba(31, 163, 90, 0.10), transparent 60%),
    radial-gradient(ellipse 800px 700px at 5% 95%, rgba(16, 29, 46, 0.08), transparent 60%),
    linear-gradient(180deg, #fbfcfc 0%, #ffffff 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding-top: 30px; padding-bottom: 50px; }
.hero-inner { max-width: 620px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 18px;
}
.eyebrow-light { color: var(--green-400); }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem); margin-bottom: 22px; letter-spacing: -0.5px;
}
.hero-lead { font-size: 1.12rem; color: var(--navy-800); margin-bottom: 16px; font-weight: 500; }
.hero-sub { font-size: 0.98rem; color: var(--muted); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 100px; font-weight: 600; font-size: 15px;
  transition: all 0.25s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--green-500); color: #fff; }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(31, 163, 90, 0.45); }
.btn-ghost { border-color: var(--navy-900); color: var(--navy-900); }
.btn-ghost:hover { background: var(--navy-900); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

.hero-trust { display: flex; flex-direction: column; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 600; color: var(--navy-800); }
.trust-icon {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 16px; height: 16px; }

/* Hero visual */
.hero-visual { position: relative; }
.visual-panel {
  position: relative; aspect-ratio: 1 / 0.9; border-radius: 24px; overflow: hidden;
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}
.visual-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.visual-bars {
  position: absolute; left: 14%; right: 18%; bottom: 16%; height: 42%;
  display: flex; align-items: flex-end; gap: 14px;
}
.visual-bars span {
  flex: 1; height: var(--h); border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
  opacity: 0.9;
}
.visual-orbit { position: absolute; top: 12%; right: 10%; width: 140px; height: 140px; }
.orbit-dot { position: absolute; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 24px 4px rgba(52, 192, 121, 0.4); }
.orbit-dot-1 { width: 16px; height: 16px; top: 0; left: 40%; }
.orbit-dot-2 { width: 10px; height: 10px; top: 45%; right: 0; background: #fff; opacity: 0.5; }
.orbit-dot-3 { width: 22px; height: 22px; bottom: 5%; left: 5%; opacity: 0.7; }
.visual-badge {
  position: absolute; left: -18px; bottom: -18px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.visual-badge-logo { width: 38px; height: 38px; object-fit: contain; }
.visual-badge strong { display: block; font-family: var(--font-head); font-size: 0.98rem; color: var(--navy-900); }
.visual-badge span { font-size: 0.78rem; color: var(--muted); }

.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--navy-800); border-radius: 100px;
  opacity: 0.3;
}
.hero-scroll-cue span {
  display: block; width: 4px; height: 8px; background: var(--green-500); border-radius: 2px;
  margin: 8px auto; animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* Sections */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(155deg, var(--navy-950), var(--navy-900)); position: relative; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.section-lead { margin-top: 14px; font-size: 1.05rem; }
.head-light { color: #fff; }
.head-light-muted { color: rgba(255, 255, 255, 0.65) !important; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; margin-bottom: 64px; }
.about-copy p { margin-bottom: 18px; font-size: 1.02rem; }
.vm-cards { display: flex; flex-direction: column; gap: 20px; }
.vm-card {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius); padding: 30px; color: #fff; box-shadow: var(--shadow);
}
.vm-card h3 { color: #fff; margin: 14px 0 8px; font-size: 1.15rem; }
.vm-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.vm-icon, .why-icon, .contact-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(52, 192, 121, 0.18); color: var(--green-400);
}
.vm-icon svg, .why-icon svg, .contact-icon svg, .value-icon svg, .biz-icon svg, .news-icon svg { width: 22px; height: 22px; }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.value-icon {
  width: 52px; height: 52px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--navy-100); color: var(--navy-800);
}
.value-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

/* Businesses (dark section) */
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.biz-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius); padding: 26px; transition: all 0.3s ease; position: relative;
}
.biz-card:hover { transform: translateY(-6px); border-color: var(--accent, var(--green-500)); background: rgba(255, 255, 255, 0.06); }
.biz-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 10px; }
.biz-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--accent, var(--green-500)); color: #fff; flex-shrink: 0;
}
.biz-card[data-accent="rose"] { --accent: var(--accent-rose); }
.biz-card[data-accent="green"] { --accent: var(--accent-green); }
.biz-card[data-accent="blue"] { --accent: var(--accent-blue); }
.biz-card[data-accent="pink"] { --accent: var(--accent-pink); }
.biz-card[data-accent="amber"] { --accent: var(--accent-amber); }
.biz-card[data-accent="indigo"] { --accent: var(--accent-indigo); }
.biz-card[data-accent="orange"] { --accent: var(--accent-orange); }
.biz-card h3 { font-size: 1.08rem; margin-bottom: 4px; color: #fff; }
.biz-tag { color: var(--accent, var(--green-400)) !important; font-weight: 600; font-size: 0.82rem; margin-bottom: 12px; }
.biz-card > p:last-child { font-size: 0.87rem; color: rgba(255, 255, 255, 0.6); }
.biz-card-future { background: rgba(31, 163, 90, 0.08); border-color: rgba(31, 163, 90, 0.25); }
.status {
  font-size: 10.5px; font-weight: 700; padding: 5px 11px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap;
}
.status-active { background: rgba(52, 192, 121, 0.18); color: var(--green-400); }
.status-dev { background: rgba(217, 140, 43, 0.18); color: #e8a94f; }
.status-soon { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }

/* Ecosystem */
.ecosystem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.eco-card, .purpose-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px;
}
.eco-copy { margin: 14px 0 28px; font-size: 0.98rem; }
.flow-diagram { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; align-items: center; gap: 14px; padding: 10px 0; position: relative; font-weight: 600; color: var(--navy-800); font-size: 0.94rem; }
.flow-step:not(.flow-step-final)::after {
  content: ""; position: absolute; left: 5px; top: 30px; bottom: -10px; width: 2px;
  background: var(--border); border-left: 2px dashed var(--green-400); background: none;
}
.flow-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green-500); flex-shrink: 0; box-shadow: 0 0 0 4px var(--green-100); }
.flow-step-final .flow-dot { background: var(--navy-900); box-shadow: 0 0 0 4px var(--navy-100); }

.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.purpose-item {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; font-weight: 600; font-size: 0.9rem; color: var(--navy-800);
}
.purpose-icon {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
}
.purpose-icon svg { width: 17px; height: 17px; }

.stat-strip {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: var(--navy-950); border-radius: var(--radius); padding: 30px 40px;
}
.stat-item { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 0.92rem; }
.stat-icon {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(52, 192, 121, 0.18); color: var(--green-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 10px; }
.why-icon { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 16px; background: var(--green-100); color: var(--green-600); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; }

/* Future ventures */
.future { text-align: center; background: var(--bg-alt); }
.future .container { max-width: 720px; }
.future h2 { margin-bottom: 20px; }
.future-lead { font-size: 1.08rem; }

/* Partnerships */
.partner-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.partner-pill {
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid var(--border);
  font-size: 0.9rem; font-weight: 600; color: var(--navy-800); transition: all 0.25s ease;
}
.partner-pill:hover { border-color: var(--green-500); background: var(--green-100); transform: translateY(-2px); }
.partner-footer { font-size: 1.05rem; font-weight: 600; color: var(--navy-900); }

/* News */
.news-placeholder {
  display: flex; align-items: center; gap: 24px; background: var(--bg); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 36px; max-width: 780px;
}
.news-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; background: var(--navy-100);
  color: var(--navy-800); display: flex; align-items: center; justify-content: center;
}
.news-placeholder p { font-size: 0.98rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 18px; }
.contact-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 4px; }
.contact-item a { font-weight: 600; color: var(--navy-900); font-size: 1.02rem; }
.contact-item a:hover { color: var(--green-500); }

.contact-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-800); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.96rem; background: #fff; transition: border-color 0.2s ease;
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--green-500); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; min-height: 20px; }
.form-status.success { color: var(--green-600); }
.form-status.error { color: #c0392b; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, 0.7); padding-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-tagline { color: #fff; font-weight: 600; margin-bottom: 8px; }
.footer-industries { font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center; transition: all 0.25s ease;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--green-500); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255, 255, 255, 0.65); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .about-grid, .contact-grid, .hero-grid, .ecosystem-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 20px; }
  .values-grid, .why-grid { grid-template-columns: repeat(3, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-strip { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 8px;
    transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .values-grid, .why-grid, .biz-grid { grid-template-columns: 1fr 1fr; }
  .purpose-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .values-grid, .why-grid, .biz-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .stat-strip { flex-direction: column; }
}
