 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #ffffff;
      --bg2: #f5f5f2;
      --ink: #080808;
      --ink2: #1c1c1c;
      --muted: #666;
      --faint: #999;
      --lime: #c8f000;
      --lime-dk: #a6c800;
      --lime-lt: #eeffa0;
      --border: #e0e0d8;
      --nav-h: 68px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Manrope', 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── PROGRESS ── */
    #prog {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lime), var(--ink));
      z-index: 9999;
      width: 0;
      transition: width .07s;
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      background: var(--ink);
      transition: box-shadow .3s;
    }

    .nav.stuck {
      box-shadow: 0 4px 24px rgba(0, 0, 0, .5);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      background: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-mark svg {
      width: 18px;
      height: 18px;
    }

    .logo-name {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -.3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
    }

    .nav-a {
      padding: 10px 14px;
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      transition: color .2s;
      background: none;
      border: none;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-a:hover,
    .nav-a.on {
      color: #fff;
    }

    .nav-a.on {
      color: var(--lime);
    }

    /* dropdown */
    .nav-item {
      position: relative;
    }

    .nav-dd-btn {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 10px 14px;
      color: rgba(255, 255, 255, .6);
      font-size: 13px;
      font-weight: 600;
      background: none;
      border: none;
      font-family: inherit;
      cursor: pointer;
      transition: color .2s;
    }

    .nav-dd-btn svg {
      width: 11px;
      height: 11px;
      opacity: .5;
      transition: transform .2s;
    }

    .nav-dd-btn:hover,
    .nav-item.open .nav-dd-btn {
      color: #fff;
    }

    .nav-item.open .nav-dd-btn svg {
      transform: rotate(180deg);
    }

    .mega {
      position: absolute;
      top: calc(100% + 2px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #fff;
      border: 2px solid var(--ink);
      box-shadow: 5px 5px 0 var(--ink);
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
      min-width: 780px;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity .2s, transform .2s, visibility .2s;
      z-index: 1000;
    }

    .nav-item.open .mega {
      opacity: 1;
      pointer-events: all;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .mega-col-label {
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--lime-dk);
      margin-bottom: 10px;
      padding-bottom: 7px;
      border-bottom: 1px solid var(--border);
    }

    .mega-col {
      padding-right: 16px;
    }

    .mega-col:not(:last-child) {
      border-right: 1px solid var(--border);
      margin-right: 16px;
    }

    .mega-link {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 7px 9px;
      text-decoration: none;
      color: var(--ink);
      border: 1px solid transparent;
      transition: all .15s;
      margin-bottom: 2px;
      font-size: 12.5px;
      font-weight: 600;
    }

    .mega-link:hover {
      background: var(--bg2);
      border-color: var(--border);
    }

    .mega-link-icon {
      width: 28px;
      height: 28px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mega-link-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--muted);
    }

    .mega-cta-bar {
      grid-column: 1/-1;
      margin-top: 16px;
      padding: 12px 16px;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .mega-cta-bar p {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
    }

    .mega-cta-bar strong {
      color: #fff;
      font-size: 13px;
      display: block;
      margin-bottom: 2px;
    }

    .mega-cta-btn {
      padding: 7px 16px;
      background: var(--lime);
      color: var(--ink);
      font-size: 11.5px;
      font-weight: 900;
      border: none;
      cursor: pointer;
      font-family: inherit;
      text-transform: uppercase;
      letter-spacing: .05em;
      white-space: nowrap;
      text-decoration: none;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn-ghost-nav {
      padding: 8px 16px;
      border: 1.5px solid rgba(255, 255, 255, .2);
      background: transparent;
      color: rgba(255, 255, 255, .7);
      font-size: 12.5px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: all .2s;
    }

    .btn-ghost-nav:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, .5);
    }

    .btn-lime-nav {
      padding: 8px 18px;
      background: var(--lime);
      color: var(--ink);
      font-size: 12.5px;
      font-weight: 900;
      font-family: inherit;
      border: none;
      cursor: pointer;
    }

    .btn-lime-nav:hover {
      background: var(--lime-dk);
    }

    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border: none;
      background: transparent;
    }

    .ham span {
      width: 22px;
      height: 2px;
      background: #fff;
      display: block;
      transition: all .3s;
    }

    .ham.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .ham.open span:nth-child(2) {
      opacity: 0;
    }

    .ham.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mob-menu {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 800;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform .4s cubic-bezier(.77, 0, .175, 1);
      padding: 80px 28px 40px;
    }

    .mob-menu.open {
      transform: translateX(0);
    }

    .mob-link {
      display: block;
      padding: 14px 0;
      color: rgba(255, 255, 255, .7);
      font-size: 18px;
      font-weight: 900;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      font-family: inherit;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      text-align: left;
      cursor: pointer;
      transition: color .2s;
      width: 100%;
    }

    .mob-link:hover {
      color: var(--lime);
    }

    .mob-cta {
      margin-top: 28px;
    }

    /* ══════════════════
   HERO
══════════════════ */
    .hero {
      margin-top: var(--nav-h);
      background: var(--ink);
      padding: 88px 7% 80px;
      border-bottom: 2px solid var(--lime);
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(200, 240, 0, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 240, 0, .03) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 860px;
    }

    .hero-kicker {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(200, 240, 0, .6);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .hero-kicker::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: rgba(200, 240, 0, .4);
    }

    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(48px, 7vw, 96px);
      font-weight: 900;
      line-height: .9;
      letter-spacing: -.06em;
      color: #fff;
      margin-bottom: 26px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--lime);
    }

    .hero-desc {
      font-size: 17px;
      line-height: 2;
      color: rgba(255, 255, 255, .5);
      max-width: 580px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-lime-lg {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--lime);
      color: var(--ink);
      font-size: 13px;
      font-weight: 900;
      font-family: inherit;
      border: none;
      cursor: pointer;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: background .2s, transform .15s;
    }

    .btn-lime-lg:hover {
      background: var(--lime-dk);
      transform: translateY(-2px);
    }

    .btn-out-wt {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: transparent;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      border: 1.5px solid rgba(255, 255, 255, .18);
      cursor: pointer;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: all .2s;
    }

    .btn-out-wt:hover {
      border-color: rgba(255, 255, 255, .45);
      background: rgba(255, 255, 255, .05);
    }

    /* sector count strip */
    .hero-count-strip {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, .08);
      margin-top: 52px;
      padding-top: 36px;
    }

    .hcs-item {
      padding-right: 36px;
      margin-right: 36px;
      border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .hcs-item:last-child {
      border-right: none;
      margin-right: 0;
    }

    .hcs-item strong {
      display: block;
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      letter-spacing: -.05em;
      color: var(--lime);
      line-height: 1;
      margin-bottom: 5px;
    }

    .hcs-item span {
      font-size: 11px;
      color: rgba(255, 255, 255, .4);
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 700;
    }

    /* ══════════════════
   SECTOR BROWSER
══════════════════ */
    .browser {
      display: grid;
      grid-template-columns: 280px 1fr;
      min-height: calc(100vh - var(--nav-h));
      border-bottom: 2px solid var(--ink);
    }

    /* Sidebar */
    .sidebar {
      background: var(--bg2);
      border-right: 1.5px solid var(--border);
      position: sticky;
      top: var(--nav-h);
      height: calc(100vh - var(--nav-h));
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .sidebar::-webkit-scrollbar {
      width: 4px;
    }

    .sidebar::-webkit-scrollbar-track {
      background: transparent;
    }

    .sidebar::-webkit-scrollbar-thumb {
      background: var(--border);
    }

    .sidebar-head {
      padding: 22px 20px 16px;
      border-bottom: 1px solid var(--border);
      background: var(--bg);
    }

    .sidebar-head h3 {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--faint);
    }

    .snl {
      list-style: none;
      padding: 8px 0;
    }

    .snl-btn {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 12px 16px;
      background: transparent;
      border: none;
      border-left: 3px solid transparent;
      font-family: inherit;
      cursor: pointer;
      text-align: left;
      transition: all .18s;
    }

    .snl-btn:hover {
      background: rgba(0, 0, 0, .04);
      border-left-color: var(--border);
    }

    .snl-btn.active {
      background: var(--bg);
      border-left-color: var(--lime-dk);
    }

    .snl-btn.active .snl-lbl {
      color: var(--ink);
      font-weight: 800;
    }

    .snl-icon {
      width: 32px;
      height: 32px;
      border: 1.5px solid var(--border);
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .18s;
    }

    .snl-btn.active .snl-icon {
      background: var(--lime);
      border-color: var(--lime-dk);
    }

    .snl-icon svg {
      width: 15px;
      height: 15px;
      stroke: var(--muted);
    }

    .snl-btn.active .snl-icon svg {
      stroke: var(--ink);
    }

    .snl-lbl {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      transition: color .18s;
      line-height: 1.3;
    }

    .snl-num {
      margin-left: auto;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9.5px;
      color: var(--faint);
      flex-shrink: 0;
    }

    /* Main panel */
    .main-panel {
      overflow: hidden;
    }

    .panel {
      display: none;
    }

    .panel.active {
      display: block;
      animation: fadeIn .3s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── PANEL HERO ── */
    .ph {
      border-bottom: 1.5px solid var(--border);
      padding: 52px 6% 48px;
    }

    .ph-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: flex-start;
    }

    .ph-eyebrow {
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--lime-dk);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ph-eyebrow::before {
      content: '';
      width: 20px;
      height: 1.5px;
      background: var(--lime-dk);
    }

    .ph-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      line-height: .95;
      letter-spacing: -.05em;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .ph-desc {
      font-size: 15px;
      line-height: 2;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .ph-tags {
      display: flex;
      gap: 7px;
      flex-wrap: wrap;
    }

    .ph-tag {
      padding: 4px 12px;
      background: var(--bg2);
      border: 1.5px solid var(--border);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* right side — what we do box */
    .ph-what {
      background: var(--ink);
      padding: 28px;
      border: 2px solid var(--ink);
    }

    .ph-what-label {
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(200, 240, 0, .55);
      margin-bottom: 14px;
    }

    .ph-what-title {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: -.02em;
      line-height: 1.2;
    }

    .ph-what-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .ph-what-list li {
      font-size: 13px;
      color: rgba(255, 255, 255, .62);
      line-height: 1.75;
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .ph-what-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--lime);
      flex-shrink: 0;
      margin-top: 6px;
    }

    /* ── CAPABILITIES GRID ── */
    .cap-sec {
      padding: 48px 6%;
    }

    .sec-label {
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sec-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .sec-h {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 900;
      letter-spacing: -.04em;
      color: var(--ink);
      margin-bottom: 28px;
    }

    .sec-h em {
      font-style: normal;
      background: var(--ink);
      color: #fff;
      padding: 0 4px;
    }

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1.5px solid var(--ink);
    }

    .cap-card {
      background: var(--bg);
      padding: 28px 24px;
      transition: background .2s;
    }

    .cap-card:hover {
      background: var(--lime-lt);
    }

    .cap-icon {
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .cap-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--ink2);
    }

    .cap-card:hover .cap-icon {
      background: var(--lime);
      border-color: var(--lime-dk);
    }

    .cap-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9.5px;
      color: var(--faint);
      margin-bottom: 8px;
      letter-spacing: .1em;
    }

    .cap-card h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 7px;
    }

    .cap-card p {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.82;
    }

    /* ── HOW WE WORK ── */
    .how-sec {
      padding: 0 6% 48px;
    }

    .how-track {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1.5px solid var(--ink);
    }

    .how-step {
      display: grid;
      grid-template-columns: 64px 1fr auto;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
      transition: background .18s;
    }

    .how-step:last-child {
      border-bottom: none;
    }

    .how-step:hover {
      background: var(--bg2);
    }

    .how-num {
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 1px solid var(--border);
      padding: 20px 0;
    }

    .how-dot {
      width: 12px;
      height: 12px;
      background: var(--lime);
      border: 2px solid var(--ink);
    }

    .how-body {
      padding: 22px 26px;
    }

    .how-body h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 5px;
    }

    .how-body p {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.82;
    }

    .how-tag {
      border-left: 1px solid var(--border);
      padding: 20px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .how-tag span {
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--lime-dk);
      white-space: nowrap;
    }

    /* ── TECH STACK ── */
    .tech-sec {
      padding: 0 6% 48px;
    }

    .tech-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 20px;
    }

    .tech-chip {
      padding: 7px 13px;
      border: 1.5px solid var(--border);
      background: var(--bg2);
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 700;
      color: var(--ink);
      transition: all .18s;
    }

    .tech-chip::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--lime-dk);
    }

    .tech-chip:hover {
      border-color: var(--ink);
      background: var(--lime-lt);
    }

    /* ── PANEL CTA ── */
    .panel-cta {
      margin: 0 6% 52px;
      padding: 28px 32px;
      background: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .panel-cta strong {
      display: block;
      font-size: 16px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 5px;
      letter-spacing: -.02em;
    }

    .panel-cta p {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.75;
    }

    .panel-cta-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }

    /* ══════════════════
   CROSS-SECTOR STRIP
══════════════════ */
    .cross {
      background: var(--ink);
      padding: 72px 6%;
      border-top: 2px solid var(--lime);
    }

    .cross-h {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      letter-spacing: -.04em;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.02;
    }

    .cross-h em {
      font-style: normal;
      color: var(--lime);
    }

    .cross-lead {
      font-size: 15px;
      color: rgba(255, 255, 255, .5);
      max-width: 560px;
      line-height: 1.9;
      margin-bottom: 48px;
    }

    .cross-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .cross-item {
      padding: 30px 24px;
      transition: background .2s;
    }

    .cross-item:hover {
      background: rgba(200, 240, 0, .05);
    }

    .cross-item-icon {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .cross-item-icon svg {
      width: 17px;
      height: 17px;
      stroke: rgba(255, 255, 255, .55);
    }

    .cross-item h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 7px;
      letter-spacing: -.02em;
    }

    .cross-item p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.8;
    }

    /* ══════════════════
   CTA BAND
══════════════════ */
    .cta-band {
      padding: 72px 6%;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 2px solid var(--ink);
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 36px;
    }

    .cta-band h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 900;
      letter-spacing: -.04em;
      color: var(--ink);
      line-height: 1.02;
    }

    .cta-band h2 em {
      font-style: normal;
      background: var(--ink);
      color: #fff;
      padding: 0 4px;
    }

    .cta-band-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }

    .btn-blk {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 13px 26px;
      background: var(--ink);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      font-family: inherit;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: .04em;
      transition: background .2s, transform .15s;
    }

    .btn-blk:hover {
      background: var(--ink2);
      transform: translateY(-2px);
    }

    .btn-out {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 13px 26px;
      background: transparent;
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      border: 1.5px solid var(--border);
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: .04em;
      transition: all .2s;
    }

    .btn-out:hover {
      border-color: var(--ink);
      background: var(--bg);
    }

    /* ══════════════════
   FOOTER
══════════════════ */
    footer {
      background: var(--ink);
      overflow: hidden;
    }

    .ft-top {
      padding: 28px 6%;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .ft-top strong {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 900;
      color: #fff;
      display: block;
      margin-bottom: 3px;
    }

    .ft-top span {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .35);
    }

    .ft-sub {
      display: flex;
      max-width: 340px;
      width: 100%;
    }

    .ft-sub-i {
      flex: 1;
      padding: 9px 13px;
      background: rgba(255, 255, 255, .06);
      border: 1.5px solid rgba(255, 255, 255, .1);
      border-right: none;
      color: #fff;
      font-size: 13px;
      font-family: inherit;
      outline: none;
    }

    .ft-sub-i::placeholder {
      color: rgba(255, 255, 255, .26);
    }

    .ft-sub-btn {
      padding: 9px 15px;
      background: var(--lime);
      color: var(--ink);
      border: none;
      font-size: 11.5px;
      font-weight: 900;
      font-family: inherit;
      cursor: pointer;
      text-transform: uppercase;
    }

    .ft-main {
      padding: 44px 6%;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 28px;
    }

    .ft-logo-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 12px;
    }

    .ft-lb {
      width: 28px;
      height: 28px;
      background: var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ft-lb svg {
      width: 15px;
      height: 15px;
    }

    .ft-ln {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 900;
      color: #fff;
    }

    .ft-desc {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .36);
      line-height: 1.9;
      max-width: 240px;
      margin-bottom: 18px;
    }

    .ft-soc-row {
      display: flex;
      gap: 7px;
    }

    .ft-soc {
      width: 30px;
      height: 30px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: rgba(255, 255, 255, .38);
      font-size: 10.5px;
      font-weight: 800;
      transition: background .2s, color .2s;
    }

    .ft-soc:hover {
      background: var(--lime);
      color: var(--ink);
    }

    .ft-col h4 {
      font-size: 9.5px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(200, 240, 0, .42);
      margin-bottom: 13px;
    }

    .ft-col a {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 8px;
      text-decoration: none;
      color: rgba(255, 255, 255, .35);
      font-size: 12.5px;
      font-weight: 500;
      transition: color .2s;
      cursor: pointer;
    }

    .ft-col a:hover {
      color: #fff;
    }

    .ft-col a::before {
      content: '';
      width: 3px;
      height: 3px;
      background: currentColor;
      flex-shrink: 0;
      opacity: .4;
    }

    .ft-bigname {
      padding: 0 6%;
      overflow: hidden;
    }

    .ft-big {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(64px, 12vw, 190px);
      font-weight: 900;
      letter-spacing: -.06em;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, .08);
      text-transform: uppercase;
      white-space: nowrap;
      user-select: none;
      line-height: .88;
      transition: -webkit-text-stroke .4s;
    }

    .ft-big:hover {
      -webkit-text-stroke: 1.5px rgba(200, 240, 0, .35);
    }

    .ft-bottom {
      padding: 16px 6%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ft-copy {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .18);
    }

    .ft-legal {
      display: flex;
      gap: 18px;
    }

    .ft-legal a {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .26);
      text-decoration: none;
      transition: color .2s;
      cursor: pointer;
    }

    .ft-legal a:hover {
      color: var(--lime);
    }

    /* ── REVEAL ── */
    .rv {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s, transform .55s;
    }

    .rv.on {
      opacity: 1;
      transform: translateY(0);
    }

    .rv.d1 {
      transition-delay: .06s;
    }

    .rv.d2 {
      transition-delay: .12s;
    }

    .rv.d3 {
      transition-delay: .18s;
    }

    .rv.d4 {
      transition-delay: .24s;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1100px) {

      .nav-links,
      .btn-ghost-nav {
        display: none;
      }

      .ham {
        display: flex;
      }

      .browser {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: static;
        height: auto;
      }

      .snl {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .cross-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cta-band {
        grid-template-columns: 1fr;
      }

      .ft-main {
        grid-template-columns: 1fr 1fr;
      }

      .ph-top {
        grid-template-columns: 1fr;
      }

      .cap-grid {
        grid-template-columns: 1fr 1fr;
      }

      .how-step {
        grid-template-columns: 56px 1fr;
      }

      .how-tag {
        display: none;
      }
    }

    @media(max-width:720px) {
      .nav {
        padding: 0 20px;
      }

      .hero {
        padding: 60px 5% 56px;
      }

      .hero-count-strip {
        flex-wrap: wrap;
        gap: 20px;
      }

      .hcs-item {
        border-right: none;
        margin-right: 0;
      }

      .ph,
      .cap-sec,
      .how-sec,
      .tech-sec {
        padding-left: 5%;
        padding-right: 5%;
      }

      .panel-cta {
        margin-left: 5%;
        margin-right: 5%;
      }

      .cap-grid {
        grid-template-columns: 1fr;
      }

      .snl {
        grid-template-columns: 1fr;
      }

      .ft-main {
        grid-template-columns: 1fr;
        padding: 32px 5%;
      }

      .cross-grid {
        grid-template-columns: 1fr;
      }
    }
  