:root {
  /* === FROG IT Dark-Terminal Theme === */
  --bg: #07090b;
  --bg-elev: #0c1014;
  --ink: #e8eff0;
  --ink-dim: #6c7a82;
  --accent: #00ffd5;
  --accent-soft: rgba(0, 255, 213, 0.10);
  --accent-line: rgba(0, 255, 213, 0.22);
  --grid: rgba(255, 255, 255, 0.035);
  --font: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  /* === Legacy aliases from about.html === */
  --bg-primary: #07090b;
  --bg-secondary: #0c1014;
  --bg-tertiary: #0c1014;
  --accent-primary: #00ffd5;
  --accent-secondary: #00ffd5;
  --accent-tertiary: #00ffd5;
  --text-primary: #e8eff0;
  --text-secondary: #e8eff0;
  --text-muted: #6c7a82;
  --border-color: rgba(0, 255, 213, 0.22);
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'JetBrains Mono', monospace;
  /* === Legacy aliases from contact.html === */
  --bg-surface: #07090b;
  --bg-elevated: #0c1014;
  --accent-dim: #00ffd5;
  --accent-glow: rgba(0, 255, 213, 0.15);
  --text: #e8eff0;
  --text-dim: #6c7a82;
  --border: rgba(0, 255, 213, 0.22);
  --green: #00ffd5;
  --yellow: #00ffd5;
  --cyan: #00ffd5;
}

       ============================================ */

       RESET & BASE
       ============================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

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

    body {
      font-family: var(--font);
      background-color: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    /* ---- Grid overlay ---- */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
      z-index: 0;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }

    /* ---- Top hairline accent bar ---- */
    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(0, 255, 213, 0.4);
      z-index: 9999;
    }

       TOPBAR
       ============================================ */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 28px;
      background: rgba(7, 9, 11, 0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--grid);
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-dim);
    }

    .topbar-left .accent-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 6px var(--accent);
      animation: pulse-dot 2.4s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--accent); }
      50% { opacity: 0.4; box-shadow: 0 0 2px var(--accent); }
    }

    .topbar-right {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--ink-dim);
    }

       NAVIGATION
       ============================================ */
    nav {
      position: fixed;
      top: 40px;
      left: 0;
      right: 0;
      z-index: 99;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      padding: 12px 28px;
      background: rgba(7, 9, 11, 0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--grid);
    }

    nav a {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-dim);
      text-decoration: none;
      transition: color 0.2s ease;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }

    nav a:hover {
      color: var(--accent);
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

       HERO SECTION
       ============================================ */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 80px;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid var(--accent-line);
      padding: 5px 14px;
      margin-bottom: 28px;
      background: var(--accent-soft);
    }

    .hero-title {
      font-size: clamp(2.6rem, 7vw, 5.2rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
      color: var(--ink);
    }

    .hero-title .accent-letter {
      color: var(--accent);
      text-shadow: 0 0 20px rgba(0, 255, 213, 0.5);
    }

    .hero-lede {
      max-width: 640px;
      font-size: 1rem;
      font-weight: 300;
      color: var(--ink-dim);
      line-height: 1.75;
      margin-bottom: 40px;
    }

    /* ---- Service Pills ---- */
    .pills-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 44px;
    }

    .pill {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-dim);
      border: 1px solid var(--grid);
      padding: 5px 14px;
      background: rgba(255, 255, 255, 0.03);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .pill:hover {
      border-color: var(--accent-line);
      color: var(--accent);
      background: var(--accent-soft);
    }

    /* ---- Terminal Block ---- */
    .terminal {
      background: var(--bg-elev);
      border: 1px solid var(--accent-line);
      border-radius: 8px;
      padding: 22px 32px;
      margin-bottom: 40px;
      text-align: left;
      min-width: 320px;
      max-width: 560px;
      width: 100%;
      box-shadow: 0 0 40px rgba(0, 255, 213, 0.06), inset 0 0 60px rgba(0, 0, 0, 0.3);
    }

    .terminal::before {
      content: '●  ●  ●';
      display: block;
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      color: var(--ink-dim);
      margin-bottom: 16px;
      opacity: 0.5;
    }

    .terminal-line {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 6px;
      font-size: 0.88rem;
    }

    .terminal-prompt {
      color: var(--accent);
      user-select: none;
    }

    .terminal-cmd {
      color: var(--ink);
    }

    .terminal-out {
      color: var(--ink-dim);
      font-size: 0.82rem;
    }

    .terminal-out .ok {
      color: var(--accent);
    }

    .terminal-out .accent-val {
      color: var(--accent);
    }

    /* ---- CTA Buttons ---- */
    .cta-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font);
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 4px;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--bg);
      font-weight: 700;
    }

    .btn-primary:hover {
      background: #33ffdd;
      box-shadow: 0 0 20px rgba(0, 255, 213, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-dim);
      border: 1px solid var(--grid);
    }

    .btn-outline:hover {
      border-color: var(--accent-line);
      color: var(--accent);
      background: var(--accent-soft);
    }

       SERVICES SECTION
       ============================================ */
    .services {
      position: relative;
      z-index: 1;
      padding: 100px 24px 120px;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .section-heading {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 56px;
      color: var(--ink);
    }

    .cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .card {
      background: var(--bg-elev);
      border: 1px solid var(--accent-line);
      border-radius: 8px;
      padding: 36px 32px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      border-color: rgba(0, 255, 213, 0.45);
      box-shadow: 0 0 30px rgba(0, 255, 213, 0.08);
    }

    .card-icon {
      font-size: 1.4rem;
      margin-bottom: 18px;
      display: block;
    }

    .card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 18px;
      letter-spacing: 0.01em;
    }

    .card p {
      font-size: 0.88rem;
      color: var(--ink-dim);
      line-height: 1.8;
      font-weight: 300;
    }

    .card p strong {
      color: var(--ink);
      font-weight: 500;
    }

    .card p em {
      color: var(--accent);
      font-style: normal;
    }

       FOOTER
       ============================================ */
    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--grid);
      padding: 28px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-left {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-dim);
    }

    .footer-right {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-dim);
    }

    .footer-right a {
      color: var(--ink-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-right a:hover {
      color: var(--accent);
    }

       ANIMATIONS — fade-up (NexusIQ style)
       ============================================ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .d1 { animation-delay: 0.05s; }
    .d2 { animation-delay: 0.12s; }
    .d3 { animation-delay: 0.20s; }
    .d4 { animation-delay: 0.28s; }
    .d5 { animation-delay: 0.36s; }
    .d6 { animation-delay: 0.44s; }
    .d7 { animation-delay: 0.52s; }
    .d8 { animation-delay: 0.60s; }

       RESPONSIVE
       ============================================ */
    @media (max-width: 720px) {
      nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
      }

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

      .terminal {
        min-width: unset;
        padding: 18px 20px;
      }

      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 130px 16px 60px;
      }

      .topbar {
        padding: 10px 16px;
      }

      nav {
        padding: 10px 16px;
      }
    }

       SCROLLBAR
       ============================================ */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--accent-line);
      border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent);
    }

    /* Selection */
    ::selection {
      background: rgba(0, 255, 213, 0.2);
      color: var(--ink);
    }

