    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --off-black: #111111;
      --dark: #1a1a1a;
      --mid: #2a2a2a;
      --border: #2e2e2e;
      --muted: #888888;
      --text: #e8e8e8;
      --white: #ffffff;
      --accent: #e8ff5a;
      --accent-hover: #d4eb48;
      --sans: 'Inter', system-ui, -apple-system, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--sans);
      background: var(--black);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }

    /* Accessible focus ring — visible for keyboard users, quiet for mouse */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* Skip link for keyboard / screen-reader users */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 300;
      background: var(--accent);
      color: var(--black);
      padding: 0.6rem 1rem;
      border-radius: 0 0 var(--radius-sm) 0;
      font-size: 0.875rem;
      font-weight: 600;
    }
    .skip-link:focus { left: 0; }

    /* ── SCROLL REVEAL ──
       Only hidden when JS is confirmed active (html.js). Without JS, or with
       reduced-motion preference, content is always visible — never trapped at opacity:0. */
    .js .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .js .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .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; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
      *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 68px;
      background: rgba(10,10,10,0.9);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      transition: border-color 0.3s;
    }

    .nav-logo {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--white);
    }
    .nav-logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.875rem;
      color: var(--muted);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--white); }
    .nav-links a.active::after {
      content: '';
      display: block;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      margin-top: 4px;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.6rem 1.25rem;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      font-family: var(--sans);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--black);
    }
    .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,255,90,0.25); }

    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { color: var(--white); border-color: #555; }

    .btn-lg {
      padding: 0.85rem 1.75rem;
      font-size: 1rem;
      border-radius: var(--radius);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.2s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: var(--off-black);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 5%;
      z-index: 99;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
    .mobile-menu ul a { font-size: 1rem; color: var(--muted); }

    /* ── STICKY CTA ── */
    .sticky-cta {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 90;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }
    .sticky-cta.visible {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }
    .sticky-cta .btn {
      box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,255,90,0.2);
    }

    /* ── SECTIONS ── */
    section { padding: 7rem 5%; }
    .container { max-width: 1100px; margin: 0 auto; }
    .container-sm { max-width: 680px; margin: 0 auto; }

    /* ── HERO ── */
    #hero {
      padding-top: 10rem;
      padding-bottom: 7rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(232,255,90,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(232,255,90,0.08);
      border: 1px solid rgba(232,255,90,0.25);
      border-radius: 100px;
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
      color: var(--accent);
      margin-bottom: 2rem;
      font-weight: 500;
    }

    .hero-badge::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.04em;
      color: var(--white);
      max-width: 820px;
      margin: 0 auto 1.5rem;
    }

    h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 4rem;
    }

    /* ── HERO PRODUCT VISUAL ──
       Gives the page an "above-the-fold" product shot like Linear/Vercel/Stripe,
       instead of a text-only hero. Pure CSS mock — no image weight. */
    .hero-visual {
      max-width: 940px;
      margin: 4.5rem auto 0;
      position: relative;
    }
    .js .hero-visual { animation: heroFloat 7s ease-in-out infinite; }

    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .browser-frame {
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--off-black);
      overflow: hidden;
      box-shadow: 0 40px 120px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02);
    }
    .browser-bar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      border-bottom: 1px solid var(--border);
      background: var(--dark);
    }
    .browser-dots { display: flex; gap: 0.4rem; }
    .browser-dots span {
      width: 11px; height: 11px; border-radius: 50%;
      background: #3a3a3a;
    }
    .browser-url {
      flex: 1;
      margin-left: 0.75rem;
      background: var(--black);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 0.72rem;
      color: var(--muted);
      padding: 0.3rem 0.85rem;
      text-align: center;
      max-width: 260px;
    }
    .browser-url::before { content: '🔒 '; opacity: 0.6; }

    .browser-body {
      padding: 2.75rem 2rem 3rem;
      background:
        radial-gradient(circle at 70% 0%, rgba(232,255,90,0.06) 0%, transparent 45%),
        var(--off-black);
      text-align: center;
      position: relative;
    }
    .bp-badge {
      display: inline-block;
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(232,255,90,0.25);
      border-radius: 100px;
      padding: 0.2rem 0.6rem;
      margin-bottom: 1.1rem;
    }
    .bp-line { height: 13px; border-radius: 4px; background: #3a3a3a; margin: 0 auto 0.6rem; }
    .bp-line.lg { height: 20px; background: #4a4a4a; width: 62%; }
    .bp-line.lg2 { height: 20px; background: #4a4a4a; width: 48%; }
    .bp-line.sm { height: 9px; width: 40%; background: #313131; }
    .bp-cta {
      height: 30px; width: 130px; border-radius: 7px;
      background: var(--accent); margin: 1.3rem auto 0;
    }
    .bp-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem; margin-top: 2.25rem;
    }
    .bp-card { height: 64px; border-radius: 8px; background: var(--dark); border: 1px solid var(--border); }

    /* Floating stat chip overlapping the mock — signals the outcome we sell */
    .hero-stat-chip {
      position: absolute;
      right: -14px;
      top: 30%;
      background: var(--black);
      border: 1px solid rgba(232,255,90,0.3);
      border-radius: var(--radius);
      padding: 0.85rem 1.1rem;
      box-shadow: 0 18px 40px -12px rgba(0,0,0,0.7);
      text-align: left;
    }
    .hero-stat-chip .stat-big { font-size: 1.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
    .hero-stat-chip .stat-cap { font-size: 0.68rem; color: var(--muted); margin-top: 0.25rem; }

    /* ── LOGO BAR ── */
    #logos {
      padding: 4rem 5%;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .logos-label {
      text-align: center;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .logos-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 3rem;
    }

    .logo-item {
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #7a7a7a; /* AA-compliant (~4.6:1 on --black); still visually quiet */
      transition: color 0.2s;
      white-space: nowrap;
    }
    .logo-item:hover { color: var(--text); }

    /* ── SECTION HEADERS ── */
    .section-label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--white);
      line-height: 1.1;
    }

    .section-intro {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 1rem;
    }

    /* ── VALUE PROPS ── */
    #value .container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

    .value-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }

    .value-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .value-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
      border-radius: var(--radius-sm);
      background: rgba(232,255,90,0.07);
      border: 1px solid rgba(232,255,90,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .value-item h3 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.25rem;
    }

    .value-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

    .value-right {
      background: var(--off-black);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      position: sticky;
      top: 90px;
    }

    .contrast-table { width: 100%; }
    .contrast-table th {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0 0 0.75rem;
      text-align: left;
    }
    .contrast-table th:last-child { text-align: right; }
    .contrast-table th.bad { color: #f87171; }
    .contrast-table th.good { color: var(--accent); }
    .contrast-table td {
      padding: 0.75rem 0;
      font-size: 0.875rem;
      border-top: 1px solid var(--border);
      vertical-align: top;
    }
    .contrast-table td:first-child { color: var(--muted); }
    .contrast-table td:last-child { text-align: right; color: var(--text); }
    .check { color: var(--accent); font-weight: 700; }
    .cross { color: #f87171; }

    /* ── PROCESS ── */
    #process { background: var(--off-black); }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }

    .process-step {
      padding: 2rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--black);
      position: relative;
      transition: border-color 0.25s;
    }
    .process-step:hover { border-color: rgba(232,255,90,0.3); }

    .step-num {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--accent);
      opacity: 0.7;
      margin-bottom: 1.25rem;
    }

    .process-step h3 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.6rem;
    }

    .process-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

    /* ── SERVICES ── */
    #services .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
    }

    .service-card {
      background: var(--off-black);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      transition: border-color 0.25s, transform 0.25s;
    }
    .service-card:hover { border-color: rgba(232,255,90,0.25); transform: translateY(-2px); }

    .service-icon {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }

    .service-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(232,255,90,0.08);
      border: 1px solid rgba(232,255,90,0.15);
      border-radius: 4px;
      padding: 0.2rem 0.5rem;
    }

    /* ── CASE STUDIES ── */
    #work { background: var(--off-black); }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .work-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
      background: var(--black);
    }
    .work-card:hover { border-color: rgba(232,255,90,0.3); transform: translateY(-3px); }

    .work-preview {
      aspect-ratio: 16/9;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .work-preview-inner {
      width: 85%;
      background: var(--mid);
      border-radius: 6px;
      padding: 12px;
    }

    .mock-nav { height: 6px; background: #333; border-radius: 3px; margin-bottom: 8px; }
    .mock-hero-text { height: 8px; background: #444; border-radius: 3px; width: 60%; margin-bottom: 5px; }
    .mock-hero-sub { height: 5px; background: #3a3a3a; border-radius: 3px; width: 40%; margin-bottom: 10px; }
    .mock-btn { height: 8px; width: 20%; background: rgba(232,255,90,0.4); border-radius: 3px; }
    .mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; margin-top: 10px; }
    .mock-card { height: 30px; background: #2a2a2a; border-radius: 3px; }

    .work-card-body { padding: 1.5rem; }
    .work-card-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.3rem; }
    .work-card-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }

    .work-result {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(232,255,90,0.07);
      border: 1px solid rgba(232,255,90,0.15);
      border-radius: var(--radius-sm);
      padding: 0.4rem 0.75rem;
      font-size: 0.82rem;
      color: var(--accent);
      font-weight: 500;
    }

    .work-card.featured { grid-column: span 2; }
    .work-card.featured .work-preview { aspect-ratio: 21/9; }

    /* ── PRICING ── */
    #pricing { background: var(--off-black); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--black);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
      transition: border-color 0.25s;
    }
    .pricing-card:hover { border-color: rgba(232,255,90,0.25); }

    .pricing-card.featured {
      border-color: rgba(232,255,90,0.4);
      background: linear-gradient(160deg, rgba(232,255,90,0.04) 0%, transparent 60%);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: var(--black);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-tier {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .pricing-price {
      font-size: 2.75rem;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .pricing-price sup {
      font-size: 1.25rem;
      font-weight: 600;
      vertical-align: top;
      margin-top: 0.5rem;
      display: inline-block;
    }

    .pricing-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin: 1.5rem 0;
    }

    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

    .pricing-features li {
      font-size: 0.875rem;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      line-height: 1.5;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 0.05em;
    }

    .pricing-note {
      text-align: center;
      margin-top: 2.5rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .pricing-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

    /* ── FAQ ── */
    .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }

    .faq-item { border-top: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      font-family: var(--sans);
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--white);
    }

    .faq-q:hover { color: var(--accent); }

    .faq-icon {
      font-size: 1.1rem;
      color: var(--muted);
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }

    .faq-a {
      display: none;
      padding: 0 0 1.25rem;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 640px;
    }
    .faq-item.open .faq-a { display: block; }

    /* ── FINAL CTA ── */
    #cta {
      background: var(--off-black);
      text-align: center;
    }

    .cta-box {
      background: linear-gradient(135deg, rgba(232,255,90,0.06) 0%, rgba(232,255,90,0.02) 100%);
      border: 1px solid rgba(232,255,90,0.2);
      border-radius: 20px;
      padding: 5rem 3rem;
    }

    .cta-box h2 { max-width: 580px; margin: 1rem auto; }
    .cta-box .section-intro { max-width: 440px; margin: 1rem auto 2.5rem; }
    .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .cta-guarantee {
      margin-top: 1.5rem;
      font-size: 0.82rem;
      color: var(--muted);
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 3rem 5%;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-brand { font-size: 0.95rem; font-weight: 600; color: var(--white); }
    .footer-brand span { color: var(--accent); }

    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    .footer-copy { font-size: 0.8rem; color: #7a7a7a; } /* AA-compliant (~4.6:1 on --black) */

    /* ── CONTACT MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      z-index: 200;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
    }
    .modal-overlay.open { display: flex; }

    .modal {
      background: var(--off-black);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
      width: 100%;
      max-width: 480px;
      margin: 1rem;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.25rem;
      cursor: pointer;
      line-height: 1;
    }
    .modal-close:hover { color: var(--white); }

    .modal h3 { font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
    .modal p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.75rem; }

    .form-group { margin-bottom: 1.1rem; }
    .form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 0.7rem 0.9rem;
      font-family: var(--sans);
      font-size: 0.9rem;
      color: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--accent); }

    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-group select { appearance: none; }

    .form-success {
      display: none;
      text-align: center;
      padding: 1rem 0;
    }
    .form-success .success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
    .form-success h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
    .form-success p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; }

    /* Form validation + async states */
    .form-group input:user-invalid,
    .form-group input.invalid { border-color: #f87171; }
    .field-error {
      display: none;
      font-size: 0.75rem;
      color: #f87171;
      margin-top: 0.35rem;
    }
    .field-error.show { display: block; }
    .form-error-banner {
      display: none;
      background: rgba(248,113,113,0.08);
      border: 1px solid rgba(248,113,113,0.3);
      color: #f87171;
      border-radius: var(--radius-sm);
      padding: 0.7rem 0.9rem;
      font-size: 0.82rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }
    .form-error-banner.show { display: block; }
    .form-error-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
    .btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

    /* Micro-copy under CTAs — reduces perceived commitment */
    .cta-microcopy {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 0.9rem;
    }
    .cta-microcopy span { color: var(--accent); }

    /* ── OFFER CARDS (the two quick starts) ── */
    .offer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
      align-items: stretch;
    }
    .offer-card {
      background: var(--off-black);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.25rem;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s, transform 0.25s;
    }
    .offer-card:hover { border-color: rgba(232,255,90,0.3); transform: translateY(-2px); }
    .offer-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }
    .offer-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 0.6rem;
    }
    .offer-lead { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
    .offer-subhead {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
      margin: 0.5rem 0 0.75rem;
    }
    .offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
    .offer-list li {
      font-size: 0.875rem;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      line-height: 1.5;
    }
    .offer-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 0.05em; }
    .offer-outcome {
      background: rgba(232,255,90,0.06);
      border: 1px solid rgba(232,255,90,0.15);
      border-radius: var(--radius-sm);
      padding: 0.9rem 1rem;
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.55;
      margin-bottom: 1.25rem;
    }
    .offer-outcome strong { color: var(--accent); font-weight: 600; }
    .offer-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
      padding: 1rem 0 1.25rem;
      border-top: 1px solid var(--border);
      margin-top: auto;
    }
    .offer-meta div { font-size: 0.8rem; color: var(--muted); }
    .offer-meta strong { display: block; color: var(--white); font-size: 0.95rem; font-weight: 600; margin-top: 0.1rem; }
    .offer-card .btn { width: 100%; }

    .offer-nudge { text-align: center; margin-top: 2.5rem; font-size: 0.9rem; color: var(--muted); }
    .offer-nudge a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

    /* Illustrative-scenario badge (honest labelling — not a real client result) */
    .illustrative-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      border: 1px dashed var(--border);
      border-radius: 4px;
      padding: 0.2rem 0.5rem;
    }

    /* ── PRICING MODEL BAND ── */
    .pm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
    .pm-card {
      background: var(--black);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
    }
    .pm-card .pm-icon { font-size: 1.4rem; margin-bottom: 0.85rem; }
    .pm-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
    .pm-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .offer-grid { grid-template-columns: 1fr; }
      .pm-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-cta .btn { display: none; }
      .hamburger { display: flex; }

      #value .container { grid-template-columns: 1fr; gap: 3rem; }
      .value-right { position: static; }

      .process-steps { grid-template-columns: 1fr; }

      #services .services-grid { grid-template-columns: 1fr; }

      .work-grid { grid-template-columns: 1fr; }
      .work-card.featured { grid-column: span 1; }
      .work-card.featured .work-preview { aspect-ratio: 16/9; }



      .pricing-grid { grid-template-columns: 1fr; }

      .cta-box { padding: 3rem 1.5rem; }

      .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .footer-links { flex-wrap: wrap; gap: 1rem; }

      .sticky-cta { bottom: 1rem; right: 1rem; }

      .hero-visual { margin-top: 3.5rem; }
      .hero-stat-chip { right: 8px; top: auto; bottom: -18px; padding: 0.6rem 0.85rem; }
      .hero-stat-chip .stat-big { font-size: 1.15rem; }
      .browser-body { padding: 2rem 1.25rem 2.25rem; }
      .bp-grid { gap: 0.5rem; }
    }

