  :root {
    --lime: #d4f25e;
    --lime-hover: #c4e34e;
    --purple: #5b21b6;
    --sage: #f5f7f0;
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #666;
    --text-tertiary: #999;
    --border: #e5e5e5;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { font-size: 16px; }

  body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 { text-wrap: balance; }
  p { text-wrap: pretty; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  .eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 16px;
  }

  /* NAV */
  nav { background: var(--bg-primary); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
  nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo-placeholder { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .logo-placeholder img{width:64px;}
  .logo-mark { width: 36px; height: 36px; background: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--text-primary); }
  .logo-name { font-size: 17px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.3px; }
  .nav-links { display: flex; align-items: center; gap: 8px; }
  .nav-link { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-decoration: none; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; position: relative; }
  .nav-link:hover { color: var(--text-primary); background: var(--sage); }
  .nav-link.has-dropdown { padding-right: 22px; }
  .nav-link.has-dropdown::after { content: '▾'; font-size: 10px; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); opacity: 0.5; }
  .nav-dropdown-wrap { position: relative; }
  .nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 12px; padding: 12px 8px; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(-4px); transition: all 0.15s ease; z-index: 200; min-width: 180px; }
  .nav-dropdown-wide { display: flex; gap: 0; min-width: 440px; }
  .nav-dropdown-col { flex: 1; padding: 0 8px; }
  .nav-dropdown-col-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); padding: 0 8px 8px; margin-bottom: 2px; border-bottom: 1px solid var(--border); }
  .nav-dropdown-divider { width: 1px; background: var(--border); margin: 0 8px; flex-shrink: 0; }
  .nav-dropdown-item { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); text-decoration: none; padding: 5px 8px; border-radius: 6px; transition: all 0.15s; margin-top: 1px; white-space: nowrap; }
  .nav-dropdown-item:hover { background: var(--sage); color: var(--text-primary); }
  .nav-cta { background: var(--lime); color: var(--text-primary) !important; padding: 10px 20px !important; border-radius: 8px; font-weight: 700 !important; font-size: 14px; text-decoration: none; transition: opacity 0.2s; }
  .nav-cta:hover { opacity: 0.85; }
  .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-primary); }

    @media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hero { padding: 80px 0 64px; }
    .hero h1 { font-size: clamp(36px, 9vw, 54px); letter-spacing: -1.5px; }
    .hero-sub { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
    .solution-cards { grid-template-columns: 1fr; }
    .primary-solutions { grid-template-columns: 1fr; }
    .cap-grid { grid-template-columns: 1fr; }
    .flow-outputs { grid-template-columns: 1fr; }
    .flow-section { padding: 28px 20px; }
    .int-strip { padding: 32px 24px; }
    .cta-card-actions { flex-direction: column; }
    .nav-links { display: none; }
    .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-primary); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; z-index: 99; }
    .mobile-menu-btn { display: block; }
    .nav-dropdown-wrap .nav-dropdown { display: none; }
  }
  /* FOOTER */
  footer { background: var(--bg-primary); border-top: 1px solid var(--border); padding: 48px 0; }
  .footer-inner { display: flex; align-items: center; justify-content: space-between; }
  .footer-left { font-size: 13px; color: var(--text-tertiary); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 13px; color: var(--text-tertiary); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-primary); }
