    :root {
      --navy: #17135C;
      --royal: #3A5998;
      --blue: #4A6DB5;
      --sky: #BDC9DD;
      --white: #FFFFFF;
      --offwhite: #F4F7FB;
      --gray: #D0D7DE;
      --charcoal: #1A1A2E;
      --gold: #C8A45A;
      --gold-dark: #A8883A;
      --text: #1A1A2E;
      --text-muted: #5A6278;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', Arial, sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

    /* REVEAL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 4rem;
      background: rgba(23,19,92,0.92); backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(189,201,221,0.12);
      transition: all 0.3s ease;
    }
    nav.scrolled {
      padding: 0.7rem 4rem;
      box-shadow: 0 4px 24px rgba(23,19,92,0.25);
    }
    .nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
    .nav-logo img { height: 44px; width: auto; mix-blend-mode: lighten; }
    .nav-logo-text { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; line-height: 1.2; }
    .nav-logo-text span { display: block; font-size: 0.6rem; font-weight: 300; color: var(--sky); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { color: var(--sky); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border: none; padding: 0.6rem 1.5rem; border-radius: 6px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,90,0.35); }
    .nav-login { color: var(--sky); text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; padding: 0.6rem 0; }
    .nav-login:hover { color: var(--white); }

    /* HAMBURGER */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 101; background: none; border: none; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--sky); border-radius: 2px; transition: all 0.3s ease; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* MOBILE NAV OVERLAY */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 99;
      background: rgba(23,19,92,0.97); backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    }
    .mobile-nav.active { display: flex; }
    .mobile-nav a { color: var(--white); text-decoration: none; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.04em; transition: color 0.2s; }
    .mobile-nav a:hover { color: var(--gold); }

    /* HERO */
    #home {
      min-height: 100vh;
      background: linear-gradient(165deg, var(--navy) 0%, #1E1A6E 40%, #2A2580 70%, var(--royal) 100%);
      display: flex; align-items: center; position: relative; overflow: hidden;
      padding: 8rem 4rem 4rem;
    }
    .hero-bg-geo {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        radial-gradient(ellipse 60% 50% at 72% 50%, rgba(74,109,181,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 15% 80%, rgba(189,201,221,0.06) 0%, transparent 60%);
    }
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image: linear-gradient(rgba(189,201,221,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(189,201,221,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* Prism light refraction accent */
    .hero-prism-glow {
      position: absolute; top: 15%; right: 8%; width: 400px; height: 400px; pointer-events: none;
      background: conic-gradient(from 180deg, rgba(74,109,181,0.15), rgba(200,164,90,0.1), rgba(58,89,152,0.12), rgba(189,201,221,0.08), rgba(74,109,181,0.15));
      border-radius: 50%; filter: blur(80px);
      animation: prismRotate 20s linear infinite;
    }
    @keyframes prismRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .hero-inner {
      max-width: 1400px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center;
      position: relative; z-index: 2;
    }
    .hero-content { animation: fadeUp 0.9s ease both; }
    .hero-video-wrap {
      position: relative; border-radius: 16px; overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(189,201,221,0.1);
      animation: fadeIn 1.2s ease both 0.3s;
      aspect-ratio: 16/9;
    }
    .hero-video-wrap::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(135deg, rgba(23,19,92,0.3) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-video-badge {
      position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
      background: rgba(23,19,92,0.8); backdrop-filter: blur(8px);
      border: 1px solid rgba(200,164,90,0.4); border-radius: 6px;
      padding: 0.45rem 0.9rem; font-size: 0.68rem; color: var(--gold);
      letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.5rem; }
    .hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
    .hero-title { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
    .hero-title strong { font-weight: 800; background: linear-gradient(135deg, var(--sky), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
    .hero-subhead {
      font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 600; line-height: 1.35;
      margin-bottom: 1.5rem; max-width: 560px; letter-spacing: -0.01em;
      background: linear-gradient(135deg, var(--sky), var(--blue));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-tagline { font-size: 1rem; color: var(--sky); font-weight: 400; margin-bottom: 2.5rem; line-height: 1.7; max-width: 480px; }
    .hero-tagline em { color: var(--gold); font-style: normal; font-weight: 600; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); padding: 0.9rem 2.2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,164,90,0.4); }
    .btn-secondary { border: 2px solid rgba(189,201,221,0.35); color: var(--sky); padding: 0.85rem 2.2rem; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; transition: all 0.25s; }
    .btn-secondary:hover { border-color: var(--sky); color: white; background: rgba(189,201,221,0.1); }
    .hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(189,201,221,0.15); }
    .stat-item { text-align: left; }
    .stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; }
    .stat-label { font-size: 0.7rem; color: var(--sky); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-top: 0.2rem; }

    /* TRUST BAR */
    #trust-bar {
      background: var(--navy);
      border-top: 1px solid rgba(189,201,221,0.1);
      border-bottom: 1px solid rgba(189,201,221,0.1);
      padding: 2.5rem 4rem;
    }
    .trust-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
    }
    .trust-label {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--sky); white-space: nowrap;
    }
    .trust-divider { width: 1px; height: 32px; background: rgba(189,201,221,0.2); }
    .trust-tools {
      display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    }
    .trust-tool {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.82rem; font-weight: 500; color: var(--sky);
      opacity: 0.7; transition: opacity 0.3s;
    }
    .trust-tool:hover { opacity: 1; }
    .trust-tool-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(189,201,221,0.1); display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }

    /* SHARED SECTION */
    section { padding: 6rem 4rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--royal); margin-bottom: 1rem; }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 1px; }
    .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
    .section-title strong { font-weight: 800; color: var(--royal); }

    /* ABOUT */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
    .about-img-block { position: relative; }
    .about-img-frame { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(23,19,92,0.12); width: 400px; height: auto; }
    .about-img-frame img { width: 100%; height: auto; object-fit: contain; display: block; }
    .about-badge {
      position: absolute; bottom: -1rem; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--navy), #1E1A6E); color: var(--white);
      padding: 1rem 1.5rem; border-radius: 8px;
      font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
      box-shadow: 0 8px 24px rgba(23,19,92,0.25);
      line-height: 1.5; text-align: center; white-space: nowrap;
      border: 1px solid rgba(200,164,90,0.3);
    }
    .about-badge span { display: block; color: var(--gold); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.1em; }
    .about-intro { font-size: 1.2rem; font-weight: 500; line-height: 1.65; color: var(--navy); margin-bottom: 1.5rem; }
    .about-body { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }
    .about-tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
    .tool-tag { background: var(--offwhite); border: 1px solid var(--gray); color: var(--navy); padding: 0.4rem 0.9rem; border-radius: 24px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.02em; transition: all 0.2s; }
    .tool-tag:hover { background: var(--navy); color: white; border-color: var(--navy); cursor: pointer; }
    .accolades { margin-top: 1.5rem; }
    .accolade { display: flex; gap: 1rem; align-items: flex-start; padding: 0.75rem 0; border-bottom: 1px solid var(--offwhite); }
    .accolade:last-child { border-bottom: none; }
    .accolade-icon { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, var(--royal), var(--blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem; }
    .accolade-icon svg { width: 12px; height: 12px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .accolade-text { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); }

    /* SERVICES */
    #services { background: var(--offwhite); }
    .services-intro { max-width: 600px; margin-bottom: 3.5rem; }
    .services-category-title {
      font-size: 1.15rem; font-weight: 700; color: var(--navy);
      margin: 2.5rem 0 1.2rem; padding-bottom: 0.6rem;
      border-bottom: 2px solid var(--gold); display: inline-block;
      letter-spacing: 0.02em;
    }
    .services-category-title:first-of-type { margin-top: 0; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    .service-card {
      background: var(--white); border-radius: 12px; padding: 1.5rem;
      border: 1px solid var(--gray); transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--royal), var(--blue));
      transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(23,19,92,0.1);
      border-color: var(--sky);
    }
    .service-card:hover::before { transform: scaleX(1); }
    /* Compliance cards get gold accent */
    .service-card.compliance::before { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
    .service-icon {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--navy), var(--royal));
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem; font-size: 1.4rem;
    }
    .service-card.compliance .service-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
    .service-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
    .service-desc { font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); }

    /* HOW WE WORK */
    #process { background: var(--white); }
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
      margin-top: 3rem; position: relative;
    }
    /* Connecting line */
    .process-grid::before {
      content: ''; position: absolute;
      top: 40px; left: 12.5%; right: 12.5%;
      height: 2px; background: linear-gradient(90deg, var(--sky), var(--royal), var(--blue), var(--gold));
      z-index: 0;
    }
    .process-step {
      text-align: center; position: relative; z-index: 1;
    }
    .process-num {
      width: 80px; height: 80px; margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, var(--navy), var(--royal));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; font-weight: 800; color: var(--gold);
      box-shadow: 0 8px 24px rgba(23,19,92,0.15);
      border: 3px solid var(--white);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .process-step:hover .process-num {
      transform: scale(1.1);
      box-shadow: 0 12px 32px rgba(23,19,92,0.2);
    }
    .process-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
    .process-desc { font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); max-width: 220px; margin: 0 auto; }

    /* CLAUDE SECTION */
    #claude {
      background: linear-gradient(165deg, var(--navy) 0%, #1E1A6E 50%, #1A1870 100%);
      position: relative; overflow: hidden;
    }
    #claude .section-label { color: var(--sky); }
    #claude .section-label::before { background: var(--gold); }
    #claude .section-title { color: var(--white); }
    #claude .section-title strong { color: var(--gold); }
    .claude-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 2rem;
    }
    .claude-copy { font-size: 0.95rem; line-height: 1.8; color: var(--sky); margin-bottom: 1.5rem; }
    .claude-copy strong { color: var(--white); font-weight: 600; }
    .claude-highlight {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(200,164,90,0.12); border: 1px solid rgba(200,164,90,0.25);
      border-radius: 8px; padding: 0.8rem 1.2rem; margin-top: 0.5rem;
      font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em;
    }
    .claude-highlight .icon { stroke: var(--gold); width: 18px; height: 18px; }
    .claude-cards { display: flex; flex-direction: column; gap: 1.2rem; }
    .claude-card {
      background: rgba(189,201,221,0.06);
      border: 1px solid rgba(189,201,221,0.12);
      border-radius: 12px; padding: 1.5rem;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
      display: flex; gap: 1.2rem; align-items: flex-start;
    }
    .claude-card:hover {
      background: rgba(189,201,221,0.1);
      border-color: rgba(200,164,90,0.3);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    }
    .claude-card-icon {
      width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(200,164,90,0.2), rgba(74,109,181,0.2));
      border: 1px solid rgba(200,164,90,0.2);
      display: flex; align-items: center; justify-content: center;
    }
    .claude-card-icon .icon { width: 22px; height: 22px; stroke: var(--gold); }
    .claude-card-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
    .claude-card-desc { font-size: 0.82rem; line-height: 1.6; color: var(--sky); }
    .claude-bg-glow {
      position: absolute; bottom: -20%; right: -10%; width: 500px; height: 500px; pointer-events: none;
      background: radial-gradient(ellipse, rgba(200,164,90,0.08) 0%, transparent 70%);
    }

    /* CONTACT */
    #contact { background: var(--offwhite); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
    .contact-intro { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2.5rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
    .contact-item-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--navy), var(--royal)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .contact-item-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 0.2rem; font-weight: 500; }
    .contact-item-value { font-size: 0.92rem; color: var(--navy); font-weight: 600; }
    .contact-item-value a { color: var(--navy); text-decoration: none; }
    .contact-item-value a:hover { color: var(--royal); }
    .contact-form { background: var(--white); border-radius: 14px; padding: 2.5rem; border: 1px solid var(--gray); box-shadow: 0 8px 32px rgba(23,19,92,0.06); }
    .form-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.45rem; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 0.8rem 1rem;
      background: var(--offwhite); border: 1px solid var(--gray); border-radius: 8px;
      font-family: 'Inter', Arial, sans-serif; font-size: 0.88rem; color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--royal);
      box-shadow: 0 0 0 3px rgba(58,89,152,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--navy), var(--royal));
      color: white; border: none; padding: 1rem; border-radius: 8px;
      font-family: 'Inter', Arial, sans-serif; font-size: 0.85rem;
      font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      cursor: pointer; transition: all 0.25s; margin-top: 0.5rem;
    }
    .btn-submit:hover {
      background: linear-gradient(135deg, var(--royal), var(--blue));
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(23,19,92,0.2);
    }

    /* FOOTER */
    footer {
      background: var(--navy); color: var(--sky);
      padding: 2.5rem 4rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1.5rem;
      border-top: 1px solid rgba(200,164,90,0.2);
    }
    .footer-brand { display: flex; align-items: center; gap: 0.8rem; }
    .footer-brand img { height: 36px; mix-blend-mode: lighten; }
    .footer-brand-text { font-size: 1rem; color: var(--white); font-weight: 700; }
    .footer-brand-text span { display: block; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); font-weight: 400; margin-top: 2px; }
    .footer-copy { font-size: 0.75rem; color: var(--sky); opacity: 0.7; }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: var(--sky); text-decoration: none; font-size: 0.8rem; font-weight: 500; transition: color 0.2s; }
    .footer-links a:hover { color: white; }

    /* ACCESSIBILITY */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-prism-glow { animation: none; }
    }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px;
    }
    .nav-links a, .nav-cta, .btn-primary, .btn-secondary, .service-card, .mobile-nav a, .footer-links a { cursor: pointer; }

    /* SVG ICON SYSTEM */
    .icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
    .icon-lg { width: 24px; height: 24px; }
    .service-icon .icon { width: 24px; height: 24px; stroke: white; stroke-width: 1.6; }
    .contact-item-icon .icon { width: 20px; height: 20px; stroke: white; }
    .trust-tool-icon .icon { width: 18px; height: 18px; stroke: var(--sky); }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    /* ADOPTION ARC — hero badges + journey band + service pills */
    .hero-arc {
      display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
      border-top: 1px solid rgba(189,201,221,0.15); flex-wrap: wrap;
    }
    .arc-step { flex: 1; min-width: 160px; }
    .arc-step-name { font-size: 0.95rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.4rem; }
    .arc-step-desc { font-size: 0.78rem; color: var(--sky); line-height: 1.5; opacity: 0.85; }

    #journey {
      background: var(--offwhite); padding: 5rem 4rem 6rem;
    }
    .journey-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
      margin-top: 3rem; position: relative;
    }
    .journey-grid::before {
      content: ''; position: absolute;
      top: 36px; left: 16.66%; right: 16.66%;
      height: 2px; background: linear-gradient(90deg, var(--royal), var(--blue), var(--gold));
      z-index: 0;
    }
    .journey-step {
      position: relative; z-index: 1; background: var(--white);
      border: 1px solid var(--gray); border-radius: 12px;
      padding: 2rem 1.6rem;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .journey-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(23,19,92,0.1);
      border-color: var(--sky);
    }
    .journey-step-num {
      width: 72px; height: 72px; margin: 0 auto 1.2rem;
      background: linear-gradient(135deg, var(--navy), var(--royal));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; font-weight: 800; color: var(--gold);
      border: 3px solid var(--white);
      box-shadow: 0 6px 20px rgba(23,19,92,0.18);
    }
    .journey-step-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 0.8rem; letter-spacing: -0.01em; }
    .journey-step-scope { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; text-align: center; }
    .journey-step-meta {
      border-top: 1px dashed var(--gray); padding-top: 0.8rem; margin-top: 0.8rem;
      font-size: 0.78rem; line-height: 1.6;
    }
    .journey-step-meta-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--royal); margin-bottom: 0.3rem; display: block; }
    .journey-step-deliverable { color: var(--navy); font-weight: 500; margin-bottom: 0.7rem; }
    .journey-step-startif { color: var(--text-muted); font-style: italic; }
    .journey-sizing {
      max-width: 900px; margin: 3rem auto 0; padding: 1.5rem 2rem;
      background: var(--offwhite); border-left: 3px solid var(--gold);
      border-radius: 6px; font-size: 0.92rem; line-height: 1.7; color: var(--text-muted);
    }
    .journey-cta-wrap { text-align: center; margin-top: 2.5rem; }
    .journey-cta {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: linear-gradient(135deg, var(--navy), var(--royal));
      color: var(--white); padding: 0.95rem 2.4rem; border-radius: 8px;
      text-decoration: none; font-weight: 700; font-size: 0.85rem;
      letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.25s;
    }
    .journey-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(23,19,92,0.25); }

    /* SERVICE CARD PILLS + PRICE ANCHORS */
    .service-pill {
      display: inline-block; padding: 0.2rem 0.6rem;
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: 12px; margin-bottom: 0.8rem;
    }
    .service-pill-engagement { background: rgba(58,89,152,0.1); color: var(--royal); border: 1px solid rgba(58,89,152,0.25); }
    .service-pill-productized { background: rgba(200,164,90,0.12); color: var(--gold-dark); border: 1px solid rgba(200,164,90,0.3); }
    .service-price {
      font-size: 0.78rem; font-weight: 600; color: var(--navy);
      margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px dashed var(--gray);
      letter-spacing: 0.01em;
    }
    .service-price strong { color: var(--gold-dark); font-weight: 700; }

    /* TRUST BAR — Build / Govern groups */
    .trust-group { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
    .trust-group-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold); padding: 0.3rem 0.7rem;
      border: 1px solid rgba(200,164,90,0.3); border-radius: 4px;
      background: rgba(200,164,90,0.06);
    }
    .trust-group-items { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
    .trust-frameworks { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
    .trust-framework {
      font-size: 0.78rem; font-weight: 500; color: var(--sky);
      opacity: 0.75; transition: opacity 0.3s; letter-spacing: 0.02em;
    }
    .trust-framework:hover { opacity: 1; }

    /* RESPONSIVE */
    @media (max-width: 1180px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      nav.scrolled { padding: 0.7rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 4rem 1.5rem; }
      #home { padding: 7rem 1.5rem 4rem; }
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
      .hero-tagline { margin: 0 auto 2.5rem; }
      .hero-btns { justify-content: center; }
      .hero-stats, .hero-arc { justify-content: center; flex-wrap: wrap; text-align: center; }
      .arc-step { min-width: 100%; }
      #journey { padding: 4rem 1.5rem; }
      .journey-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .journey-grid::before { display: none; }
      .journey-sizing { padding: 1.2rem 1.5rem; }
      .trust-group { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
      .trust-group-items, .trust-frameworks { justify-content: flex-start; }
      .hero-video-wrap { order: -1; }
      .hero-video-wrap video { max-height: 220px; }
      .hero-prism-glow { display: none; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-img-frame { width: 100%; max-width: 350px; margin: 0 auto; }
      .about-badge { position: static; transform: none; margin-top: 1.5rem; display: inline-block; }
      .services-grid { grid-template-columns: 1fr; }
      .claude-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .process-grid::before { display: none; }
      #trust-bar { padding: 2rem 1.5rem; }
      .trust-inner { gap: 1.5rem; }
      .trust-divider { display: none; }
      footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
    }
    @media (max-width: 480px) {
      .process-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }
