@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Brand colours — bright, vibrant fintech palette */
  --green:         #00DC82;
  --green-dark:    #00A85F;
  --green-light:   #6EFFC4;
  --green-glow:    rgba(0, 220, 130, 0.28);

  --blue:          #3D6FFF;
  --blue-dark:     #2455E0;
  --blue-glow:     rgba(61, 111, 255, 0.28);

  --purple:        #9B6DFF;
  --purple-dark:   #7C4DFF;
  --purple-glow:   rgba(155, 109, 255, 0.28);

  --coral:         #FF6B4A;
  --amber:         #FFCA28;

  /* Dark surfaces */
  --void:          #04060F;
  --deep:          #070B1C;
  --surface:       #0C1128;
  --surface-2:     #121830;
  --glass:         rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.09);
  --glass-hover:   rgba(255, 255, 255, 0.07);

  /* Light surfaces */
  --light-bg:      #F2F5FF;
  --light-bg-2:    #FFFFFF;
  --light-border:  rgba(0, 0, 0, 0.07);

  /* Typography */
  --text-white:    #FFFFFF;
  --text-light:    rgba(255, 255, 255, 0.82);
  --text-muted:    rgba(255, 255, 255, 0.44);
  --text-dark:     #060B20;
  --text-body:     #3B4566;
  --text-sub:      #6B7280;

  /* Shadows & glows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl:  0 40px 100px rgba(0,0,0,0.20);
  --glow-green: 0 0 50px rgba(0,220,130,0.35);
  --glow-blue:  0 0 50px rgba(61,111,255,0.35);

  /* Layout */
  --max-w: 1280px;
  --radius-xs:   6px;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --radius-pill: 9999px;

  --font-sans:    'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-display: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.grad-green  { background: linear-gradient(135deg, var(--green), var(--blue));  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-purple { background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-warm   { background: linear-gradient(135deg, var(--coral), var(--amber)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-light  { background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.62) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: rgba(0,220,130,0.10); color: var(--green-dark);
  border: 1px solid rgba(0,220,130,0.22);
}
.badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--green); flex-shrink:0; }
.badge-dark   { background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.85); border-color:rgba(255,255,255,0.14); }
.badge-dark::before { background:var(--green); }
.badge-blue   { background:rgba(61,111,255,0.10); color:var(--blue-dark); border-color:rgba(61,111,255,0.20); }
.badge-blue::before { background:var(--blue); }
.badge-purple { background:rgba(155,109,255,0.10); color:var(--purple-dark); border-color:rgba(155,109,255,0.20); }
.badge-purple::before { background:var(--purple); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-weight: 700; font-size: 0.9375rem; line-height: 1;
  border: none; cursor: pointer; white-space: nowrap;
  transition: all 0.22s var(--ease-out);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: var(--void); }
.btn-primary:hover { background: var(--green-light); box-shadow: var(--glow-green); }

.btn-outline { background: transparent; color: var(--text-white); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }

.btn-outline-dark { background: transparent; color: var(--text-dark); border: 1.5px solid var(--light-border); }
.btn-outline-dark:hover { border-color: var(--green-dark); color: var(--green-dark); }

.btn-dark { background: var(--text-dark); color: var(--text-white); }
.btn-dark:hover { box-shadow: var(--shadow-lg); }

.btn-ghost { background: var(--glass); color: var(--text-white); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.16); }

.btn-lg { padding: 1.125rem 2.25rem; font-size: 1rem; }
.btn-arrow::after { content: '→'; transition: transform 0.2s var(--ease-out); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 1.25rem; left: 50%; transform: translateX(-50%);
  width: calc(100% - 3rem); max-width: 1200px; z-index: 1000;
  background: rgba(4,6,15,0.55);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill); padding: 0.625rem 1.25rem;
  transition:
    background      0.3s  var(--ease-out),
    border-color    0.3s  var(--ease-out),
    box-shadow      0.3s  var(--ease-out),
    border-radius   0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(4,6,15,0.90);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--text-white); flex-shrink: 0;
}
.logo-img { height: 30px; width: auto; }
.logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; color: #04060f; letter-spacing: -0.5px;
}