/* ── DETAIL PAGE (Claude / Salesforce) ── */
.detail-hero { padding-top: 10rem; padding-bottom: 5rem; text-align: center; position: relative; overflow: hidden; }
.detail-hero::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,255,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.detail-hero h1 { max-width: 780px; }
.price-line {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  margin: 0.5rem auto 2rem; font-size: 1.05rem; color: var(--muted);
}
.price-line strong { font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.price-line .price-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); background: rgba(232,255,90,0.08);
  border: 1px solid rgba(232,255,90,0.2); border-radius: 100px; padding: 0.25rem 0.7rem;
  align-self: center;
}

/* Two-column "what we build / what you own" spec block */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3.5rem; margin-top: 3.5rem; }
.spec-col h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.spec-col .offer-list { margin-bottom: 0; }

/* "Best for / not for" honesty band */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.fit-card {
  background: var(--black); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.fit-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; color: var(--white); }
.fit-card.good h3 { color: var(--accent); }
.fit-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.fit-card li { font-size: 0.875rem; color: var(--muted); display: flex; gap: 0.6rem; line-height: 1.5; align-items: flex-start; }
.fit-card.good li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.fit-card.bad li::before { content: '→'; color: var(--muted); flex-shrink: 0; }

@media (max-width: 900px) {
  .spec-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fit-grid { grid-template-columns: 1fr; }
}
