 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:        #020b1a;
      --navy-mid:    #051228;
      --navy-card:   #071730;
      --navy-border: #0d2545;
      --blue-bright: #0ea5e9;
      --cyan:        #06b6d4;
      --muted:       #94a3b8;
      --gold:        #f59e0b;
      --green:       #10b981;
      --purple:      #7c3aed;
      --font: 'Montserrat', sans-serif;

      /* ── Jobs brand: emerald green ── */
      --brand:       #10b981;
      --brand-dark:  #059669;
      --brand-light: #34d399;
      --brand-glow:  rgba(16,185,129,0.15);
      --brand-dim:   rgba(16,185,129,0.08);
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font); background: #fff; color: #1e293b; line-height: 1.6; overflow-x: hidden; }

    /* ══ HEADER ══ */
    header { background: var(--navy); position: sticky; top: 0; z-index: 200; border-bottom: 1px solid var(--navy-border); }
    .header-inner { max-width: 1320px; margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
    .logo-mark { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
    .logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg, var(--blue-bright), var(--cyan)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #fff; }
    .logo-text { font-weight: 700; font-size: 1.05rem; color: #fff; }
    .logo-text span { color: var(--blue-bright); }
    nav { display: flex; align-items: center; gap: .15rem; }
    nav a { color: #94a3b8; text-decoration: none; font-size: .83rem; font-weight: 500; padding: .4rem .8rem; border-radius: 6px; transition: all .2s; }
    nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
    .header-cta { display: flex; gap: .75rem; flex-shrink: 0; }
    .btn { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1.25rem; border-radius: 8px; font-family: var(--font); font-size: .83rem; font-weight: 600; text-decoration: none; transition: all .2s; cursor: pointer; border: none; }
    .btn-primary { background: var(--blue-bright); color: #fff; }
    .btn-primary:hover { background: #38bdf8; transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: #94a3b8; border: 1px solid var(--navy-border); }
    .btn-ghost:hover { color: #fff; border-color: #1e3a5f; background: rgba(255,255,255,.04); }
    .btn-lg { padding: .75rem 2rem; font-size: .95rem; border-radius: 10px; }
    .btn-xl { padding: .9rem 2.5rem; font-size: 1rem; border-radius: 10px; }
    .btn-brand { background: var(--brand); color: #fff; }
    .btn-brand:hover { background: var(--brand-light); transform: translateY(-1px); }
    .btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
    .btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
    .btn-outline-brand { background: transparent; color: var(--brand); border: 1.5px solid rgba(16,185,129,.35); }
    .btn-outline-brand:hover { background: var(--brand-dim); border-color: var(--brand); }

    /* ══ BREADCRUMB ══ */
    .breadcrumb-bar { background: var(--navy-mid); border-bottom: 1px solid var(--navy-border); padding: .65rem 0; }
    .breadcrumb { max-width: 1320px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 500; color: #334155; }
    .breadcrumb a { color: var(--blue-bright); text-decoration: none; }
    .bc-sep { color: #1e3a5f; }

    /* ══════════════════════════════════════════
       HERO VARIANT 3 — DIAGONAL SPLIT
       Left: dark navy content panel
       Right: emerald-tinted visual panel
       Diagonal divider between them
    ══════════════════════════════════════════ */
    .hero-v3 {
      background: var(--navy);
      position: relative; overflow: hidden;
      min-height: 600px;
      display: flex; align-items: stretch;
    }

    /* Right panel emerald wash */
    .hero-v3::after {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 52%;
      height: 100%;
      background: linear-gradient(135deg,
        #020b1a 0%,
        #031a12 30%,
        #04261a 60%,
        #052e1f 100%);
      clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 0;
    }

    /* Emerald glow on right */
    .hero-v3-glow {
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(ellipse, rgba(16,185,129,.18) 0%, transparent 60%);
      pointer-events: none; z-index: 1;
    }

    /* Faint circuit/grid on left */
    .hero-v3-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(16,185,129,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,.03) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 0;
    }

    .hero-v3-inner {
      max-width: 1320px; margin: 0 auto; padding: 5rem 2rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: center; position: relative; z-index: 2; width: 100%;
    }

    /* Left content */
    .hero-v3-left {}

    .hero-v3-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.22);
      border-radius: 100px; padding: .32rem .9rem .32rem .5rem;
      font-size: .72rem; font-weight: 600; color: var(--brand);
      margin-bottom: 1.5rem;
    }
    .badge-dot { width: 22px; height: 22px; background: rgba(16,185,129,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }

    .hero-v3 h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 900; letter-spacing: -2px; line-height: 1.05; color: #fff;
      margin-bottom: 1.25rem;
    }
    .hero-v3 h1 .grad {
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-v3-product { font-size: .82rem; font-weight: 600; color: #334155; font-family: 'Courier New', monospace; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
    .hero-v3-product::before { content: '→'; color: var(--brand); }

    .hero-v3 p { color: #64748b; font-size: .93rem; line-height: 1.75; margin-bottom: 2rem; max-width: 480px; font-weight: 400; }
    .hero-v3-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

    /* Who it's for tags */
    .audience-row { display: flex; gap: .5rem; flex-wrap: wrap; }
    .audience-tag { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.04); border: 1px solid var(--navy-border); border-radius: 8px; padding: .4rem .85rem; font-size: .75rem; font-weight: 600; color: #94a3b8; }
    .at-icon { font-size: .9rem; }

    /* Stack chips row */
    .v3-stacks { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2rem; }
    .stack-pip { display: flex; align-items: center; gap: .3rem; background: var(--navy-card); border: 1px solid var(--navy-border); color: #64748b; font-size: .68rem; font-weight: 600; padding: .25rem .65rem; border-radius: 5px; font-family: 'Courier New', monospace; }
    .scd { width: 6px; height: 6px; border-radius: 2px; flex-shrink: 0; }

    /* Right: ATS pipeline visual */
    .hero-v3-right { position: relative; }

    .ats-panel {
      background: rgba(4,22,14,.7);
      border: 1px solid rgba(16,185,129,.2);
      border-radius: 16px; overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .ats-topbar { background: rgba(0,0,0,.3); padding: .65rem 1rem; display: flex; align-items: center; gap: .45rem; border-bottom: 1px solid rgba(16,185,129,.1); }
    .ats-dot { width: 9px; height: 9px; border-radius: 50%; }
    .ats-title { font-size: .68rem; color: #334155; font-family: 'Courier New', monospace; margin-left: .5rem; }
    .ats-body { padding: 1.25rem; }

    /* Job cards in panel */
    .job-cards { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.25rem; }
    .job-card { background: rgba(255,255,255,.03); border: 1px solid rgba(16,185,129,.1); border-radius: 10px; padding: .75rem 1rem; display: flex; align-items: center; gap: .85rem; }
    .jc-logo { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
    .jc-info { flex: 1; }
    .jc-title { font-size: .78rem; font-weight: 700; color: #fff; margin-bottom: .1rem; }
    .jc-meta { font-size: .65rem; color: #475569; }
    .jc-status { font-size: .65rem; font-weight: 700; padding: .2rem .55rem; border-radius: 5px; white-space: nowrap; }
    .status-new { background: rgba(16,185,129,.15); color: var(--brand); }
    .status-review { background: rgba(245,158,11,.15); color: #f59e0b; }
    .status-interview { background: rgba(14,165,233,.15); color: #38bdf8; }
    .status-offer { background: rgba(124,58,237,.15); color: #a78bfa; }

    /* Pipeline stages */
    .pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
    .pipeline-stage { background: rgba(255,255,255,.03); border: 1px solid rgba(16,185,129,.08); border-radius: 9px; padding: .6rem .5rem; text-align: center; }
    .ps-label { font-size: .6rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .4rem; }
    .ps-count { font-size: 1.2rem; font-weight: 900; color: #fff; line-height: 1; }
    .ps-sub { font-size: .58rem; color: #334155; margin-top: .1rem; }

    /* ══ STICKY NAV ══ */
    .sticky-nav { background: #fff; border-bottom: 1px solid #e2e8f0; position: sticky; top: 68px; z-index: 100; }
    .sticky-nav-inner { max-width: 1320px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; overflow-x: auto; }
    .sticky-nav a { color: #64748b; text-decoration: none; font-size: .8rem; font-weight: 600; padding: .9rem 1.1rem; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .2s; }
    .sticky-nav a:hover { color: var(--brand); }
    .sticky-nav a.active { color: var(--brand); border-bottom-color: var(--brand); }
    .sticky-nav-cta { margin-left: auto; flex-shrink: 0; padding: .6rem 0 .6rem 1.5rem; border-left: 1px solid #e2e8f0; }

    /* ══ SECTIONS ══ */
    .pg-section { padding: 4.5rem 0; }
    .pg-section-alt { background: #f8fafc; }
    .pg-section-dark { background: var(--navy); }
    .pg-section-mid { background: var(--navy-mid); }
    .container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
    .section-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brand); margin-bottom: .65rem; }
    .section-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--brand); border-radius: 2px; }
    .section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #0f172a; letter-spacing: -1px; line-height: 1.15; margin-bottom: .75rem; }
    .section-title-light { color: #fff; }
    .section-sub { font-size: .93rem; color: #64748b; line-height: 1.7; max-width: 600px; font-weight: 400; }
    .section-sub-light { color: #475569; }

    /* ══ OVERVIEW ══ */
    .overview-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; margin-top: 2.5rem; }
    .overview-text p { font-size: .9rem; color: #475569; line-height: 1.8; margin-bottom: 1rem; font-weight: 400; }
    .key-benefits { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
    .benefit-row { display: flex; align-items: flex-start; gap: .75rem; background: #f8fafc; border: 1px solid #e2e8f0; border-left: 3px solid var(--brand); border-radius: 10px; padding: .9rem 1rem; }
    .benefit-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
    .benefit-text strong { display: block; font-size: .83rem; font-weight: 700; color: #0f172a; margin-bottom: .1rem; }
    .benefit-text span { font-size: .78rem; color: #64748b; }

    /* Audience panels right */
    .audience-panels { display: flex; flex-direction: column; gap: 1rem; }
    .audience-panel { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1.25rem 1.5rem; transition: all .2s; }
    .audience-panel:hover { border-color: rgba(16,185,129,.3); box-shadow: 0 4px 20px rgba(16,185,129,.07); }
    .ap-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
    .ap-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .ap-title { font-size: .92rem; font-weight: 800; color: #0f172a; }
    .ap-subtitle { font-size: .72rem; color: #94a3b8; }
    .ap-features { display: flex; flex-direction: column; gap: .3rem; }
    .ap-feature { font-size: .75rem; color: #64748b; display: flex; align-items: flex-start; gap: .4rem; }
    .ap-feature::before { content: '✓'; color: var(--brand); font-size: .7rem; flex-shrink: 0; margin-top: .1rem; }

    /* ══ FEATURES ══ */
    .features-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap; }
    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .feature-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1.5rem; transition: all .2s; }
    .feature-card:hover { border-color: rgba(16,185,129,.3); box-shadow: 0 6px 24px rgba(16,185,129,.07); transform: translateY(-2px); }
    .fc-icon { font-size: 1.4rem; margin-bottom: .75rem; display: block; }
    .fc-title { font-size: .88rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
    .fc-desc { font-size: .78rem; color: #64748b; line-height: 1.6; }

    /* ══ ATS PIPELINE SECTION ══ */
    .pipeline-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .pipeline-visual { background: var(--navy-mid); border: 1px solid var(--navy-border); border-radius: 18px; padding: 2rem; }
    .pipeline-stages-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-bottom: 2rem; }
    .pipeline-stages-full::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--brand), rgba(16,185,129,.2)); z-index: 0; }
    .ps-full { text-align: center; position: relative; z-index: 1; padding: 0 .5rem; }
    .ps-bubble { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; font-size: 1.2rem; border: 2px solid; }
    .ps-full-label { font-size: .72rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .8px; margin-bottom: .25rem; }
    .ps-full-count { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -1px; }

    /* Candidate cards in pipeline */
    .candidates-row { display: flex; flex-direction: column; gap: .6rem; }
    .cand-card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 10px; padding: .75rem 1rem; display: flex; align-items: center; gap: .75rem; }
    .cand-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
    .cand-info { flex: 1; }
    .cand-name { font-size: .78rem; font-weight: 700; color: #fff; margin-bottom: .1rem; }
    .cand-role { font-size: .65rem; color: #475569; }
    .cand-score { font-size: .68rem; font-weight: 700; }
    .score-high { color: var(--brand); }
    .score-mid { color: #f59e0b; }

    /* ══ ARCHITECTURE ══ */
    .arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .arch-layers { display: flex; flex-direction: column; gap: .65rem; }
    .arch-layer { display: flex; align-items: center; gap: 1rem; background: var(--navy-card); border: 1px solid var(--navy-border); border-left: 3px solid transparent; border-radius: 10px; padding: .9rem 1.25rem; transition: all .2s; }
    .arch-layer:hover { border-left-color: var(--brand); }
    .layer-num { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; flex-shrink: 0; }
    .layer-name { font-size: .82rem; font-weight: 700; color: #fff; width: 150px; flex-shrink: 0; }
    .layer-desc { font-size: .75rem; color: #475569; line-height: 1.5; }
    .arch-diagram { background: #0d1117; border: 1px solid #1e2d40; border-radius: 16px; overflow: hidden; }
    .arch-diag-header { background: #161b22; padding: .65rem 1.25rem; border-bottom: 1px solid #1e2d40; display: flex; align-items: center; gap: .4rem; }
    .diag-dot { width: 9px; height: 9px; border-radius: 50%; }
    .diag-title { font-size: .7rem; color: #6b7280; font-family: 'Courier New', monospace; margin-left: .5rem; }
    .arch-diag-body { padding: 1.5rem; font-family: 'Courier New', monospace; font-size: .76rem; line-height: 1.8; }
    .diag-layer { display: flex; align-items: center; gap: .75rem; padding: .5rem .6rem; border-radius: 7px; transition: background .2s; }
    .diag-layer:hover { background: rgba(255,255,255,.03); }
    .diag-layer-num { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 800; flex-shrink: 0; }
    .diag-connector { width: 1px; height: 18px; background: #1e2d40; margin-left: 22px; }

    /* ══ STACKS ══ */
    .stacks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
    .stack-card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 14px; padding: 1.5rem; transition: all .25s; }
    .stack-card:hover { border-color: rgba(16,185,129,.3); transform: translateY(-2px); }
    .sc-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
    .sc-icon { font-size: 1.5rem; }
    .sc-name { font-size: .9rem; font-weight: 800; color: #fff; }
    .sc-version { font-size: .68rem; color: #475569; font-family: 'Courier New', monospace; }
    .sc-features { display: flex; flex-direction: column; gap: .35rem; }
    .sc-feature { font-size: .75rem; color: #475569; display: flex; align-items: flex-start; gap: .4rem; }
    .sc-feature::before { content: '→'; color: var(--brand); font-size: .65rem; flex-shrink: 0; margin-top: .15rem; }

    /* ══ MODULES ══ */
    .modules-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2rem; }
    .mod-tab { background: #f8fafc; border: 1px solid #e2e8f0; color: #64748b; font-size: .78rem; font-weight: 600; padding: .45rem 1rem; border-radius: 8px; cursor: pointer; transition: all .15s; }
    .mod-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
    .mod-tab:hover:not(.active) { border-color: rgba(16,185,129,.3); color: #0f172a; }
    .module-panels > div { display: none; }
    .module-panels > div.show { display: grid; }
    .module-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .module-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.25rem; transition: all .2s; }
    .module-card:hover { border-color: rgba(16,185,129,.25); box-shadow: 0 4px 16px rgba(16,185,129,.06); }
    .mc-title { font-size: .85rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
    .mc-desc { font-size: .78rem; color: #64748b; line-height: 1.6; margin-bottom: .85rem; }
    .mc-link { font-size: .75rem; font-weight: 600; color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: gap .15s; }
    .mc-link:hover { gap: .5rem; }

    /* ══ CLAUDE ══ */
    .claude-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
    .claude-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .claude-step { display: flex; gap: 1rem; align-items: flex-start; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 12px; padding: 1.1rem 1.25rem; }
    .cs-num { width: 28px; height: 28px; border-radius: 7px; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.25); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; color: var(--brand); flex-shrink: 0; }
    .cs-title { font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
    .cs-desc { font-size: .75rem; color: #475569; line-height: 1.55; }
    .claude-code { background: #0d1117; border: 1px solid #1e2d40; border-radius: 14px; overflow: hidden; }
    .cc-header { background: #161b22; padding: .65rem 1.1rem; border-bottom: 1px solid #1e2d40; display: flex; align-items: center; gap: .4rem; }
    .cc-dot { width: 9px; height: 9px; border-radius: 50%; }
    .cc-file { font-size: .68rem; color: #6b7280; font-family: 'Courier New', monospace; margin-left: .4rem; }
    .cc-body { padding: 1.25rem; font-family: 'Courier New', monospace; font-size: .76rem; line-height: 1.75; }
    .c-comment { color: #4b5563; } .c-kw { color: #7dd3fc; } .c-str { color: #86efac; }
    .c-fn { color: #fbbf24; } .c-var { color: #e2e8f0; } .c-type { color: #f0abfc; }

    /* ══ TECH SPECS ══ */
    .spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
    .spec-group { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; }
    .spec-group-title { background: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: .85rem 1.25rem; font-size: .75rem; font-weight: 700; color: #0f172a; text-transform: uppercase; letter-spacing: 1px; }
    .spec-row { display: flex; align-items: start; gap: 1rem; padding: .75rem 1.25rem; border-bottom: 1px solid #f1f5f9; font-size: .8rem; }
    .spec-row:last-child { border-bottom: none; }
    .spec-key { color: #64748b; font-weight: 600; min-width: 110px; flex-shrink: 0; }
    .spec-tag { display: inline-block; background: #f1f5f9; color: #475569; font-size: .67rem; font-weight: 600; padding: .15rem .5rem; border-radius: 4px; margin: .1rem .15rem .1rem 0; }

    /* ══ PRICING ══ */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .pricing-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; transition: all .25s; }
    .pricing-card:hover { border-color: rgba(16,185,129,.3); box-shadow: 0 12px 40px rgba(16,185,129,.08); transform: translateY(-3px); }
    .pricing-card.featured { background: var(--navy); border-color: rgba(16,185,129,.3); position: relative; }
    .pricing-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: .3rem 1rem; border-radius: 100px; white-space: nowrap; }
    .price-tier { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand); margin-bottom: .6rem; }
    .price-amount { font-size: 2.4rem; font-weight: 900; color: #0f172a; letter-spacing: -1px; line-height: 1; margin-bottom: .25rem; }
    .pricing-card.featured .price-amount { color: #fff; }
    .price-note { font-size: .75rem; color: #94a3b8; margin-bottom: 1.5rem; }
    .price-desc { font-size: .82rem; color: #64748b; line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
    .pricing-card.featured .price-desc { color: #475569; }
    .price-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem; }
    .pf-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .78rem; color: #475569; }
    .pricing-card.featured .pf-item { color: #64748b; }
    .pf-check { color: var(--green); flex-shrink: 0; } .pf-x { color: #cbd5e1; flex-shrink: 0; }
    .price-btn { display: block; text-align: center; padding: .75rem; border-radius: 10px; font-size: .85rem; font-weight: 700; text-decoration: none; transition: all .2s; }
    .price-btn-brand { background: var(--brand); color: #fff; }
    .price-btn-brand:hover { background: var(--brand-light); }
    .price-btn-outline { border: 1.5px solid #e2e8f0; color: #0f172a; }
    .price-btn-outline:hover { border-color: #94a3b8; }

    /* Upwork */
    .upwork-card { background: var(--navy-mid); border: 1px solid var(--navy-border); border-radius: 18px; padding: 2.5rem; margin-top: 2rem; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; }
    .upwork-icon { font-size: 3rem; }
    .upwork-text h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
    .upwork-text p { font-size: .83rem; color: #475569; line-height: 1.6; }
    .upwork-cta { display: flex; flex-direction: column; gap: .75rem; align-items: center; }
    .upwork-badge { background: #14a800; color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 6px; }
    .btn-upwork { background: #14a800; color: #fff; white-space: nowrap; }
    .btn-upwork:hover { background: #11960a; transform: translateY(-1px); }

    /* ══ FAQ ══ */
    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
    .faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.5rem; }
    .faq-q { font-size: .88rem; font-weight: 700; color: #0f172a; margin-bottom: .6rem; }
    .faq-a { font-size: .8rem; color: #64748b; line-height: 1.65; }

    /* ══ CTA BOTTOM ══ */
    .cta-bottom { background: var(--navy); position: relative; overflow: hidden; }
    .cta-bottom::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 450px; background: radial-gradient(ellipse, rgba(16,185,129,.1) 0%, rgba(14,165,233,.05) 40%, transparent 65%); }
    .cta-bottom-inner { max-width: 700px; margin: 0 auto; padding: 5rem 2rem; text-align: center; position: relative; z-index: 2; }
    .cta-bottom h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: .75rem; }
    .cta-bottom p { color: #475569; margin-bottom: 2.5rem; font-size: .93rem; line-height: 1.7; }
    .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ══ FOOTER ══ */
    footer { background: var(--navy); border-top: 1px solid var(--navy-border); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--navy-border); }
    .footer-brand p { color: #334155; font-size: .78rem; line-height: 1.65; margin-top: .75rem; max-width: 250px; }
    .footer-col h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #64748b; margin-bottom: 1.1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
    .footer-col ul a { color: #334155; text-decoration: none; font-size: .8rem; transition: color .2s; }
    .footer-col ul a:hover { color: #94a3b8; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; }
    .footer-copy { color: #1e3a5f; font-size: .75rem; }
    .social-row { display: flex; gap: .6rem; margin-top: .85rem; }
    .social-link { width: 30px; height: 30px; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #334155; text-decoration: none; font-size: .78rem; transition: all .2s; }
    .social-link:hover { color: #fff; background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.2); }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .hero-v3::after { display: none; }
      .hero-v3-inner { grid-template-columns: 1fr; }
      .overview-grid, .arch-grid, .claude-grid, .pipeline-section-grid { grid-template-columns: 1fr; }
      .feature-grid, .stacks-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .upwork-card { grid-template-columns: 1fr; gap: 1rem; }
    }
    @media (max-width: 768px) {
      nav { display: none; }
      .feature-grid, .stacks-grid, .pricing-grid, .spec-grid, .faq-grid, .module-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
      .pipeline-stages-full { grid-template-columns: repeat(2, 1fr); }
    }