.nav-links { display: flex; align-items: center; gap: 0.125rem; }
.nav-link {
  padding: 0.5rem 0.875rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.875rem;
  color: rgba(255,255,255,0.70); transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text-white); background: rgba(255,255,255,0.09); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-cta-outline {
  padding: 0.5rem 1.125rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.875rem;
  color: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.14); transition: all 0.2s;
}
.nav-cta-outline:hover { color: var(--text-white); border-color: rgba(255,255,255,0.30); }
.nav-cta {
  padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.875rem;
  background: var(--green); color: var(--void); transition: all 0.2s;
}
.nav-cta:hover { background: var(--green-light); box-shadow: 0 0 20px rgba(0,220,130,0.4); }

/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */
/* Toggle button */
.nav-toggle {
  display: none;
  position: relative;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: none; border: none;
  padding: 0; border-radius: var(--radius-sm);
  cursor: pointer; color: var(--text-white); flex-shrink: 0;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: rgba(255,255,255,0.09); }

/* Icon cross-fade with rotation */
.nav-toggle svg {
  position: absolute;
  top: 50%; left: 50%;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-toggle .icon-menu  { opacity: 1;  transform: translate(-50%, -50%) rotate(0deg)   scale(1);    }
.nav-toggle .icon-close { opacity: 0;  transform: translate(-50%, -50%) rotate(-45deg) scale(0.75); }

/* Menu — hidden by default on desktop; mobile enables the grid animation */
.nav-mobile-menu {
  display: none;
}
/* Inner wrapper: must have overflow:hidden + min-height:0 for 0fr→1fr to reach true 0 */
.nav-mobile-inner {
  overflow: hidden;
  min-height: 0;
  display: flex; flex-direction: column; gap: 0.125rem;
}
/* Separator + top gap live INSIDE the overflow, so they collapse with the menu */
.nav-mobile-link:first-child {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile-link {
  display: block;
  padding: 0.8125rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-mobile-link:hover,
.nav-mobile-link:active { color: var(--text-white); background: rgba(255,255,255,0.09); }
.nav-mobile-link.active { color: var(--text-white); }
.nav-mobile-doc {
  margin-top: 0.25rem; padding-top: 0.8125rem;
  color: rgba(255,255,255,0.45); font-size: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Open state */
.navbar.nav-open { border-radius: var(--radius-lg); overflow: hidden; }
.navbar.nav-open .nav-mobile-menu { grid-template-rows: 1fr; opacity: 1; pointer-events: auto; }
.navbar.nav-open .nav-toggle .icon-menu  { opacity: 0; transform: translate(-50%, -50%) rotate(45deg)  scale(0.75); }
.navbar.nav-open .nav-toggle .icon-close { opacity: 1; transform: translate(-50%, -50%) rotate(0deg)   scale(1);    }

/* CTA inside mobile menu */
.nav-mobile-cta {
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
  background: var(--green); color: var(--void) !important;
  text-align: center; font-weight: 700; border-radius: var(--radius-sm);
}
.nav-mobile-cta:hover, .nav-mobile-cta:active { background: var(--green-light); color: var(--void) !important; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--void);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 8rem 0 5rem;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-1 { width:640px; height:640px; background:radial-gradient(circle, var(--green), transparent 70%); opacity:0.22; top:-180px; left:-160px; }
.hero-orb-2 { width:520px; height:520px; background:radial-gradient(circle, var(--blue), transparent 70%);  opacity:0.22; top:30%;  right:-120px; animation-delay:-4s; }
.hero-orb-3 { width:420px; height:420px; background:radial-gradient(circle, var(--purple),transparent 70%); opacity:0.18; bottom:-80px; left:35%; animation-delay:-7s; }

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}

.hero-content { 
  position: relative; z-index: 10; text-align: center;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.375rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -0.03em;
  color: var(--text-white); max-width: 100%; margin: 0 auto 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.175rem); color: var(--text-light);
  max-width: 620px; margin: 0 auto; line-height: 1.75; font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
}

/* Dashboard mockup */
.hero-visual { margin-top: 4.5rem; position: relative; }
.dashboard-mockup {
  max-width: 920px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.65), 0 0 120px rgba(0,220,130,0.07);
}
.mockup-bar {
  height: 46px; background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; padding: 0 1.25rem; gap: 0.5rem;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url-bar { flex:1; height:22px; max-width:280px; background:rgba(255,255,255,0.05); border-radius:var(--radius-pill); margin:0 auto; }
.mockup-body { display: grid; grid-template-columns: 196px 1fr; min-height: 320px; }
.mockup-sidebar {
  background: rgba(0,0,0,0.18); border-right: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.mockup-nav-item { height: 34px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); }
.mockup-nav-item.active { background: rgba(0,220,130,0.13); border: 1px solid rgba(0,220,130,0.20); }
.mockup-main { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.mockup-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); padding: 1rem;
}
.mockup-stat-lbl { height: 7px; width: 55%; background: rgba(255,255,255,0.18); border-radius: 4px; margin-bottom: 0.75rem; }
.mockup-stat-val { height: 13px; width: 75%; border-radius: 4px; }
.mockup-stat:nth-child(1) .mockup-stat-val { background: rgba(0,220,130,0.55); }
.mockup-stat:nth-child(2) .mockup-stat-val { background: rgba(61,111,255,0.55); }
.mockup-stat:nth-child(3) .mockup-stat-val { background: rgba(155,109,255,0.55); }
.mockup-chart {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); height: 110px; padding: 1rem;
  display: flex; align-items: flex-end; gap: 0.4rem; overflow: hidden;
}
.mockup-bar-item {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--green), transparent); opacity: 0.65;
  animation: barGrow 1s var(--ease-out) both;
}
.mockup-bar-item:nth-child(1) { height:38%; animation-delay:0.10s; }
.mockup-bar-item:nth-child(2) { height:62%; animation-delay:0.15s; }
.mockup-bar-item:nth-child(3) { height:44%; animation-delay:0.20s; }
.mockup-bar-item:nth-child(4) { height:78%; animation-delay:0.25s; background:linear-gradient(to top, var(--blue), transparent); }
.mockup-bar-item:nth-child(5) { height:55%; animation-delay:0.30s; }
.mockup-bar-item:nth-child(6) { height:88%; animation-delay:0.35s; }
.mockup-bar-item:nth-child(7) { height:68%; animation-delay:0.40s; background:linear-gradient(to top, var(--purple), transparent); }
.mockup-bar-item:nth-child(8) { height:82%; animation-delay:0.45s; }

