 /* ═══════════════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      /* prevent horizontal scroll from escaped absolute elements */
      overflow-x: hidden;
    }

    body {
      overflow-x: hidden;
      background: #f8fafc;
      color: #1e293b;
      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      width: 100%;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* ═══════════════════════════════════════════════════════
       CSS CUSTOM PROPERTIES
    ═══════════════════════════════════════════════════════ */
    :root {
      --orange: #f97316;
      --orange-d: #c2530a;
      --teal: #0ea5c8;
      --teal-d: #0a7a97;
      --navy: #0f2744;

      --bg: #f8fafc;
      --bg-card: #ffffff;
      --bg-section: #f1f5f9;
      --text: #1e293b;
      --text-2: #475569;
      --text-3: #94a3b8;
      --border: #e2e8f0;
      --border-t: rgba(14, 165, 200, 0.22);

      --sh-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
      --sh-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
      --sh-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);

      /* layout */
      --max-w: 1280px;
      --pad-h: 40px;
      /* horizontal section padding */
    }

    /* ═══════════════════════════════════════════════════════
       TYPOGRAPHY HELPERS
    ═══════════════════════════════════════════════════════ */
    .display {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.03em;
      line-height: 1;
    }

    .mono {
      font-family: 'JetBrains Mono', monospace;
    }

    /* ═══════════════════════════════════════════════════════
       LAYOUT HELPERS
    ═══════════════════════════════════════════════════════ */
    /* Every section's inner content wrapper */
    .wrap {
      width: 100%;
      max-width: var(--max-w);
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--pad-h);
      padding-right: var(--pad-h);
    }

    /* Full-bleed section backgrounds */
    .sec {
      width: 100%;
      position: relative;
    }

    /* ═══════════════════════════════════════════════════════
       GRID BACKGROUND (hero)
    ═══════════════════════════════════════════════════════ */
    .grid-bg {
      background-color: var(--bg);
      background-image:
        linear-gradient(rgba(14, 165, 200, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 200, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(14, 165, 200, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 200, 0.03) 1px, transparent 1px);
      background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
    }

    /* ═══════════════════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(248, 250, 252, 0.93);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 10px var(--pad-h);
    }

    .nav-logo {
      height: 35px;
      width: auto;
      filter: drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.15)) drop-shadow(-1px -1px 3px rgba(255, 255, 255, 0.8));
    }

    .nav-sub {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--text-2);
      margin-left: 10px;
    }

    /* ═══════════════════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 10px;
      padding: 12px 24px;
      transition: transform .2s, box-shadow .2s, background .2s;
      white-space: normal;
      text-align: center;
      line-height: 1.4;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 4px 14px rgba(249, 115, 22, .28);
    }

    .btn-primary:hover {
      background: var(--orange-d);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(249, 115, 22, .38);
    }

    .btn-primary:disabled {
      opacity: .6;
      transform: none;
      cursor: not-allowed;
    }

    .btn-outline {
      background: transparent;
      color: var(--teal-d);
      border: 2px solid var(--teal);
    }

    .btn-outline:hover {
      background: var(--teal);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════════════════════
       CARDS
    ═══════════════════════════════════════════════════════ */
    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: var(--sh-sm);
    }

    .card-md {
      background: var(--bg-card);
      border: 1px solid var(--border-t);
      border-radius: 14px;
      box-shadow: var(--sh-md);
    }

    /* ═══════════════════════════════════════════════════════
       TAG CHIP
    ═══════════════════════════════════════════════════════ */
    .tag {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--teal-d);
      border: 1px solid rgba(14, 165, 200, .28);
      background: rgba(14, 165, 200, .07);
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* ═══════════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════════ */
    .hero {
      min-height: auto;
      display: flex;
      align-items: flex-start;
      padding-top: 76px;
      /* nav height */
      overflow: hidden;
      /* clip decorative orbs */
    }

    .hero-wrap {
      padding-top: 48px;
      padding-bottom: 28px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-line {
      display: block;
      word-break: keep-all;
      overflow-wrap: break-word;
    }

    /* Blueprint image frame */
    .bp-frame {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(14, 165, 200, .25);
      box-shadow: var(--sh-lg);
    }

    .bp-frame img {
      width: 100%;
      aspect-ratio: 16/11;
      object-fit: cover;
      display: block;
    }

    .hero-grid>div:last-child {
      max-width: 560px;
      width: 100%;
      margin-left: auto;
    }

    .bp-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(255, 255, 255, .06) 0%, transparent 35%,
          transparent 65%, rgba(15, 23, 42, .55) 100%);
    }

    .bp-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(10, 16, 28, .76);
      border: 1px solid rgba(14, 165, 200, .38);
      border-radius: 6px;
      padding: 5px 12px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      color: #5de0f8;
      letter-spacing: .1em;
    }

    .bp-cap {
      position: absolute;
      bottom: 12px;
      left: 14px;
      right: 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      color: rgba(94, 224, 248, .85);
    }

    .corner-tl,
    .corner-br {
      position: absolute;
      width: 52px;
      height: 52px;
    }

    .corner-tl {
      top: -4px;
      right: -4px;
      border-top: 2.5px solid var(--orange);
      border-right: 2.5px solid var(--orange);
      opacity: .65;
    }

    .corner-br {
      bottom: -4px;
      left: -4px;
      border-bottom: 2.5px solid var(--teal);
      border-left: 2.5px solid var(--teal);
      opacity: .65;
    }

    /* ═══════════════════════════════════════════════════════
       METRICS BAR
    ═══════════════════════════════════════════════════════ */
    .metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 28px;
      position: relative;
      z-index: 3;
    }

    .metric {
      border-radius: 12px;
      padding: 18px 16px;
    }

    .metric-o {
      border-left: 4px solid var(--orange);
      background: linear-gradient(135deg, rgba(249, 115, 22, .06), var(--bg-card));
      box-shadow: var(--sh-sm);
    }

    .metric-t {
      border-left: 4px solid var(--teal);
      background: linear-gradient(135deg, rgba(14, 165, 200, .06), var(--bg-card));
      box-shadow: var(--sh-sm);
    }

    /* ═══════════════════════════════════════════════════════
       CREDENTIALS
    ═══════════════════════════════════════════════════════ */
    .cred-row {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 28px;
    }

    .cred-divider {
      width: 1px;
      background: var(--border);
      align-self: stretch;
      flex-shrink: 0;
    }

    .cred-flags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      flex: 1 1 auto;
    }

    .flag-card {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 18px;
      box-shadow: var(--sh-sm);
      transition: transform .2s, box-shadow .2s;
    }

    .flag-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--sh-md);
    }

    /* ═══════════════════════════════════════════════════════
       3-STEP CARDS
    ═══════════════════════════════════════════════════════ */
    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .step-card {
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .step-line {
      height: 1px;
      flex: 1;
    }

    .step-icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .bullet-row {
      display: grid;
      grid-template-columns: 10px 1fr;
      column-gap: 8px;
      align-items: start;
      font-size: .85rem;
      color: var(--text-2);
      margin-bottom: 8px;
      line-height: 1.55;
    }

    .bullet-row>span,
    .bullet-row>div {
      width: 8px;
      height: 8px;
      min-width: 8px;
      margin-top: 0.48em;
    }

    /* ═══════════════════════════════════════════════════════
       SUBSIDY SECTION
    ═══════════════════════════════════════════════════════ */
    .sub-card {
      background: linear-gradient(135deg, #fff8f4, #ffffff);
      border: 1px solid rgba(249, 115, 22, .2);
      border-radius: 20px;
      box-shadow: var(--sh-md);
      position: relative;
      overflow: hidden;
    }

    .sub-stripe {
      position: absolute;
      top: 0;
      right: 0;
      width: 32%;
      height: 100%;
      background: repeating-linear-gradient(-45deg, transparent, transparent 7px,
          rgba(249, 115, 22, .04) 7px, rgba(249, 115, 22, .04) 14px);
      border-left: 1px dashed rgba(249, 115, 22, .15);
    }

    .sub-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 44px;
      align-items: center;
      padding: 44px 48px;
      position: relative;
      z-index: 2;
    }

    /* ═══════════════════════════════════════════════════════
       PULSE BADGE
    ═══════════════════════════════════════════════════════ */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, .5);
      }

      70% {
        box-shadow: 0 0 0 14px rgba(249, 115, 22, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
      }
    }

    .pulse {
      animation: pulse 2.5s ease-out infinite;
      border-radius: 50%;
    }

    /* ═══════════════════════════════════════════════════════
       BEFORE/AFTER
    ═══════════════════════════════════════════════════════ */
    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .broom {
      fill: rgba(14, 165, 200, .08);
      stroke: rgba(14, 165, 200, .52);
      stroke-width: 1.5;
    }

    .broom-after {
      fill: rgba(249, 115, 22, .08);
      stroke: rgba(249, 115, 22, .52);
      stroke-width: 1.5;
    }

    .btext {
      fill: #475569;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9.5px;
    }

    /* ═══════════════════════════════════════════════════════
       FORM
    ═══════════════════════════════════════════════════════ */
    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-label {
      display: block;
      margin-bottom: 6px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--text-2);
      letter-spacing: .01em;
    }

    .form-input {
      width: 100%;
      padding: 11px 16px;
      background: var(--bg-section);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: .875rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }

    .form-input:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(14, 165, 200, .12);
    }

    .form-input::placeholder {
      color: var(--text-3);
    }

    .form-input option {
      background: #fff;
      color: var(--text);
    }

    .radio-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .radio-card {
      border: 1.5px solid var(--border);
      background: var(--bg-section);
      border-radius: 10px;
      padding: 12px 8px;
      text-align: center;
      cursor: pointer;
      transition: border-color .18s, background .18s;
    }

    .radio-card:hover {
      border-color: var(--teal);
      background: rgba(14, 165, 200, .05);
    }

    .radio-card.sel {
      border-color: var(--orange);
      background: rgba(249, 115, 22, .07);
    }

    /* ═══════════════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════════════ */
    .footer {
      background: var(--navy);
      color: rgba(240, 246, 252, .82);
      padding: 56px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-logo {
      height: 35px;
      width: auto;
      object-fit: contain;
      margin-bottom: 14px;
      /* remove any invert/brightness — keep logo colours */
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .22));
    }

    /* ═══════════════════════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.vis {
      opacity: 1;
      transform: none;
    }

    /* ═══════════════════════════════════════════════════════
       ── RESPONSIVE ──────────────────────────────────────
       All breakpoints in one place, INSIDE <head>
    ═══════════════════════════════════════════════════════ */

    /* ── ≤ 1100px ── */
    @media (max-width: 1100px) {
      :root {
        --pad-h: 28px;
      }
    }

    /* ── ≤ 900px ── tablets */
    @media (max-width: 900px) {
      :root {
        --pad-h: 20px;
      }

      .nav-sub {
        display: none;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .hero-wrap {
        padding-top: 32px;
        padding-bottom: 48px;
      }

      .metrics {
        grid-template-columns: repeat(2, 1fr);
      }

      .cred-divider {
        display: none;
      }

      .step-grid {
        grid-template-columns: 1fr;
      }

      .sub-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 24px;
      }

      .sub-stripe {
        display: none;
      }

      .ba-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .form-grid-2 {
        grid-template-columns: 1fr;
      }
    }

    /* ── ≤ 600px ── mobile */
    @media (max-width: 600px) {
      :root {
        --pad-h: 16px;
      }

      .hero {
        padding-top: 68px;
      }

      h1.hero-h {
        font-size: clamp(2.4rem, 10vw, 3.5rem) !important;
      }

      .metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .metric {
        padding: 14px 12px;
      }

      .sub-inner {
        padding: 22px 16px;
        gap: 22px;
      }

      .radio-row {
        grid-template-columns: 1fr;
      }

      .step-card {
        padding: 22px 18px;
      }

      #submit-btn {
        font-size: 0.85rem;
        padding: 12px 16px;
      }
    }

    /* ── ≤ 400px ── small phones */
    @media (max-width: 400px) {
      :root {
        --pad-h: 12px;
      }

      .metrics {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }
    }

    /* ── Agency override additions (no conflicts with existing style.css) ── */
    /* Ticker / marquee strip */
    .ticker-wrap {
      overflow: hidden;
      background: var(--orange);
      padding: 10px 0;
      border-top: 1px solid rgba(0, 0, 0, .08);
      border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .ticker-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: ticker 28s linear infinite;
    }

    .ticker-item {
      white-space: nowrap;
      font-family: 'JetBrains Mono', monospace;
      font-size: .72rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: .08em;
      padding: 0 32px;
      text-transform: uppercase;
    }

    .ticker-dot {
      color: rgba(255, 255, 255, .5);
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* Services grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .service-card {
      background: var(--bg-card, var(--bg-section));
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: transform .2s, border-color .2s, box-shadow .2s;
      cursor: default;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--orange);
      box-shadow: 0 8px 32px rgba(249, 115, 22, .1);
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 14px;
      display: block;
    }

    .service-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: .85rem;
      color: var(--text-2);
      line-height: 1.75;
    }

    .service-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60px;
      height: 60px;
      border-radius: 100% 0 0 0;
    }

    /* Industries strip */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .industry-pill {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--text);
      background: var(--bg);
      transition: border-color .18s, background .18s;
    }

    .industry-pill:hover {
      border-color: var(--teal-d);
      background: rgba(14, 165, 200, .05);
    }

    .industry-pill span.pill-icon {
      font-size: 1.3rem;
    }

    /* Why us - split layout */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }

    @media (max-width: 768px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    .why-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--bg);
      transition: border-color .2s;
    }

    .why-item:hover {
      border-color: var(--orange);
    }

    .why-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--orange);
      min-width: 48px;
      line-height: 1;
    }

    .why-item h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .why-item p {
      font-size: .83rem;
      color: var(--text-2);
      line-height: 1.7;
    }

    /* Logo trust strip */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
      align-items: center;
    }

    .trust-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: .7rem;
      font-weight: 600;
      color: var(--text-2);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* CTA banner */
    .cta-banner {
      background: linear-gradient(135deg, rgba(249, 115, 22, .12) 0%, rgba(14, 165, 200, .10) 100%);
      border: 1px solid rgba(249, 115, 22, .25);
      border-radius: 18px;
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.04'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .cta-banner h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 14px;
      position: relative;
    }

    .cta-banner p {
      font-size: .95rem;
      color: var(--text-2);
      max-width: 520px;
      margin: 0 auto 28px;
      line-height: 1.75;
      position: relative;
    }

    .cta-banner .btn {
      position: relative;
    }

    /* Scroll to top micro-detail */
    .back-top {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: .68rem;
      color: var(--text-3);
      text-decoration: none;
      margin-top: 24px;
    }

    .back-top:hover {
      color: var(--orange);
    }