:root {
    --navy-900: #071b2b;
    --navy-800: #0b2a43;
    --navy-700: #103a5c;
  
    --ink: #0c1b2a;
    --muted: rgba(12, 27, 42, 0.7);
  
    --white: #ffffff;
    --paper: #f6f7f9;
  
    --accent: #f28c1b; /* orange from card vibe */
    --accent2: #1aa6d8; /* teal/blue vibe */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius: 16px;
  }
  
  * { box-sizing: border-box; }
  html, body { height: 100%; }
  body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
  }
  
  .container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 27, 43, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 150ms ease, background 150ms ease;
  }
  .site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    background: rgba(7, 27, 43, 0.86);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .brand-logo {
    height: 40px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
  }
  .brand-name {
    font-size: 16px;
    line-height: 1.1;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .nav a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .nav a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }
  .nav-cta {
    border: 1px solid rgba(255,255,255,0.24);
  }
  .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.08);
    padding: 10px 9px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,0.92);
    transition: transform 140ms ease, opacity 140ms ease;
  }
  
  .hero {
    background: radial-gradient(1200px 700px at 20% 10%, rgba(26,166,216,0.22), transparent 55%),
                radial-gradient(1000px 600px at 80% 30%, rgba(242,140,27,0.18), transparent 55%),
                linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    padding: 72px 0 56px;
  }
  
  .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
  }
  
  .hero h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.5px;
  }
  .hero-sub {
    margin: 0 0 22px;
    font-size: 18px;
    color: rgba(255,255,255,0.82);
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .hero-meta .meta-link {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 14px;
  }
  .hero-meta .meta-link:hover { color: var(--white); }
  
  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .hero-card-inner {
    padding: 18px 18px 16px;
  }
  .tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 10px;
  }
  .tagline .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(242,140,27,0.18);
  }
  .tagline .sep {
    opacity: 0.55;
  }
  .hero-card-text {
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 14px;
  }
  
  .section {
    padding: 56px 0;
  }
  .section.light {
    background: var(--paper);
  }
  .section h2 {
    margin: 0 0 10px;
    font-size: 28px;
    letter-spacing: -0.2px;
  }
  .lead {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 16px;
    max-width: 78ch;
  }
  .muted {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 78ch;
  }
  
  .bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .bullet {
    background: var(--white);
    border: 1px solid rgba(12,27,42,0.08);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }
  .bullet h3 { margin: 0 0 6px; font-size: 16px; }
  .bullet p { margin: 0; color: var(--muted); }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .card {
    border: 1px solid rgba(12,27,42,0.10);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    background: var(--white);
  }
  .card-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26,166,216,0.22), rgba(242,140,27,0.18));
    border: 1px solid rgba(12,27,42,0.08);
    margin-bottom: 10px;
    font-size: 18px;
  }
  .card h3 { margin: 0 0 6px; font-size: 18px; }
  .card p { margin: 0; color: var(--muted); }
  .why-outcomes {
    margin-top: 16px;
  }
  
  .contact {
    background: radial-gradient(900px 500px at 20% 10%, rgba(26,166,216,0.18), transparent 60%),
                linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--white);
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
  }
  .contact .muted { color: rgba(255,255,255,0.78); }
  
  .contact-phone {
    margin-top: 16px;
  }
  .phone {
    display: inline-block;
    font-size: 24px;
    font-weight: 750;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.2px;
  }
  .phone:hover { text-decoration: underline; }
  .small {
    margin-top: 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.78);
  }
  .small a { color: rgba(255,255,255,0.92); }
  
  .contact-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .contact-form label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.84);
    margin-bottom: 10px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(7, 27, 43, 0.36);
    color: var(--white);
    outline: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: rgba(242,140,27,0.55);
    box-shadow: 0 0 0 4px rgba(242,140,27,0.18);
  }
  .form-fallback {
    margin: 10px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,0.78);
  }
  .form-fallback a {
    color: rgba(255,255,255,0.95);
  }
  .form-fallback a:hover {
    color: var(--white);
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 650;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
  }
  .button.primary {
    background: linear-gradient(135deg, var(--accent), #f2a84a);
    color: #1b140c;
  }
  .button.ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.18);
  }
  .button.primary:hover { filter: brightness(1.03); }
  .button.ghost:hover { background: rgba(255,255,255,0.12); }
  
  .footer {
    padding: 22px 0;
    background: #061420;
    color: rgba(255,255,255,0.70);
    font-size: 14px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
  }
  .footer a:hover { color: var(--white); }
  
  @media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .bullets, .cards { grid-template-columns: 1fr; }
    .header-inner {
      position: relative;
      min-height: 60px;
    }
    .menu-toggle {
      display: inline-flex;
      flex-direction: column;
    }
    .nav {
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      width: min(260px, calc(100vw - 40px));
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 6px;
      background: rgba(7, 27, 43, 0.96);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 14px;
      padding: 10px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.3);
    }
    .menu-open .nav {
      display: flex;
    }
    .nav a {
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 15px;
    }
    .menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }
    .menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  