/* ============================================
   TRUST TICKER
   ============================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.125rem 0; overflow: hidden;
}
.trust-track {
  display: flex; align-items: center; gap: 2.5rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.trust-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
}
.trust-item { display: flex; align-items: center; gap: 0.625rem; white-space: nowrap; flex-shrink: 0; }
.trust-icon {
  width: 30px; height: 30px; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: rgba(255,255,255,0.65);
}
.trust-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-name { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.trust-sep { width:1px; height:20px; background:rgba(255,255,255,0.10); flex-shrink:0; }

/* ============================================
   SECTIONS
   ============================================ */
.section       { padding: 6rem 0; }
.section-sm    { padding: 4rem 0; }
.section-dark  { background: var(--deep); }
.section-void  { background: var(--void); }
.section-light { background: var(--light-bg); }
.section-white { background: var(--light-bg-2); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow { margin-bottom: 1.25rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  line-height: 1.12; letter-spacing: -0.025em; color: var(--text-dark); margin-bottom: 1.25rem;
}
.section-title-light { color: var(--text-white); }
.section-desc {
  font-size: 1.0625rem; color: var(--text-body);
  max-width: 580px; margin: 0 auto; line-height: 1.78;
}
.section-desc-light { color: var(--text-light); }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 3.5rem 2rem; text-align: center; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 25%; height: 50%; width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.25rem); font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.62) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom: 0.625rem;
}
.stat-num.accent {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-label { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================
   BENTO GRID
   ============================================ */
.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.125rem;
}
/* Span helpers */
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }
.row-2 { grid-row: span 2; }
/* Legacy aliases */
.col-span-4  { grid-column: span 4; }
.col-span-6  { grid-column: span 6; }
.col-span-8  { grid-column: span 8; }
.col-span-12 { grid-column: span 12; }

/* Base card */
.card {
  background: var(--light-bg-2); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); padding: 2.25rem;
  overflow: hidden; position: relative;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,220,130,0.22); }

.card-dark  { background: var(--surface-2); border-color: var(--glass-border); color: var(--text-white); }
.card-dark:hover  { border-color: rgba(0,220,130,0.28); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

.card-green { background: linear-gradient(135deg, #00DC82 0%, #00A85F 100%); border-color: transparent; color: var(--void); }
.card-green:hover { box-shadow: var(--glow-green); transform: translateY(-4px); }

.card-blue  { background: linear-gradient(135deg, #3D6FFF 0%, #7C4DFF 100%); border-color: transparent; color: var(--text-white); }

.card-void  { background: var(--void); border-color: rgba(255,255,255,0.07); color: var(--text-white); }
.card-void:hover { border-color: rgba(0,220,130,0.25); }

.card-glass {
  background: rgba(255,255,255,0.035); border-color: rgba(255,255,255,0.09);
  backdrop-filter: blur(16px); color: var(--text-white);
}
.card-glass:hover { background: var(--glass-hover); border-color: rgba(0,220,130,0.25); }

/* Glowing bottom accent */
.card-glow::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

/* Card body */
.card-body { display: flex; flex-direction: column; height: 100%; gap: 0.875rem; }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-green   { background: rgba(0,220,130,0.12); color: var(--green-dark); }
.icon-blue    { background: rgba(61,111,255,0.12); color: var(--blue-dark); }
.icon-purple  { background: rgba(155,109,255,0.12); color: var(--purple-dark); }
.icon-light   { background: rgba(255,255,255,0.10); color: var(--text-white); }
.icon-on-green{ background: rgba(0,0,0,0.10); color: rgba(0,0,0,0.65); }

.icon svg { width:22px; height:22px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; line-height: 1.28; letter-spacing: -0.02em; }
.card-title-sm { font-size: 1.0625rem; }
.card-desc { font-size: 0.9375rem; line-height: 1.72; color: var(--text-body); }
.card-desc-light { color: var(--text-light); }
.card-desc-on-green { color: rgba(0,0,0,0.60); }
.card-visual { flex: 1; border-radius: var(--radius-md); overflow: hidden; min-height: 150px; background: rgba(0,0,0,0.05); }
.card-visual img { width:100%; height:100%; object-fit:cover; }

/* Feature list */
.feat-list { display: flex; flex-direction: column; gap: 0.625rem; }
.feat-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9rem; font-weight: 500; color: var(--text-body); }
.feat-item.light { color: var(--text-light); }
.feat-item.on-green { color: rgba(0,0,0,0.68); }
.check { width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.check-green  { background: rgba(0,220,130,0.14); color: var(--green-dark); }
.check-light  { background: rgba(255,255,255,0.14); color: var(--text-white); }
.check-on-green { background: rgba(0,0,0,0.12); color: rgba(0,0,0,0.65); }
.check svg { width:11px; height:11px; stroke:currentColor; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue)); opacity: 0.25;
}
.process-step { text-align: center; }
.step-num {
  width: 48px; height: 48px;
  background: var(--text-dark); color: var(--text-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  border: 3px solid var(--light-bg);
}
.step-num.active { background: linear-gradient(135deg, var(--green), var(--blue)); color: var(--void); }
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.step-desc  { font-size: 0.875rem; color: var(--text-sub); line-height: 1.65; }

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.world-map-wrap {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.map-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: rgba(255,255,255,0.20);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.map-placeholder svg { opacity: 0.30; }
.map-dot {
  position: absolute; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,220,130,0.8);
  animation: dotPulse 2.5s ease-in-out infinite;
}
.map-dot::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(0,220,130,0.3);
  animation: dotRipple 2.5s ease-in-out infinite;
}
.map-dot:nth-child(2) { animation-delay: 0.5s; }
.map-dot:nth-child(3) { animation-delay: 1.0s; }
.map-dot:nth-child(4) { animation-delay: 1.5s; background:var(--blue); box-shadow:0 0 10px rgba(61,111,255,0.8); }
.map-dot:nth-child(4)::before { border-color:rgba(61,111,255,0.3); }
.map-dot:nth-child(5) { animation-delay: 2.0s; }

.region-list { display: flex; flex-direction: column; gap: 0.875rem; }
.region-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); transition: all 0.2s;
}
.region-row:hover { background: var(--glass-hover); border-color: rgba(0,220,130,0.22); }
.region-left  { display: flex; align-items: center; gap: 0.75rem; }
.region-flag  { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,220,130,0.08); border-radius: var(--radius-xs); color: var(--green); }
.region-flag svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.region-name  { font-weight: 700; font-size: 0.9375rem; color: var(--text-white); }
.region-sub   { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.region-count { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--green); }

/* ============================================
   CASE STUDY CARD
   ============================================ */
