    /* ============================================
       RESET & BASE
    ============================================ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --lime: #A8FF3E;
      --lime-dim: rgba(168, 255, 62, 0.12);
      --lime-glow: rgba(168, 255, 62, 0.25);
      --bg: #080808;
      --bg-2: #0f0f0f;
      --bg-3: #141414;
      --border: rgba(255,255,255,0.07);
      --text: #f0f0f0;
      --muted: #888;
      --white: #ffffff;
      --font-body: 'Space Grotesk', sans-serif;
      --font-display: 'Syne', sans-serif;
    }

    html {
      scroll-behavior: smooth;
      cursor: none;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* ============================================
       CUSTOM CURSOR
    ============================================ */
    #cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      background: var(--lime);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
      mix-blend-mode: difference;
    }

    #cursor-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(168, 255, 62, 0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    }

    body:hover #cursor { opacity: 1; }

    a, button, [data-hover] {
      cursor: none;
    }

    /* ============================================
       TYPOGRAPHY
    ============================================ */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
    h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

    p { color: var(--muted); line-height: 1.75; }

    .lime { color: var(--lime); }
    .white { color: var(--white); }

    /* ============================================
       LAYOUT UTILITIES
    ============================================ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .section {
      padding: 120px 0;
    }

    .section-sm {
      padding: 80px 0;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lime);
      background: var(--lime-dim);
      border: 1px solid rgba(168, 255, 62, 0.2);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    /* ============================================
       BUTTONS
    ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
      border: none;
      cursor: none;
    }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.08);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .btn:hover::before { transform: translateX(0); }

    .btn-primary {
      background: var(--lime);
      color: #080808;
    }

    .btn-primary:hover {
      background: #bfff5a;
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(168, 255, 62, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--lime);
      color: var(--lime);
      transform: translateY(-2px);
    }

    .btn-arrow::after {
      content: '→';
      transition: transform 0.2s ease;
    }

    .btn:hover .btn-arrow::after,
    .btn-arrow:hover::after {
      transform: translateX(4px);
    }

    /* ============================================
       NAVIGATION
    ============================================ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 72px;
      background: rgba(8, 8, 8, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    nav.scrolled {
      height: 64px;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    /* Single unified full-page particle canvas */
    #page-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    /* Lift nav content above the canvas */
    .nav-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.03em;
    }

    .nav-logo span { color: var(--lime); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--lime);
      transition: width 0.25s ease;
    }

    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
      cursor: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .mobile-menu a:hover { color: var(--lime); }

    /* ============================================
       HERO SECTION
    ============================================ */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 100px;
      /* Push hero below nav so hero canvas doesn't bleed behind it */
      margin-top: 0;
    }

    /* Hero canvas removed — replaced by unified #page-canvas */

    /* Noise texture overlay */
    #home::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
    }

    .hero-eyebrow-line {
      width: 40px;
      height: 1px;
      background: var(--lime);
    }

    .hero-eyebrow-text {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--lime);
    }

    .hero-title {
      margin-bottom: 28px;
    }

    .hero-title .line {
      display: block;
      overflow: hidden;
    }

    .hero-title .line span {
      display: block;
      transform: translateY(100%);
      animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
    .hero-title .line:nth-child(2) span { animation-delay: 0.2s; }
    .hero-title .line:nth-child(3) span { animation-delay: 0.3s; }
    .hero-title .line:nth-child(4) span { animation-delay: 0.4s; }

    #home-page {
      position: relative;
      z-index: 1;
    }

    @keyframes slideUp {
      to { transform: translateY(0); }
    }

    /* Respect reduced motion preference & ensure text always visible */
    @media (prefers-reduced-motion: reduce) {
      .hero-title .line span {
        transform: translateY(0);
        animation: none;
      }
      .hero-sub, .hero-actions, .hero-proof {
        opacity: 1;
        animation: none;
      }
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: var(--muted);
      max-width: 560px;
      margin-bottom: 44px;
      opacity: 0;
      animation: fadeIn 0.8s ease 0.6s forwards;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeIn 0.8s ease 0.8s forwards;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 80px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      opacity: 0;
      animation: fadeIn 0.8s ease 1s forwards;
    }

    .hero-proof-item {
      display: flex;
      flex-direction: column;
    }

    .hero-proof-num {
      font-family: var(--font-body);
      font-size: 2rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .hero-proof-num span { color: var(--lime); }

    .hero-proof-label {
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-proof-divider {
      width: 1px;
      height: 40px;
      background: var(--border);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 1s ease 1.4s forwards;
    }

    .scroll-indicator span {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--lime), transparent);
      animation: scrollLine 2s ease infinite;
    }

    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ============================================
       MARQUEE STRIP
    ============================================ */
    .marquee-strip {
      background: var(--lime);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 25s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 32px;
      white-space: nowrap;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #080808;
    }

    .marquee-dot {
      width: 5px;
      height: 5px;
      background: rgba(8,8,8,0.4);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ============================================
       PROBLEM SECTION
    ============================================ */
    #problem {
      background: var(--bg-2);
      position: relative;
      overflow: hidden;
    }

    #problem::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(168, 255, 62, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .problem-left h2 {
      margin-bottom: 24px;
    }

    .problem-left p {
      font-size: 1.05rem;
      margin-bottom: 36px;
    }

    .problem-right {
      display: grid;
      gap: 2px;
    }

    .problem-card {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 24px 28px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: border-color 0.3s ease, transform 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .problem-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--lime);
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .problem-card:hover {
      border-color: rgba(168, 255, 62, 0.2);
      transform: translateX(4px);
    }

    .problem-card:hover::before { transform: scaleY(1); }

    .problem-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .problem-card h4 {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }

    .problem-card p {
      font-size: 13px;
      color: var(--muted);
    }

    /* ============================================
       SOLUTION SECTION
    ============================================ */
    #solution {
      position: relative;
      overflow: hidden;
    }

    .solution-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .solution-header h2 { margin-bottom: 20px; }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 80px;
    }

    .solution-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
    }

    .solution-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--lime-dim) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .solution-card:hover {
      border-color: rgba(168, 255, 62, 0.25);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    }

    .solution-card:hover::after { opacity: 1; }

    .solution-num {
      font-family: var(--font-body);
      font-size: 4rem;
      font-weight: 700;
      color: rgba(168, 255, 62, 0.1);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.3s ease;
    }

    .solution-card:hover .solution-num { color: rgba(168, 255, 62, 0.2); }

    .solution-card h3 {
      font-size: 1.25rem;
      color: var(--white);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .solution-card p {
      font-size: 14px;
      position: relative;
      z-index: 1;
    }

    /* The engine diagram */
    .engine-block {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .engine-block::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(168, 255, 62, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .engine-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
    }

    .engine-sub {
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 48px;
    }

    .engine-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .engine-node {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 20px 28px;
      text-align: center;
      min-width: 160px;
    }

    .engine-node-icon {
      font-size: 1.6rem;
      margin-bottom: 8px;
    }

    .engine-node-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
    }

    .engine-arrow {
      font-size: 1.4rem;
      color: var(--lime);
      padding: 0 12px;
      font-weight: 300;
    }

    /* ============================================
       HOW IT WORKS
    ============================================ */
    #process {
      background: var(--bg-2);
    }

    .process-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 80px;
    }

    .process-header h2 { margin-bottom: 16px; }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 52px;
      left: calc(16.66% + 32px);
      right: calc(16.66% + 32px);
      height: 1px;
      background: linear-gradient(to right, var(--lime), rgba(168,255,62,0.2), var(--lime));
    }

    .step {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 48px 36px;
      position: relative;
      transition: all 0.3s ease;
    }

    .step:hover {
      border-color: rgba(168, 255, 62, 0.2);
      transform: translateY(-4px);
    }

    .step-num {
      width: 52px;
      height: 52px;
      background: var(--lime);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 800;
      color: #080808;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .step h3 {
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .step p { font-size: 14px; }

    /* ============================================
       SERVICES
    ============================================ */
    #services {
      position: relative;
    }

    .services-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 60px;
      gap: 40px;
    }

    .services-header h2 { max-width: 500px; }

    .services-header p {
      max-width: 340px;
      font-size: 15px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--lime);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }

    .service-card:hover {
      border-color: rgba(168, 255, 62, 0.2);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 52px;
      height: 52px;
      background: var(--lime-dim);
      border: 1px solid rgba(168, 255, 62, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 28px;
      transition: background 0.3s ease;
    }

    .service-card:hover .service-icon {
      background: var(--lime);
    }

    .service-card h3 {
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .service-card .tagline {
      font-size: 14px;
      color: var(--lime);
      font-weight: 600;
      margin-bottom: 16px;
    }

    .service-card p {
      font-size: 14px;
      flex: 1;
      margin-bottom: 28px;
    }

    .service-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
    }

    .service-features li::before {
      content: '✓';
      color: var(--lime);
      font-weight: 700;
      font-size: 12px;
      flex-shrink: 0;
    }

    /* ============================================
       RESULTS / SOCIAL PROOF
    ============================================ */
    #results {
      background: var(--bg-2);
    }

    .results-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 80px;
    }

    .results-header h2 { margin-bottom: 16px; }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 80px;
    }

    .result-card {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .result-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--lime), rgba(168,255,62,0.3));
    }

    .result-card:hover {
      border-color: rgba(168, 255, 62, 0.2);
      transform: translateY(-4px);
    }

    .result-industry {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 20px;
    }

    .result-stat {
      font-family: var(--font-body);
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 8px;
    }

    .result-stat span { color: var(--lime); }

    .result-desc {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .result-quote {
      font-size: 14px;
      color: var(--text);
      font-style: italic;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .result-author {
      margin-top: 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      font-style: normal;
    }

    /* Stats bar */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .stat-item {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 36px 28px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      border-color: rgba(168, 255, 62, 0.2);
    }

    .stat-num {
      font-family: var(--font-body);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-num span { color: var(--lime); }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
    }

    /* ============================================
       FINAL CTA
    ============================================ */
    #cta {
      position: relative;
      overflow: hidden;
    }

    .cta-inner {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 100px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(168, 255, 62, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner h2 {
      max-width: 700px;
      margin: 0 auto 20px;
    }

    .cta-inner p {
      max-width: 500px;
      margin: 0 auto 44px;
      font-size: 1.05rem;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-note {
      margin-top: 24px;
      font-size: 13px;
      color: var(--muted);
    }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      padding: 60px 0 40px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      font-size: 14px;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-col h5 {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul a {
      font-size: 14px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-col ul a:hover { color: var(--lime); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .footer-bottom p {
      font-size: 13px;
    }

    .footer-bottom a {
      color: var(--lime);
      text-decoration: none;
    }

    /* ============================================
       PRICING PAGE
    ============================================ */
    #pricing-page {
      display: none;
      min-height: 100vh;
      padding-top: 120px;
      position: relative;
      z-index: 1;
    }

    #pricing-page.active { display: block; }

    .pricing-hero {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .pricing-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 20px;
    }

    .pricing-hero p {
      font-size: 1.1rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 80px;
      align-items: start;
    }

    .pricing-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px 28px;
      position: relative;
      transition: all 0.3s ease;
    }

    .pricing-card.featured {
      background: var(--bg-3);
      border-color: var(--lime);
      transform: scale(1.03);
    }

    .pricing-card:hover:not(.featured) {
      border-color: rgba(168, 255, 62, 0.2);
      transform: translateY(-4px);
    }

    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--lime);
      color: #080808;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .pricing-price {
      font-family: var(--font-body);
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-price span {
      font-size: 1rem;
      font-weight: 400;
      color: var(--muted);
    }

    .pricing-period {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .pricing-for {
      font-size: 13px;
      color: var(--lime);
      font-weight: 500;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--lime);
      font-weight: 700;
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-cta {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    .pricing-faq {
      max-width: 700px;
      margin: 0 auto;
    }

    .pricing-faq h2 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }

    .faq-q {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      cursor: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-q::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--lime);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-q::after { transform: rotate(45deg); }

    .faq-a {
      font-size: 14px;
      color: var(--muted);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding-top: 16px;
    }

    /* ============================================
       CONTACT PAGE
    ============================================ */
    #contact-page {
      display: none;
      min-height: 100vh;
      padding-top: 120px;
      position: relative;
      z-index: 1;
    }

    #contact-page.active { display: block; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-left h1 {
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      margin-bottom: 20px;
    }

    .contact-left p {
      font-size: 1.05rem;
      margin-bottom: 48px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-info-icon {
      width: 44px;
      height: 44px;
      background: var(--lime-dim);
      border: 1px solid rgba(168, 255, 62, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-info-text {
      font-size: 14px;
      color: var(--muted);
    }

    .contact-info-text strong {
      display: block;
      color: var(--white);
      font-size: 15px;
      margin-bottom: 2px;
    }

    .contact-form {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 48px 44px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--white);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      outline: none;
      cursor: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(168, 255, 62, 0.1);
    }

    .form-group select option {
      background: var(--bg-3);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      width: 100%;
      justify-content: center;
      padding: 18px;
      font-size: 16px;
      margin-top: 8px;
    }

    .form-note {
      text-align: center;
      font-size: 13px;
      color: var(--muted);
      margin-top: 16px;
    }

    .form-note a {
      color: var(--lime);
      text-decoration: none;
    }

    /* ============================================
       HERO CTA NOTE
    ============================================ */
    .hero-cta-note {
      font-size: 13px;
      color: var(--muted);
      margin-top: 12px;
      letter-spacing: 0.02em;
    }

    /* ============================================
       CALENDLY EMBED
    ============================================ */
    .calendly-wrapper {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      padding: 8px;
    }

    /* Override Calendly iframe background to match dark theme */
    .calendly-inline-widget iframe {
      border-radius: 12px;
    }

    /* ============================================
       STICKY MOBILE BOOK BUTTON
    ============================================ */
    .sticky-book-btn {
      display: none; /* hidden on desktop */
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      background: var(--lime);
      color: #000;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.04em;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 4px 24px rgba(168,255,62,0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .sticky-book-btn:hover {
      transform: translateX(-50%) scale(1.04);
      box-shadow: 0 6px 32px rgba(168,255,62,0.5);
    }

    /* ============================================
       SCROLL ANIMATIONS
    ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .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; }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-card.featured { transform: none; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    /* ============================================
       TABLET  (≤ 1024px)
    ============================================ */
    @media (max-width: 1024px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .solution-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .steps::before { display: none; }
      .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    }

    /* ============================================
       MOBILE  (≤ 768px)
    ============================================ */
    @media (max-width: 768px) {

      /* ----- Global ----- */
      html, body { overflow-x: hidden; max-width: 100vw; cursor: auto; }
      #cursor, #cursor-ring { display: none !important; }
      .btn { cursor: pointer; }
      .section { padding: 64px 0; }
      .section-sm { padding: 48px 0; }
      .container { padding: 0 20px; }

      /* Reduce particle density on mobile for performance */
      #page-canvas { opacity: 0.6; }

      /* ----- Sticky Book Button (mobile only) ----- */
      .sticky-book-btn { display: block; }
      body { padding-bottom: 80px; } /* prevent footer overlap */

      /* ----- Typography ----- */
      h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); line-height: 1.08; }
      h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1.1; }
      h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }
      p  { font-size: 0.97rem; line-height: 1.7; }

      /* ----- Navigation ----- */
      .nav-links { display: none; }
      .nav-cta .btn-outline { display: none; }
      .nav-cta .btn-primary { padding: 10px 18px; font-size: 13px; }
      .hamburger { display: flex; }
      nav { height: 64px; }

      /* ----- Hero ----- */
      #home { padding-top: 88px; min-height: 100svh; align-items: flex-start; padding-bottom: 40px; }
      .hero-content { max-width: 100%; }
      .hero-eyebrow { margin-bottom: 20px; }
      .hero-eyebrow-text { font-size: 10px; }
      .hero-title { margin-bottom: 20px; }
      .hero-sub { font-size: 1rem; margin-bottom: 32px; max-width: 100%; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
      .hero-actions .btn { width: 100%; text-align: center; justify-content: center; padding: 16px 20px; font-size: 15px; }
      .hero-proof { flex-wrap: wrap; gap: 16px 24px; margin-top: 48px; padding-top: 28px; }
      .hero-proof-divider { display: none; }
      .hero-proof-num { font-size: 1.5rem; }
      .hero-proof-label { font-size: 10px; }
      .scroll-indicator { display: none; }

      /* ----- Marquee ----- */
      .marquee-strip { padding: 14px 0; }
      .marquee-item { font-size: 11px; padding: 0 16px; }
      .marquee-track { animation-duration: 18s; }

      /* ----- Problem section ----- */
      .problem-grid { grid-template-columns: 1fr; gap: 16px; }
      .problem-card { padding: 24px 20px; }
      .problem-intro { margin-bottom: 40px; }

      /* ----- Solution / Method ----- */
      .solution-grid { grid-template-columns: 1fr; gap: 16px; }
      .solution-card { padding: 28px 20px; }
      .engine-flow { flex-direction: column; align-items: center; gap: 8px; }
      .engine-arrow { transform: rotate(90deg); }
      .engine-box { padding: 12px 16px; font-size: 13px; }

      /* ----- Steps / How it works ----- */
      .steps { grid-template-columns: 1fr; gap: 20px; }
      .step { padding: 28px 20px; }
      .step-num { font-size: 2.5rem; }

      /* ----- Services ----- */
      .services-grid { grid-template-columns: 1fr; gap: 20px; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }
      .service-card { padding: 28px 20px; }

      /* ----- Stats bar ----- */
      .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1px; }
      .stat-item { padding: 24px 16px; }
      .stat-num { font-size: 2rem; }

      /* ----- CTA section ----- */
      .cta-inner { padding: 48px 20px; border-radius: 16px; }
      .cta-inner h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
      .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
      .cta-actions .btn { width: 100%; justify-content: center; }

      /* ----- Pricing page ----- */
      #pricing-page { padding-top: 88px; }
      .pricing-hero { text-align: center; padding: 0 4px; }
      .pricing-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
      .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
      .pricing-card { padding: 28px 20px; }
      .pricing-card.featured { transform: none; border-width: 2px; }
      .pricing-price { font-size: 2.4rem; }
      .pricing-period { font-size: 1rem; }
      .pricing-cta { width: 100%; text-align: center; justify-content: center; }
      .faq-item { padding: 20px 0; }
      .faq-question { font-size: 0.97rem; }

      /* ----- Contact page ----- */
      #contact-page { padding-top: 88px; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-left h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
      .contact-left p { font-size: 0.97rem; }
      .contact-info-item { gap: 12px; }
      .contact-info-icon { width: 40px; height: 40px; font-size: 16px; flex-shrink: 0; }
      .form-row { grid-template-columns: 1fr; gap: 16px; }
      .form-group { margin-bottom: 16px; }
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 16px; padding: 14px 16px; } /* 16px prevents iOS zoom */
      .form-group textarea { min-height: 120px; }
      .contact-form .btn { width: 100%; justify-content: center; padding: 18px; font-size: 15px; }

      /* ----- Footer ----- */
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .footer-logo { font-size: 1.4rem; }

      /* ----- Buttons global ----- */
      .btn { padding: 14px 22px; font-size: 14px; }
      .btn-arrow::after { display: none; }
    }

    /* ============================================
       SMALL PHONES  (≤ 430px — iPhone SE / 12 mini)
    ============================================ */
    @media (max-width: 430px) {
      .container { padding: 0 16px; }
      h1 { font-size: clamp(2.1rem, 9.5vw, 2.8rem); }
      h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
      .hero-proof { gap: 12px 20px; }
      .hero-proof-num { font-size: 1.3rem; }
      .pricing-price { font-size: 2rem; }
      .cta-inner { padding: 36px 16px; }
      .stats-bar { grid-template-columns: 1fr 1fr; }
      .stat-num { font-size: 1.8rem; }
      .marquee-item { font-size: 10px; }
    }

    /* ============================================
       VERY SMALL  (≤ 360px — Galaxy S, older iPhones)
    ============================================ */
    @media (max-width: 360px) {
      .container { padding: 0 14px; }
      h1 { font-size: clamp(1.9rem, 10vw, 2.4rem); }
      .hero-actions .btn { font-size: 13px; padding: 14px 16px; }
      .pricing-price { font-size: 1.8rem; }
    }