/* about.html additions */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .logo-text {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--accent-primary);
        }

        nav {
            display: flex;
            gap: 8px;
        }

        nav a {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.2s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--accent-primary);
            background: rgba(0, 255, 157, 0.1);
        }

        nav a.active {
            color: var(--accent-primary);
            background: rgba(0, 255, 157, 0.1);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: var(--accent-primary);
            border-radius: 50%;
        }

        main {
            position: relative;
            z-index: 1;
            padding-top: 60px;
        }

        .hero {
            min-height: calc(100vh - 60px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 40px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .eyebrow {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--accent-primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards;
        }

        .hero h1 {
            font-family: var(--font-mono);
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.1s forwards;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-section {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px 80px;
        }

        .content-block {
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeUp 0.6s ease forwards;
        }

        .content-block:nth-child(1) { animation-delay: 0.2s; }
        .content-block:nth-child(2) { animation-delay: 0.3s; }
        .content-block:nth-child(3) { animation-delay: 0.4s; }
        .content-block:nth-child(4) { animation-delay: 0.5s; }

        .content-block p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.8;
            text-align: left;
        }

        .terminal-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            margin-top: 48px;
            text-align: left;
            max-width: 600px;
            width: 100%;
            opacity: 0;
            animation: fadeUp 0.6s ease 0.6s forwards;
        }

        .terminal-header {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .terminal-dot.red { background: #ff5f57; }
        .terminal-dot.yellow { background: #febc2e; }
        .terminal-dot.green { background: #28c840; }

        .terminal-body {
            font-family: var(--font-mono);
            font-size: 14px;
            line-height: 2;
        }

        .terminal-line {
            display: flex;
            gap: 12px;
        }

        .terminal-prompt {
            color: var(--accent-primary);
        }

        .terminal-key {
            color: var(--text-muted);
            min-width: 120px;
        }

        .terminal-value {
            color: var(--text-primary);
        }

        .footer {
            position: relative;
            z-index: 1;
            padding: 40px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .footer-logo {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }

        .footer-logo span {
            color: var(--accent-primary);
        }

        .footer-text {
            font-size: 14px;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            gap: 24px;
            margin-top: 8px;
        }

        .footer-links a {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--accent-primary);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .topbar {
                padding: 0 20px;
            }

            nav a {
                padding: 8px 12px;
                font-size: 12px;
            }

            .hero {
                padding: 60px 20px;
            }

            .content-section {
                padding: 0 20px 60px;
            }

            .terminal-card {
                padding: 24px;
            }

            .terminal-key {
                min-width: 100px;
            }
        }

/* contact.html additions */
*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'JetBrains Mono', 'Courier New', monospace;
      background-color: var(--bg);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      line-height: 1.6;
    }

    /* ── TOPBAR ── */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 14, 20, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }

    .topbar-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: var(--text);
    }

    .brand-logo {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }

    .brand-name {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--accent);
    }

    .brand-name span {
      color: var(--text-muted);
      font-weight: 400;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      letter-spacing: 0.02em;
    }

    nav a:hover {
      color: var(--text);
      background: var(--bg-elevated);
    }

    nav a.active {
      color: var(--accent);
    }

    nav a + a::before {
      content: '|';
      margin-right: 0.75rem;
      color: var(--text-dim);
    }

    /* ── MAIN ── */
    main {
      flex: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 5rem 2rem 4rem;
      width: 100%;
    }

    /* ── PAGE HEADER ── */
    .page-header {
      margin-bottom: 3.5rem;
    }

    .eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .eyebrow::before {
      content: '//';
      color: var(--text-dim);
    }

    .page-title {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .page-title .hl {
      color: var(--accent);
      text-shadow: 0 0 20px var(--accent-glow);
    }

    /* ── TERMINAL BLOCK ── */
    .terminal {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 3.5rem;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

    .terminal-bar {
      background: var(--bg-elevated);
      padding: 0.6rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-bottom: 1px solid var(--border);
    }

    .tb-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .tb-dot.red { background: #ff5f57; }
    .tb-dot.yellow { background: #febc2e; }
    .tb-dot.green { background: #28c840; }

    .tb-title {
      margin-left: 0.5rem;
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    .terminal-body {
      padding: 1.5rem 2rem;
    }

    .tline {
      display: flex;
      gap: 1rem;
      padding: 0.3rem 0;
      font-size: 0.9rem;
      opacity: 0;
      transform: translateX(-8px);
      animation: tline-in 0.4s ease forwards;
    }

    .tline:nth-child(1) { animation-delay: 0.1s; }
    .tline:nth-child(2) { animation-delay: 0.25s; }
    .tline:nth-child(3) { animation-delay: 0.4s; }
    .tline:nth-child(4) { animation-delay: 0.55s; }

    @keyframes tline-in {
      to { opacity: 1; transform: translateX(0); }
    }

    .tprompt {
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
    }

    .tkey {
      color: var(--cyan);
      flex-shrink: 0;
      min-width: 80px;
    }

    .tval {
      color: var(--text);
    }

    /* ── INVITE SECTION ── */
    .invite-section {
      margin-bottom: 3rem;
    }

    .invite-heading {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .invite-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    /* ── CTA BUTTON ── */
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--accent);
      color: #0a0e14;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 0.85rem 1.8rem;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      letter-spacing: 0.02em;
      box-shadow: 0 0 0 0 var(--accent-glow);
    }

    .cta-btn:hover {
      background: var(--accent-dim);
      box-shadow: 0 0 24px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.3);
      transform: translateY(-2px);
    }

    .cta-btn:active {
      transform: translateY(0);
    }

    .cta-btn .arrow {
      transition: transform 0.2s;
    }

    .cta-btn:hover .arrow {
      transform: translateX(4px);
    }

    /* ── INFO BLOCK ── */
    .info-block {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--accent);
      border-radius: 8px;
      padding: 1.5rem 2rem;
      margin-bottom: 3rem;
    }

    .info-block p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem;
      text-align: center;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-brand {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 0.5rem;
      letter-spacing: 0.05em;
    }

    .footer-tagline {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .footer-copy {
      font-size: 0.72rem;
      color: var(--text-dim);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .topbar-inner {
        flex-direction: column;
        height: auto;
        padding: 0.75rem 0;
        gap: 0.75rem;
      }

      nav a + a::before {
        content: '';
        margin: 0;
      }

      main {
        padding: 3rem 1.25rem 3rem;
      }

      .terminal-body {
        padding: 1rem 1.25rem;
      }

      .tline {
        flex-wrap: wrap;
      }

      .tkey {
        min-width: unset;
      }
    }