.case-card {
  background: var(--text-dark); border-radius: var(--radius-xl); padding: 3.5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.case-card::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green), transparent 70%);
  opacity: 0.07; pointer-events: none;
}
.case-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.875rem;
  background: rgba(0,220,130,0.12); color: var(--green);
  border: 1px solid rgba(0,220,130,0.20);
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.case-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.875rem); font-weight: 800;
  color: var(--text-white); line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.case-points { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
.case-point { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9rem; color: rgba(255,255,255,0.72); }
.case-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.case-metrics { display: flex; flex-direction: column; gap: 1.25rem; min-width: 152px; }
.case-metric {
  text-align: center; padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
}
.case-metric-num {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 900;
  color: var(--green); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.375rem;
}
.case-metric-lbl { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.44); letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================
   WHO WE SERVE
   ============================================ */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.serve-card {
  padding: 1.875rem 1.5rem;
  background: var(--light-bg-2); border: 1px solid var(--light-border);
  border-radius: var(--radius-lg); transition: all 0.28s var(--ease-out);
}
.serve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,220,130,0.22); }
.serve-icon { width: 2.25rem; height: 2.25rem; margin-bottom: 1rem; color: var(--green); flex-shrink: 0; }
.serve-title { font-weight: 800; font-size: 0.9375rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.serve-desc  { font-size: 0.875rem; color: var(--text-sub); line-height: 1.65; }

/* ============================================
   PRODUCT BANNER
   ============================================ */
.product-banner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
}
.product-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.product-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--text-white); letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.product-desc { font-size: 0.9375rem; color: var(--text-light); max-width: 380px; line-height: 1.65; }
.product-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-weight: 700; font-size: 0.9rem; color: var(--green); transition: gap 0.2s; }
.product-link:hover { gap: 0.875rem; }
.product-visual {
  flex-shrink: 0; width: 180px; height: 180px;
  background: rgba(0,220,130,0.08); border: 1px solid rgba(0,220,130,0.14);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--green);
}
.product-visual svg { width: 64px; height: 64px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--void); padding: 7rem 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80%; height: 500px;
  background: radial-gradient(ellipse, rgba(0,220,130,0.075) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 900;
  color: var(--text-white); letter-spacing: -0.03em; line-height: 1.1;
  margin: 1.5rem auto; max-width: 680px;
}
.cta-sub { font-size: 1.0625rem; color: var(--text-light); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.72; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Compliance badge inline strip */
.compliance-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.comp-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.70);
}
.comp-badge svg { width:13px; height:13px; flex-shrink:0; overflow:visible; stroke:var(--green); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--void); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--text-white); margin-bottom: 1rem;
}
.footer-logo img { height: 26px; width: auto; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-link:hover { color: var(--text-white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-legal { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer-consumer { font-size: 0.8125rem; color: rgba(255,255,255,0.38); }
.footer-consumer a { color: var(--green); font-weight: 600; }
.footer-consumer a:hover { text-decoration: underline; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: 8rem; padding-bottom: 5rem;
  background: var(--void); position: relative; overflow: hidden;
}
.page-hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.18; pointer-events: none; }
.page-hero-orb-green  { width:600px; height:600px; background:var(--green);  top:-200px; left:-180px; }
.page-hero-orb-purple { width:500px; height:500px; background:var(--purple); bottom:-200px; right:-180px; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--text-white); max-width: 800px; margin-bottom: 1.5rem;
}
.page-subtitle { font-size: clamp(1rem, 1.7vw, 1.15rem); color: var(--text-light); max-width: 600px; line-height: 1.75; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  40%       { transform: translateY(-28px) scale(1.04); }
  70%       { transform: translateY(12px) scale(0.97); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
@keyframes dotRipple {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(3); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .col-4, .col-span-4  { grid-column: span 3; }
  .col-5               { grid-column: span 3; }
  .col-6, .col-span-6  { grid-column: span 6; }
  .col-7               { grid-column: span 6; }
  .col-8, .col-span-8  { grid-column: span 6; }
  .col-12,.col-span-12 { grid-column: span 6; }
  .row-2               { grid-row: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-metrics { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .product-banner { flex-direction: column; text-align: center; }
  .product-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  .navbar { width: calc(100% - 2rem); top: 1rem; }
  .nav-links, .nav-cta-outline, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  /* Enable the grid-row animation on mobile only */
  .nav-mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    pointer-events: none;
    transition:
      grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      opacity            0.26s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero { padding: 6.5rem 0 4rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 360px; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .col-4,.col-5,.col-6,.col-7,.col-8,.col-12,
  .col-span-4,.col-span-6,.col-span-8,.col-span-12 { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr; }
  .case-card { padding: 2rem; }
  .case-metrics { flex-direction: column; }
}
