

    :root {
      --emerald: #1d6b4a;
      --emerald-mid: #27935f;
      --emerald-bright: #34c47c;
      --gold: #c4922a;
      --gold-light: #e0b84a;
      --serif: 'DM Serif Display', Georgia, serif;
      --sans: 'Manrope', sans-serif;
      --radius: 12px;
      --radius-lg: 20px;
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

    [data-theme="dark"] {
      --bg:         #0c0e0d;
      --bg-raised:  #131916;
      --bg-card:    #182019;
      --bg-hover:   #1e2921;
      --line:       rgba(255,255,255,.07);
      --line-em:    rgba(29,107,74,.35);
      --ink:        #dff0e8;
      --ink-2:      #93b8a4;
      --ink-3:      #567566;
      --ink-mute:   rgba(223,240,232,.35);
      --nav-fill:   rgba(12,14,13,.9);
      --tag:        rgba(255,255,255,.05);
      --elevation:  0 20px 60px rgba(0,0,0,.55);
      --elevation-sm: 0 4px 20px rgba(0,0,0,.3);
    }

    [data-theme="light"] {
      --bg:         #f6faf8;
      --bg-raised:  #eef5f1;
      --bg-card:    #ffffff;
      --bg-hover:   #e6f0eb;
      --line:       rgba(0,0,0,.07);
      --line-em:    rgba(29,107,74,.2);
      --ink:        #0b1a12;
      --ink-2:      #1e5238;
      --ink-3:      #4a7d63;
      --ink-mute:   rgba(11,26,18,.38);
      --nav-fill:   rgba(246,250,248,.93);
      --tag:        rgba(0,0,0,.04);
      --elevation:  0 12px 40px rgba(0,0,0,.09);
      --elevation-sm: 0 2px 12px rgba(0,0,0,.06);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      transition: background .35s, color .35s;
    }
    a { text-decoration: none; color: inherit; }
    button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-thumb { background: var(--line-em); border-radius: 4px; }

    /* ─── BUTTONS ─── */
    .btn-solid {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .82rem; font-weight: 700; letter-spacing: .02em;
      color: #fff; background: var(--emerald);
      padding: .56rem 1.3rem; border-radius: 8px; border: none;
      transition: background .2s, transform .18s, box-shadow .18s;
      white-space: nowrap;
    }
    .btn-solid:hover { background: var(--emerald-mid); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(29,107,74,.3); }

    .btn-solid-lg { font-size: .9rem; padding: .72rem 1.7rem; border-radius: 10px; }

    .btn-line {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .82rem; font-weight: 600; letter-spacing: .02em;
      color: var(--ink); background: transparent;
      padding: .56rem 1.3rem; border-radius: 8px;
      border: 1px solid var(--line);
      transition: border-color .2s, background .2s, color .35s, border-color .35s;
      white-space: nowrap;
    }
    .btn-line:hover { border-color: var(--line-em); background: var(--tag); }

    .btn-line-lg { font-size: .9rem; padding: .72rem 1.7rem; border-radius: 10px; }

    /* ─── NAVIGATION ─── */
    .nav {
      position: fixed; inset: 0 0 auto; z-index: 100;
      height: 66px;
      display: flex; align-items: center;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      gap: 2rem;
      background: var(--nav-fill);
      backdrop-filter: blur(18px) saturate(160%);
      border-bottom: 1px solid var(--line);
      transition: background .35s, border-color .35s, box-shadow .3s;
    }
    .nav.up { box-shadow: var(--elevation-sm); }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.65rem;
      color: var(--ink);
      letter-spacing: -.01em;
      margin-right: auto;
      transition: color .35s;
      display: flex; align-items: center; gap: 7px;
      flex-shrink: 0;
    }
    .logo-dot {
      width: 8px; height: 8px;
      background: var(--emerald-bright);
      border-radius: 50%;
      display: inline-block;
      margin-bottom: 2px;
      flex-shrink: 0;
    }

    .nav-links { display: flex; gap: .15rem; list-style: none; }
    .nav-links a {
      font-size: .8rem; font-weight: 500;
      color: var(--ink-mute);
      padding: .4rem .85rem; border-radius: 7px;
      transition: color .2s, background .2s;
    }
    .nav-links a:hover { color: var(--ink); background: var(--tag); }

    .nav-end { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }

    /* Theme switch */
    .theme-switch { display: flex; align-items: center; gap: .5rem; }
    .theme-switch span {
      font-size: .72rem; font-weight: 600;
      color: var(--ink-mute); letter-spacing: .03em;
      transition: color .35s;
    }
    .switch-track {
      width: 40px; height: 22px;
      background: var(--bg-card);
      border: 1px solid var(--line-em);
      border-radius: 100px; position: relative; cursor: pointer;
      transition: background .35s, border-color .35s;
    }
    .switch-track::after {
      content: '';
      position: absolute; top: 3px; left: 3px;
      width: 14px; height: 14px;
      background: var(--emerald-bright);
      border-radius: 50%;
      transition: transform .3s var(--ease);
    }
    [data-theme="light"] .switch-track::after { transform: translateX(18px); }

    .ham-btn {
      display: none; flex-direction: column; gap: 5px;
      padding: 7px 8px;
      background: var(--tag); border: 1px solid var(--line);
      border-radius: 8px;
    }
    .ham-btn span {
      width: 17px; height: 1.5px;
      background: var(--ink); border-radius: 2px; display: block;
      transition: all .3s;
    }
    .ham-btn.on span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .ham-btn.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .ham-btn.on span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    .mobile-nav {
      position: fixed; top: 66px; left: 0; right: 0; z-index: 90;
      background: var(--nav-fill); backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
      padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
      display: flex; flex-direction: column; gap: .2rem;
      transform: translateY(-110%);
      transition: transform .38s var(--ease);
    }
    .mobile-nav.on { transform: translateY(0); }
    .mobile-nav a {
      font-size: .9rem; font-weight: 600;
      color: var(--ink-2);
      padding: .65rem 0;
      border-bottom: 1px solid var(--line);
    }
    .mobile-nav a:last-child { border: none; }

    /* ─── HERO ─── */
    .hero {
      padding-top: 66px;
      min-height: 100svh;
      display: grid;
      grid-template-columns: 55% 45%;
      overflow: hidden;
    }

    .hero-left {
      padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4.5rem);
      display: flex; flex-direction: column; justify-content: center;
      background: var(--bg);
      transition: background .35s;
      border-right: 1px solid var(--line);
    }

    .overline {
      display: flex; align-items: center; gap: .7rem;
      font-size: .7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .12em;
      color: var(--emerald-bright);
      margin-bottom: 1.5rem;
      animation: fadeUp .6s .05s var(--ease) both;
    }
    .overline-bar { width: 30px; height: 2px; background: var(--emerald-bright); border-radius: 2px; }

    h1 {
      font-family: var(--serif);
      font-size: clamp(3rem, 5.6vw, 5.8rem);
      line-height: 1.05;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 1.4rem;
      transition: color .35s;
      animation: fadeUp .65s .12s var(--ease) both;
    }
    h1 i { font-style: italic; color: var(--emerald-bright); }

    .hero-sub {
      font-size: 1rem; font-weight: 300; line-height: 1.82;
      color: var(--ink-mute);
      max-width: 430px; margin-bottom: 2.2rem;
      transition: color .35s;
      animation: fadeUp .65s .22s var(--ease) both;
    }

    .search-bar {
      display: flex; align-items: center;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: .46rem .46rem .46rem 1.1rem;
      gap: .65rem; max-width: 490px;
      margin-bottom: 1.3rem;
      box-shadow: var(--elevation-sm);
      transition: border-color .2s, background .35s;
      animation: fadeUp .65s .3s var(--ease) both;
    }
    .search-bar:focus-within { border-color: var(--line-em); }
    .search-icon { font-size: .95rem; opacity: .3; flex-shrink: 0; }
    .search-input {
      flex: 1; border: none; outline: none; background: transparent;
      font-family: var(--sans); font-size: .88rem; color: var(--ink);
      transition: color .35s;
    }
    .search-input::placeholder { color: var(--ink-mute); }
    .search-go {
      background: var(--emerald); color: #fff;
      font-family: var(--sans); font-size: .78rem; font-weight: 700;
      padding: .55rem 1.1rem; border-radius: 8px; border: none;
      transition: background .18s;
    }
    .search-go:hover { background: var(--emerald-mid); }

    .trending {
      display: flex; align-items: center; flex-wrap: wrap; gap: .42rem;
      margin-bottom: 2.8rem;
      animation: fadeUp .65s .38s var(--ease) both;
    }
    .trend-label {
      font-size: .7rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--ink-3);
      transition: color .35s;
    }
    .pill {
      font-size: .73rem; font-weight: 500;
      color: var(--ink-3); background: var(--tag);
      border: 1px solid var(--line);
      padding: .24rem .72rem; border-radius: 6px;
      transition: all .18s, background .35s;
    }
    .pill:hover { color: var(--emerald-bright); border-color: var(--line-em); background: rgba(29,107,74,.07); }

    .hero-nums {
      display: flex; gap: 2.2rem; flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid var(--line);
      transition: border-color .35s;
      animation: fadeUp .65s .46s var(--ease) both;
    }
    .num-val {
      font-family: var(--serif);
      font-size: 2.1rem;
      color: var(--emerald-bright); line-height: 1;
    }
    .num-lbl {
      font-size: .7rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: .08em;
      color: var(--ink-mute); margin-top: .25rem;
      transition: color .35s;
    }

    /* Hero right */
    .hero-right {
      background: #0e1a13;
      padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3.5rem);
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    [data-theme="light"] .hero-right { background: #0b2216; }

    .hero-right::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 70% 55% at 65% 30%, rgba(29,107,74,.2) 0%, transparent 65%);
    }

    .panel-label {
      font-size: .68rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .12em;
      color: rgba(52,196,124,.5);
      margin-bottom: 1.2rem; position: relative; z-index: 1;
      animation: fadeUp .5s .1s var(--ease) both;
    }

    .job-feed { display: flex; flex-direction: column; gap: .65rem; position: relative; z-index: 1; animation: fadeUp .6s .2s var(--ease) both; }

    .job-item {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: .95rem 1.05rem;
      display: grid; grid-template-columns: 42px 1fr auto;
      gap: .85rem; align-items: center;
      transition: background .22s, border-color .22s, transform .22s;
    }
    .job-item:hover { background: rgba(255,255,255,.07); border-color: rgba(29,107,74,.25); transform: translateX(4px); }

    .job-co-logo {
      width: 42px; height: 42px; border-radius: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }

    .job-name { font-size: .87rem; font-weight: 700; color: #ddf0e7; margin-bottom: .08rem; }
    .job-co   { font-size: .72rem; color: rgba(147,184,164,.7); }
    .job-tags { display: flex; gap: .38rem; margin-top: .4rem; flex-wrap: wrap; }

    .jtag {
      font-size: .58rem; font-weight: 600; letter-spacing: .03em;
      padding: .13rem .48rem; border-radius: 4px;
    }
    .jt-loc  { background: rgba(29,107,74,.18);  color: #5cd496; border: 1px solid rgba(29,107,74,.25); }
    .jt-type { background: rgba(196,146,42,.12); color: #d4b060; border: 1px solid rgba(196,146,42,.2); }
    .jt-hot  { background: rgba(210,60,60,.1);   color: #f08080; border: 1px solid rgba(210,60,60,.18); }
    .jt-new  { background: rgba(99,130,200,.1);  color: #a8c0e8; border: 1px solid rgba(99,130,200,.18); }

    .job-right { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; flex-shrink: 0; }
    .job-pay { font-family: var(--serif); font-size: .95rem; color: #ddf0e7; }
    .job-cta {
      font-size: .62rem; font-weight: 700;
      background: var(--emerald); color: #fff;
      padding: .2rem .62rem; border-radius: 5px; border: none;
      transition: background .15s;
    }
    .job-cta:hover { background: var(--emerald-mid); }

    .live-pill {
      display: flex; align-items: center; gap: .72rem;
      background: rgba(29,107,74,.07);
      border: 1px solid rgba(29,107,74,.18);
      border-radius: 9px; padding: .72rem 1rem;
      margin-top: .85rem; position: relative; z-index: 1;
      animation: fadeUp .6s .48s var(--ease) both;
    }
    .pulse-dot {
      width: 7px; height: 7px; background: var(--emerald-bright);
      border-radius: 50%; flex-shrink: 0;
      animation: glow 2s ease-out infinite;
    }
    @keyframes glow {
      0% { box-shadow: 0 0 0 0 rgba(52,196,124,.5); }
      70% { box-shadow: 0 0 0 8px rgba(52,196,124,0); }
      100% { box-shadow: 0 0 0 0 rgba(52,196,124,0); }
    }
    .live-text { font-size: .76rem; color: rgba(147,184,164,.9); font-weight: 500; }
    .live-text b { color: #ddf0e7; font-weight: 700; }

    .match-chip {
      display: flex; align-items: center; gap: .85rem;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--radius); padding: .92rem 1.05rem;
      margin-top: .65rem; position: relative; z-index: 1;
      animation: fadeUp .6s .56s var(--ease) both;
    }
    .match-av {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--emerald-mid), var(--emerald));
      border: 2px solid rgba(52,196,124,.28);
      display: flex; align-items: center; justify-content: center; font-size: .95rem;
    }
    .match-n { font-size: .8rem; font-weight: 700; color: #ddf0e7; }
    .match-r { font-size: .67rem; color: rgba(147,184,164,.65); margin-top: 1px; }
    .match-score { margin-left: auto; text-align: right; flex-shrink: 0; }
    .score-num { font-family: var(--serif); font-size: 1.4rem; color: var(--emerald-bright); line-height: 1; }
    .score-lbl { font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: rgba(52,196,124,.5); }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

    /* ─── MARQUEE ─── */
    .marquee { overflow: hidden; background: var(--emerald); padding: .52rem 0; }
    .marquee-inner { display: flex; width: max-content; animation: run 38s linear infinite; }
    .marquee-item {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.88);
      padding: 0 2rem; white-space: nowrap;
      display: flex; align-items: center; gap: 1.5rem;
    }
    .marquee-item::after { content: '·'; opacity: .4; }
    @keyframes run { to { transform: translateX(-50%); } }

    /* ─── SECTION SHELL ─── */
    .sec { padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.5rem, 5vw, 4rem); }
    .sec-raised { background: var(--bg-raised); transition: background .35s; }

    .eyebrow {
      display: flex; align-items: center; gap: .6rem;
      font-size: .68rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .13em;
      color: var(--emerald-bright); margin-bottom: .95rem;
    }
    .eyebrow-line { width: 24px; height: 2px; background: var(--emerald-bright); border-radius: 2px; }

    h2 {
      font-family: var(--serif);
      font-size: clamp(2.1rem, 3.7vw, 3.4rem);
      line-height: 1.07; letter-spacing: -.02em;
      color: var(--ink); margin-bottom: 1rem;
      transition: color .35s;
    }
    h2 i { font-style: italic; color: var(--emerald-bright); }

    .body-copy {
      font-size: .97rem; font-weight: 300; line-height: 1.82;
      color: var(--ink-mute); max-width: 500px;
      transition: color .35s;
    }

    /* Reveal */
    .rv { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
    .rv.show { opacity: 1; transform: translateY(0); }

    /* ─── FEATURES ─── */
    .feat-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }

    /* Mosaic grid */
    .feat-mosaic {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color .35s, background .35s;
    }

    .fm {
      background: var(--bg-card);
      padding: 2.2rem;
      position: relative;
      transition: background .25s, background .35s;
    }
    .fm:hover { background: var(--bg-hover); }

    /* Inset top rule on hover */
    .fm::after {
      content: '';
      position: absolute; top: 0; left: 2.2rem; right: 2.2rem;
      height: 2px; background: var(--emerald-bright);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s var(--ease);
    }
    .fm:hover::after { transform: scaleX(1); }

    .fm-wide { grid-column: span 7; }
    .fm-nrw  { grid-column: span 5; }
    .fm-3    { grid-column: span 4; }
    .fm-tall { grid-row: span 2; }

    .fm-icon {
      width: 46px; height: 46px;
      border-radius: 10px;
      background: rgba(29,107,74,.1);
      border: 1px solid var(--line-em);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; margin-bottom: 1.2rem;
      transition: background .35s, border-color .35s;
    }

    .fm-title {
      font-family: var(--serif); font-style: italic;
      font-size: 1.22rem; color: var(--ink);
      margin-bottom: .52rem; transition: color .35s;
    }

    .fm-body {
      font-size: .84rem; font-weight: 300; line-height: 1.74;
      color: var(--ink-mute); transition: color .35s;
    }

    .fm-tag {
      display: inline-block; margin-top: 1rem;
      font-size: .65rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .08em;
      color: var(--emerald-bright);
      background: rgba(29,107,74,.09);
      border: 1px solid var(--line-em);
      padding: .18rem .62rem; border-radius: 5px;
      transition: background .35s, border-color .35s;
    }

    /* ─── PROCESS ─── */
    .process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); align-items: center; }

    .step-list { display: flex; flex-direction: column; }
    .step {
      display: flex; gap: 1.3rem;
      padding: 1.5rem 0; border-bottom: 1px solid var(--line);
      transition: border-color .35s;
    }
    .step:last-child { border: none; }
    .step:hover .step-n { background: var(--emerald); color: #fff; border-color: transparent; }

    .step-n {
      width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
      background: var(--bg-raised);
      border: 1px solid var(--line-em);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 1rem;
      color: var(--emerald-bright);
      transition: background .22s, color .22s, border-color .22s, background .35s;
    }

    .step-title {
      font-family: var(--serif); font-style: italic;
      font-size: 1.08rem; color: var(--ink);
      margin-bottom: .3rem; transition: color .35s;
    }
    .step-desc {
      font-size: .84rem; font-weight: 300; line-height: 1.72;
      color: var(--ink-mute); transition: color .35s;
    }

    /* Dashboard mockup */
    .dash-mock {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--elevation);
      transition: background .35s, border-color .35s;
    }
    .dash-topbar {
      background: var(--bg-raised); border-bottom: 1px solid var(--line);
      padding: .72rem 1.2rem;
      display: flex; align-items: center; gap: .72rem;
      transition: background .35s, border-color .35s;
    }
    .win-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dash-inner { padding: 1.4rem; }

    .dash-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
    .dash-h { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink); transition: color .35s; }
    .dash-live-tag { font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--emerald-bright); }

    .kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; margin-bottom: 1.1rem; }
    .kpi-box {
      background: var(--bg-raised); border: 1px solid var(--line);
      border-radius: 9px; padding: .72rem; text-align: center;
      transition: background .35s, border-color .35s;
    }
    .kpi-v { font-family: var(--serif); font-size: 1.55rem; color: var(--emerald-bright); line-height: 1; }
    .kpi-l { font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); margin-top: 2px; transition: color .35s; }

    .cand-row {
      display: flex; align-items: center; gap: .72rem;
      padding: .6rem .72rem; background: var(--tag);
      border: 1px solid var(--line); border-radius: 8px; margin-bottom: .4rem;
      transition: background .35s, border-color .35s;
    }
    .cav { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; flex-shrink: 0; }
    .cn  { font-size: .77rem; font-weight: 700; color: var(--ink); transition: color .35s; }
    .cr  { font-size: .62rem; color: var(--ink-3); transition: color .35s; }
    .cs  { margin-left: auto; font-size: .58rem; font-weight: 700; padding: .13rem .48rem; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
    .cs-new  { background: rgba(29,107,74,.12); color: var(--emerald-bright); border: 1px solid rgba(29,107,74,.2); }
    .cs-rev  { background: rgba(196,146,42,.1);  color: var(--gold-light);    border: 1px solid rgba(196,146,42,.18); }
    .cs-hire { background: rgba(99,130,200,.1);  color: #a8c0e8;               border: 1px solid rgba(99,130,200,.18); }

    /* ─── AUDIENCE ─── */
    .audience-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
    .aud-card {
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-lg); padding: 2rem;
      position: relative; overflow: hidden;
      transition: box-shadow .22s, border-color .22s, background .35s, border-color .35s;
    }
    .aud-card:hover { border-color: var(--line-em); box-shadow: var(--elevation-sm); }
    .aud-card::before {
      content: ''; position: absolute; inset: 0 0 auto;
      height: 3px;
      background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s var(--ease);
    }
    .aud-card:hover::before { transform: scaleX(1); }

    .aud-tier { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--emerald-bright); margin-bottom: .6rem; }
    .aud-title { font-family: var(--serif); font-style: italic; font-size: 1.42rem; color: var(--ink); margin-bottom: .55rem; transition: color .35s; }
    .aud-desc { font-size: .84rem; font-weight: 300; line-height: 1.72; color: var(--ink-mute); transition: color .35s; }
    .aud-list { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: .45rem; }
    .aud-list li {
      font-size: .82rem; font-weight: 400; color: var(--ink-2);
      display: flex; align-items: flex-start; gap: .5rem;
      transition: color .35s;
    }
    .aud-list li::before { content: '→'; color: var(--emerald-bright); flex-shrink: 0; font-weight: 700; }

    /* ─── INDUSTRIES ─── */
    .ind-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.2rem; gap: 1.5rem; flex-wrap: wrap; }

    .ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: .8rem; }

    .ind-card {
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-lg); padding: 1.35rem;
      display: flex; flex-direction: column; gap: .52rem;
      cursor: pointer;
      transition: all .22s, background .35s, border-color .35s;
    }
    .ind-card:hover { border-color: var(--line-em); transform: translateY(-3px); box-shadow: var(--elevation-sm); }

    .ind-ico { font-size: 1.55rem; }
    .ind-name { font-size: .86rem; font-weight: 700; color: var(--ink); transition: color .35s; }
    .ind-count { font-family: var(--serif); font-style: italic; font-size: .82rem; color: var(--emerald-bright); }
    .ind-bar { height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; margin-top: auto; transition: background .35s; }
    .ind-fill { height: 100%; background: linear-gradient(90deg, var(--emerald), var(--emerald-bright)); width: 0; transition: width .7s var(--ease); }

    /* ─── SPLIT CTA ─── */
    .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .cta-card {
      background: #0b1f12; border-radius: var(--radius-lg);
      padding: clamp(2.5rem, 4vw, 3.8rem);
      min-height: 300px;
      display: flex; flex-direction: column; justify-content: flex-end;
      position: relative; overflow: hidden;
    }
    [data-theme="light"] .cta-card { background: #092a15; }

    /* Decorative large numeral */
    .cta-card::before {
      content: attr(data-n);
      position: absolute; top: -1.5rem; right: .5rem;
      font-family: var(--serif); font-size: 20rem;
      font-style: italic; font-weight: 400;
      color: rgba(52,196,124,.04); line-height: 1;
      pointer-events: none;
    }

    /* Subtle ring */
    .cta-card::after {
      content: '';
      position: absolute; bottom: -60px; left: -60px;
      width: 200px; height: 200px;
      border: 1px solid rgba(29,107,74,.12);
      border-radius: 50%; pointer-events: none;
    }

    .cta-label { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(52,196,124,.5); margin-bottom: .65rem; }
    .cta-card h3 { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 2.5vw, 2.5rem); color: #d8ede3; line-height: 1.1; margin-bottom: .72rem; }
    .cta-card p { font-size: .84rem; font-weight: 300; line-height: 1.74; color: rgba(147,184,164,.6); margin-bottom: 1.8rem; max-width: 300px; }

    /* ─── PRICING ─── */
    .price-head { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
    .price-head .eyebrow { justify-content: center; }
    .price-head .eyebrow-line { display: none; }

    .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 840px; margin: 0 auto; }

    .price-card {
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-lg); padding: 2.1rem;
      position: relative;
      transition: transform .22s, background .35s, border-color .35s;
    }
    .price-card:hover { transform: translateY(-4px); }
    .price-card.featured { border-color: var(--line-em); box-shadow: 0 0 0 1px var(--line-em), var(--elevation); }

    .price-badge {
      position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
      background: var(--emerald); color: #fff;
      font-size: .6rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
      padding: .2rem .8rem; border-radius: 100px; white-space: nowrap;
    }

    .price-tier { font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; transition: color .35s; }
    .price-amount { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); line-height: 1; transition: color .35s; }
    .price-amount sup { font-size: 1.1rem; vertical-align: super; }
    .price-period { font-size: .73rem; color: var(--ink-mute); margin-bottom: 1.5rem; transition: color .35s; }
    .price-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.8rem; }
    .price-list li {
      font-size: .82rem; font-weight: 300; color: var(--ink-2);
      display: flex; gap: .45rem; align-items: flex-start; transition: color .35s;
    }
    .price-list li::before { content: '✓'; color: var(--emerald-bright); font-weight: 700; flex-shrink: 0; }

    /* ─── TESTIMONIALS ─── */
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

    .testi-card {
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-lg); padding: 1.9rem;
      display: flex; flex-direction: column;
      transition: background .35s, border-color .35s;
    }
    .stars { color: var(--gold-light); font-size: .8rem; letter-spacing: .1em; margin-bottom: .9rem; }
    .quote {
      font-family: var(--serif); font-style: italic;
      font-size: .98rem; line-height: 1.72;
      color: var(--ink-2); flex: 1; margin-bottom: 1.3rem;
      transition: color .35s;
    }
    .author { display: flex; align-items: center; gap: .65rem; }
    .author-av {
      width: 36px; height: 36px; border-radius: 50%;
      border: 2px solid var(--line-em);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; flex-shrink: 0;
    }
    .author-name { font-size: .8rem; font-weight: 700; color: var(--ink); transition: color .35s; }
    .author-role { font-size: .66rem; color: var(--emerald-bright); }

    /* ─── APP ─── */
    .app-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
      padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.5rem, 5vw, 4rem);
      background: var(--bg); position: relative; overflow: hidden;
      transition: background .35s;
    }
    .app-wrap::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 55% 70% at 88% 55%, rgba(29,107,74,.06), transparent);
    }

    .store-row { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.9rem; }
    .store-btn {
      display: flex; align-items: center; gap: .72rem;
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius); padding: .7rem 1.1rem;
      text-decoration: none;
      transition: border-color .2s, transform .18s, background .35s, border-color .35s;
    }
    .store-btn:hover { border-color: var(--line-em); transform: translateY(-2px); }
    .store-ico { font-size: 1.3rem; }
    .store-sub { font-size: .55rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); transition: color .35s; }
    .store-name { font-size: .84rem; font-weight: 700; color: var(--ink); transition: color .35s; }

    .phone-pair { position: relative; height: 360px; display: flex; align-items: center; justify-content: center; }
    .phone {
      position: absolute; width: 165px; height: 325px;
      background: linear-gradient(160deg, #0e2016, #07130a);
      border: 1.5px solid rgba(29,107,74,.2);
      border-radius: 24px; box-shadow: 0 28px 56px rgba(0,0,0,.5);
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 9px; padding: 14px; text-align: center; overflow: hidden;
    }
    .phone:first-child { transform: rotate(-6deg) translateX(-46px); z-index: 2; }
    .phone:last-child  { transform: rotate(4deg)  translateX(46px);  z-index: 1; opacity: .65; }
    .phone-ico   { font-size: 1.8rem; }
    .phone-title { font-family: var(--serif); font-style: italic; font-size: .95rem; color: #cde6d5; }
    .phone-sub   { font-size: .6rem; font-weight: 300; color: rgba(139,185,154,.5); }
    .phone-info  {
      background: rgba(29,107,74,.12); border: 1px solid rgba(29,107,74,.2);
      border-radius: 7px; padding: 7px 9px; width: 100%;
      font-size: .6rem; color: rgba(139,185,154,.8); text-align: left; line-height: 1.65;
    }

    /* ─── CONTACT ─── */
    .contact-wrap { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }

    .contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .ci { display: flex; gap: .82rem; align-items: flex-start; }
    .ci-icon {
      width: 40px; height: 40px; border-radius: 9px;
      background: var(--tag); border: 1px solid var(--line);
      display: flex; align-items: center; justify-content: center;
      font-size: .92rem; flex-shrink: 0;
      transition: background .35s, border-color .35s;
    }
    .ci-label { font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: 2px; transition: color .35s; }
    .ci-value { font-size: .86rem; font-weight: 500; color: var(--ink-2); line-height: 1.55; transition: color .35s; }
    .ci-value a { color: var(--emerald-bright); }
    .ci-value a:hover { text-decoration: underline; }

    .powered {
      display: inline-flex; align-items: center; gap: .48rem;
      margin-top: 1.8rem;
      background: var(--tag); border: 1px solid var(--line);
      border-radius: 8px; padding: .52rem .88rem;
      font-size: .74rem; font-weight: 500; color: var(--ink-mute);
      text-decoration: none;
      transition: all .2s, background .35s, border-color .35s, color .35s;
    }
    .powered:hover { border-color: var(--line-em); color: var(--ink); }
    .powered-dot { width: 6px; height: 6px; background: var(--emerald-bright); border-radius: 50%; flex-shrink: 0; }

    .cf { display: flex; flex-direction: column; gap: .88rem; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .88rem; }
    .cf-grp { display: flex; flex-direction: column; gap: .35rem; }
    .cf-label { font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); transition: color .35s; }
    .cf-input, .cf-area, .cf-sel {
      font-family: var(--sans); font-size: .87rem; color: var(--ink);
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: 9px; padding: .74rem 1rem; outline: none;
      -webkit-appearance: none;
      transition: border-color .18s, background .35s, color .35s, border-color .35s;
    }
    .cf-input:focus, .cf-area:focus, .cf-sel:focus { border-color: var(--emerald-bright); }
    .cf-input::placeholder, .cf-area::placeholder { color: var(--ink-mute); opacity: .5; }
    .cf-area { resize: vertical; min-height: 105px; }
    .cf-sel option { background: var(--bg-card); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg-raised); border-top: 1px solid var(--line);
      padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem) 1.8rem;
      transition: background .35s, border-color .35s;
    }

    .foot-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
      padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); margin-bottom: 1.8rem;
      transition: border-color .35s;
    }

    .foot-brand { font-family: var(--serif); font-size: 2rem; color: var(--ink); margin-bottom: .6rem; transition: color .35s; }
    .foot-desc { font-size: .8rem; font-weight: 300; line-height: 1.72; color: var(--ink-mute); max-width: 230px; margin-bottom: 1.3rem; transition: color .35s; }

    .foot-col h4 { font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.1rem; transition: color .35s; }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
    .foot-col a { font-size: .8rem; font-weight: 400; color: var(--ink-mute); transition: color .2s; }
    .foot-col a:hover { color: var(--ink); }

    .foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .foot-copy { font-size: .7rem; color: var(--ink-mute); transition: color .35s; }

    .socials { display: flex; gap: .45rem; }
    .social {
      width: 33px; height: 33px;
      background: var(--tag); border: 1px solid var(--line);
      border-radius: 7px; display: flex; align-items: center; justify-content: center;
      font-size: .84rem; text-decoration: none;
      transition: background .2s, border-color .2s;
    }
    .social:hover { background: rgba(29,107,74,.1); border-color: var(--line-em); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { border-right: none; border-bottom: 1px solid var(--line); }
      .hero-right { padding: 3rem clamp(1.5rem, 5vw, 4rem); align-items: center; }
      .job-feed, .live-pill, .match-chip { max-width: 520px; width: 100%; }
      .feat-head { grid-template-columns: 1fr; }
      .feat-mosaic { grid-template-columns: 1fr 1fr; }
      .fm-wide, .fm-nrw, .fm-3, .fm-tall { grid-column: span 1; grid-row: span 1; }
      .process-grid { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .price-grid { max-width: 100%; }
      .app-wrap { grid-template-columns: 1fr; }
      .phone-pair { display: none; }
      .contact-wrap { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      .nav-links { display: none; }
      .ham-btn { display: flex; }
      .hero-nums { gap: 1.3rem; }
      .audience-row { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr 1fr; }
      .cta-grid { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: 1fr; max-width: 360px; }
      .ind-grid { grid-template-columns: repeat(2, 1fr); }
      .feat-mosaic { grid-template-columns: 1fr; }
    }

    @media (max-width: 580px) {
      .testi-grid { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr; }
      .cf-row { grid-template-columns: 1fr; }
      .price-grid { max-width: 100%; }
    }