/* ══════════════════════════════════════════════════════════ */
    /* Humanese — Utopian Quantum Design System                 */
    /* Inspired by: Future tech, quantum physics, AI, utopia    */
    /* Palette: Orange, Blue, Green, Red, Yellow (vibrant)      */
    /* ══════════════════════════════════════════════════════════ */
    :root {
      --bg: #08090f;
      --bg2: #0d0e18;
      --surf: rgba(255, 255, 255, 0.03);
      --surf2: rgba(255, 255, 255, 0.06);
      --bd: rgba(255, 255, 255, 0.06);
      --bd2: rgba(255, 255, 255, 0.12);
      --t: #f2f2f7;
      --ts: rgba(255, 255, 255, 0.6);
      --tt: rgba(255, 255, 255, 0.3);
      --orange: #ff6b2b;
      --orange-dim: rgba(255, 107, 43, 0.12);
      --blue: #3b82f6;
      --blue-dim: rgba(59, 130, 246, 0.12);
      --green: #10b981;
      --green-dim: rgba(16, 185, 129, 0.12);
      --red: #ef4444;
      --red-dim: rgba(239, 68, 68, 0.12);
      --yellow: #fbbf24;
      --yellow-dim: rgba(251, 191, 36, 0.12);
      --cyan: #00ffcc;
      --purple: #8b5cf6;
      --sans: 'Inter', system-ui, sans-serif;
      --mono: 'JetBrains Mono', monospace;
      --r: 16px;
      --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--t);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    /* ── SMART NAVBAR (hide↓ show↑) ─────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 64px;
      background: rgba(8, 9, 15, 0.88);
      -webkit-backdrop-filter: blur(20px) saturate(1.6);
      backdrop-filter: blur(20px) saturate(1.6);
      border-bottom: 1px solid var(--bd);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      z-index: 1000;
      transition: transform 0.35s ease
    }

    .nav.hidden {
      transform: translateY(-100%)
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1280px;
      width: 100%
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--t);
      font-weight: 800;
      font-size: 16px
    }

    .nav-logo img {
      height: 28px
    }

    .nav-links {
      display: flex;
      gap: 4px;
      align-items: center
    }

    .nav-links a {
      color: var(--ts);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 13px;
      border-radius: 8px;
      transition: var(--tr)
    }

    .nav-links a:hover {
      color: var(--t);
      background: var(--surf2)
    }

    .nav-cta {
      background: var(--orange) !important;
      color: #fff !important;
      font-weight: 700 !important;
      padding: 8px 18px !important;
      border-radius: 10px !important
    }

    .nav-cta:hover {
      opacity: 0.9
    }

    /* ── UTILITY ─────────────────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px
    }

    .section {
      padding: 100px 0
    }

    .label {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 12px
    }

    .title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 16px
    }

    .sub {
      font-size: 1.05rem;
      color: var(--ts);
      max-width: 560px;
      line-height: 1.7
    }

    /* ── HERO SECTION ────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 64px
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0
    }

    #quantum-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.5
    }

    .hero-orb-1 {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
      top: 20%;
      left: -10%;
      filter: blur(60px);
      animation: orbFloat 12s ease-in-out infinite
    }

    .hero-orb-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      bottom: 10%;
      right: -5%;
      filter: blur(50px);
      animation: orbFloat 10s ease-in-out infinite reverse
    }

    .hero-orb-3 {
      position: absolute;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      filter: blur(40px);
      animation: orbPulse 8s ease-in-out infinite
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-30px) scale(1.1)
      }
    }

    @keyframes orbPulse {

      0%,
      100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1)
      }

      50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2)
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 0 24px
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-dim);
      border: 1px solid rgba(255, 107, 43, 0.2);
      border-radius: 100px;
      padding: 6px 16px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      color: var(--orange);
      margin-bottom: 28px;
      letter-spacing: 1px
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      animation: dotPulse 2s ease-in-out infinite
    }

    @keyframes dotPulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 900;
      letter-spacing: -3px;
      line-height: 1;
      margin-bottom: 24px
    }

    .hero h1 .grad-orange {
      background: linear-gradient(135deg, var(--orange), var(--yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero h1 .grad-blue {
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--ts);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.7
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 14px 28px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      font-family: var(--sans);
      cursor: pointer;
      transition: var(--tr);
      border: none
    }

    .btn-orange {
      background: var(--orange);
      color: #fff
    }

    .btn-orange:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 107, 43, 0.3)
    }

    .btn-ghost {
      background: var(--surf2);
      color: var(--t);
      border: 1px solid var(--bd2)
    }

    .btn-ghost:hover {
      background: var(--surf2);
      border-color: var(--orange);
      transform: translateY(-2px)
    }

    /* ── LIVE STATS BAR ──────────────────────────────────── */
    .stats-bar {
      background: var(--bg2);
      border-top: 1px solid var(--bd);
      border-bottom: 1px solid var(--bd);
      overflow: hidden
    }

    .stats-inner {
      display: flex;
      gap: 0;
      max-width: 1400px;
      margin: 0 auto
    }

    .stat-item {
      flex: 1;
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid var(--bd);
      transition: var(--tr)
    }

    .stat-item:last-child {
      border-right: none
    }

    .stat-item:hover {
      background: var(--surf)
    }

    .stat-icon {
      font-size: 1.5rem;
      margin-bottom: 4px
    }

    .stat-val {
      font-family: var(--mono);
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -1px
    }

    .stat-val.orange {
      color: var(--orange)
    }

    .stat-val.blue {
      color: var(--blue)
    }

    .stat-val.green {
      color: var(--green)
    }

    .stat-val.yellow {
      color: var(--yellow)
    }

    .stat-val.red {
      color: var(--red)
    }

    .stat-lbl {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--tt);
      margin-top: 2px;
      font-family: var(--mono)
    }

    /* ── ECOSYSTEM GRID ──────────────────────────────────── */
    .eco-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px
    }

    .eco-card {
      background: var(--surf);
      border: 1px solid var(--bd);
      border-radius: var(--r);
      padding: 28px;
      transition: all 0.3s;
      text-decoration: none;
      color: var(--t);
      position: relative;
      overflow: hidden;
      display: block
    }

    .eco-card:hover {
      border-color: var(--bd2);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3)
    }

    .eco-card .card-glow {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0;
      transition: opacity 0.4s;
      top: -60px;
      right: -60px
    }

    .eco-card:hover .card-glow {
      opacity: 0.15
    }

    .eco-icon {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block
    }

    .eco-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -0.5px
    }

    .eco-card p {
      font-size: 13px;
      color: var(--ts);
      line-height: 1.6;
      margin-bottom: 12px
    }

    .eco-link {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px
    }

    .eco-link.orange {
      color: var(--orange)
    }

    .eco-link.blue {
      color: var(--blue)
    }

    .eco-link.green {
      color: var(--green)
    }

    .eco-link.yellow {
      color: var(--yellow)
    }

    .eco-link.red {
      color: var(--red)
    }

    .eco-link.purple {
      color: var(--purple)
    }

    /* ── RENTAL MATRIX ───────────────────────────────────── */
    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px
    }

    .matrix-card {
      background: var(--surf);
      border: 1px solid var(--bd);
      border-radius: var(--r);
      padding: 24px;
      transition: var(--tr)
    }

    .matrix-card:hover {
      border-color: var(--bd2);
      transform: translateY(-2px)
    }

    .matrix-emoji {
      font-size: 1.8rem;
      margin-bottom: 8px
    }

    .matrix-card h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px
    }

    .matrix-card p {
      font-size: 12px;
      color: var(--ts);
      line-height: 1.5
    }

    .matrix-tax {
      font-family: var(--mono);
      font-size: 11px;
      margin-top: 8px;
      padding: 4px 8px;
      border-radius: 6px;
      display: inline-block
    }

    .tax-10 {
      background: var(--orange-dim);
      color: var(--orange)
    }

    .tax-low {
      background: var(--green-dim);
      color: var(--green)
    }

    /* ── CRYPTO SECTION ──────────────────────────────────── */
    .crypto-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .crypto-pill {
      flex: 1;
      min-width: 200px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--surf);
      border: 1px solid var(--bd);
      border-radius: 12px;
      padding: 16px;
      transition: var(--tr)
    }

    .crypto-pill:hover {
      border-color: var(--bd2)
    }

    .coin-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 900
    }

    .coin-btc {
      background: var(--orange-dim);
      color: var(--orange)
    }

    .coin-eth {
      background: var(--blue-dim);
      color: var(--blue)
    }

    .coin-valle {
      background: var(--yellow-dim);
      color: var(--yellow)
    }

    .crypto-info {
      flex: 1
    }

    .crypto-name {
      font-size: 13px;
      font-weight: 600
    }

    .crypto-price {
      font-family: var(--mono);
      font-size: 1.1rem;
      font-weight: 800
    }

    .crypto-chg {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 600
    }

    .up {
      color: var(--green)
    }

    .down {
      color: var(--red)
    }

    .donate-box {
      margin-top: 24px;
      background: linear-gradient(135deg, var(--orange-dim), var(--yellow-dim));
      border: 1px solid rgba(255, 107, 43, 0.15);
      border-radius: var(--r);
      padding: 28px;
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap
    }

    .donate-box h3 {
      font-size: 1.1rem;
      font-weight: 800
    }

    .donate-box p {
      font-size: 13px;
      color: var(--ts);
      line-height: 1.6
    }

    .wallet-addr {
      font-family: var(--mono);
      font-size: 12px;
      background: rgba(0, 0, 0, 0.3);
      padding: 10px 14px;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--tr);
      word-break: break-all;
      color: var(--yellow)
    }

    .wallet-addr:hover {
      background: rgba(0, 0, 0, 0.5)
    }

    /* ── LANGUAGES CAROUSEL ──────────────────────────────── */
    .lang-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center
    }

    .lang-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 18px;
      border: 1px solid var(--bd);
      border-radius: 100px;
      background: var(--surf);
      color: var(--t);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: var(--tr)
    }

    .lang-chip:hover {
      border-color: var(--orange);
      background: var(--orange-dim);
      transform: translateY(-2px)
    }

    .flag {
      font-size: 1.2rem
    }

    /* ── GUARDIAN ─────────────────────────────────────────── */
    .guardian-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center
    }

    .directive {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid var(--bd)
    }

    .dir-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0
    }

    .dir-dot.armed {
      background: var(--orange);
      animation: dotPulse 2s ease-in-out infinite
    }

    .dir-name {
      font-size: 13px;
      font-weight: 500;
      flex: 1
    }

    .dir-stat {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 600;
      color: var(--green)
    }

    .dir-stat.armed {
      color: var(--orange)
    }

    .g-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px
    }

    .g-stat {
      background: var(--surf);
      border: 1px solid var(--bd);
      border-radius: 12px;
      padding: 16px;
      text-align: center
    }

    .g-stat .val {
      font-family: var(--mono);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--green)
    }

    .g-stat .lbl {
      font-size: 11px;
      color: var(--tt);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px
    }

    /* ── FOOTER ───────────────────────────────────────────── */
    .footer {
      background: var(--bg2);
      border-top: 1px solid var(--bd);
      padding: 60px 0 30px
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--ts);
      margin-top: 12px;
      line-height: 1.7
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--tt);
      margin-bottom: 12px
    }

    .footer-col ul {
      list-style: none
    }

    .footer-col li {
      margin-bottom: 6px
    }

    .footer-col a {
      color: var(--ts);
      text-decoration: none;
      font-size: 13px;
      transition: var(--tr)
    }

    .footer-col a:hover {
      color: var(--orange)
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--bd);
      padding-top: 20px;
      font-size: 12px;
      color: var(--tt)
    }

    .footer-bottom a {
      color: var(--orange);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: var(--tr)
    }

    /* ── ANIMATIONS ───────────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0)
    }

    @keyframes glowShift {
      0% {
        filter: hue-rotate(0deg)
      }

      50% {
        filter: hue-rotate(30deg)
      }

      100% {
        filter: hue-rotate(0deg)
      }
    }

    /* ── MONROE: ABYSSAL SENTINEL OVERLAY ─────────────────── */
    .assistant-overlay {
      background: rgba(10, 11, 20, 0.75);
      -webkit-backdrop-filter: blur(32px) saturate(2);
      backdrop-filter: blur(32px) saturate(2);
      border: 1px solid rgba(0, 243, 255, 0.15);
      border-radius: 24px;
      padding: 32px;
      width: 100%;
      max-width: 720px;
      margin: 60px auto 0;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(0, 243, 255, 0.1);
      text-align: left;
      position: relative;
      transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 1000;
      animation: floatWindow 6s ease-in-out infinite;
    }

    @keyframes floatWindow {

      0%,
      100% {
        transform: translateY(0) rotateX(0deg);
      }

      50% {
        transform: translateY(-10px) rotateX(0.5deg);
      }
    }

    .assistant-overlay.expanded {
      position: fixed;
      top: 20px;
      left: 20px;
      right: 20px;
      bottom: 20px;
      width: calc(100vw - 40px);
      height: calc(100vh - 40px);
      max-width: 1200px;
      margin: auto;
      border-radius: 32px;
      display: flex;
      flex-direction: column;
      background: rgba(8, 9, 16, 0.96);
      animation: unfoldSovereign 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
      border: 1px solid var(--blue);
      box-shadow: 0 0 100px rgba(0, 243, 255, 0.2);
    }

    @keyframes unfoldSovereign {
      0% {
        transform: scale(0.8) translateY(100px) skewY(2deg);
        opacity: 0;
      }

      100% {
        transform: scale(1) translateY(0) skewY(0);
        opacity: 1;
      }
    }

    .assistant-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      color: var(--blue);
      text-transform: uppercase;
    }

    .neural-pulse {
      width: 10px;
      height: 10px;
      background: var(--blue);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--blue);
      animation: pulseInflow 2s infinite;
    }

    @keyframes pulseInflow {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.5);
        opacity: 0.5;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .close-assistant {
      position: absolute;
      top: 24px;
      right: 24px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--blue);
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      /* Always visible if parent is visible, but we control via overlay visibility */
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: all 0.3s;
      z-index: 1002;
    }

    .close-assistant:hover {
      background: rgba(255, 95, 86, 0.1);
      border-color: #ff5f56;
      color: #ff5f56;
      transform: scale(1.1) rotate(90deg);
    }

    .chat-log {
      flex: 1;
      overflow-y: auto;
      padding: 0 10px 20px;
      display: none;
      flex-direction: column;
      gap: 20px;
      scrollbar-width: thin;
      mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    }

    .assistant-overlay.expanded .chat-log {
      display: flex;
    }

    .msg-bubble {
      max-width: 80%;
      padding: 16px 20px;
      border-radius: 18px;
      font-size: 1rem;
      line-height: 1.5;
      position: relative;
      animation: msgPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes msgPop {
      0% {
        transform: scale(0.9) translateY(10px);
        opacity: 0;
      }

      100% {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    .msg-user {
      align-self: flex-end;
      background: linear-gradient(135deg, var(--blue), #1d4ed8);
      color: white;
      border-bottom-right-radius: 4px;
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    }

    .msg-monroe {
      align-self: flex-start;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--t);
      border-bottom-left-radius: 4px;
    }

    .typing-cursor {
      display: inline-block;
      width: 2px;
      height: 1.2em;
      background: var(--blue);
      margin-left: 4px;
      vertical-align: middle;
      animation: cursorBlink 0.8s infinite;
    }

    @keyframes cursorBlink {

      0%,
      100% {
        opacity: 0;
      }

      50% {
        opacity: 1;
      }
    }

    .prompt-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 16px;
      margin-top: 10px;
      transition: all 0.3s;
      width: 100%;
    }

    .prompt-box:focus-within {
      border-color: var(--blue);
      box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
    }

    .prompt-input {
      width: 100%;
      background: transparent;
      border: none;
      color: white;
      font-size: 1.1rem;
      font-family: inherit;
      resize: none;
      min-height: 100px;
      outline: none;
      padding: 4px;
    }

    .neural-pulse-container {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .chat-log {
      flex: 1;
      overflow-y: auto;
      padding: 0 10px 20px;
      display: none;
      flex-direction: column;
      gap: 20px;
      scrollbar-width: thin;
      -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
      mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    }

    .prompt-box {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid var(--bd2);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: border-color var(--tr);
    }

    .prompt-box:focus-within {
      border-color: var(--blue);
      box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    }

    .prompt-input {
      background: transparent;
      border: none;
      color: var(--t);
      font-family: var(--sans);
      font-size: 1.1rem;
      padding: 20px 24px;
      width: 100%;
      resize: none;
      outline: none;
      min-height: 80px;
    }

    .prompt-input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .prompt-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(255, 255, 255, 0.02);
    }

    .toolbar-left,
    .toolbar-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tool-btn {
      background: transparent;
      border: none;
      color: var(--ts);
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      transition: var(--tr);
    }

    .tool-btn:hover {
      background: var(--surf2);
      color: var(--t);
    }

    /* ── Premium Mode Dropdown ─────────────────────────────── */
    .mode-select-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .mode-select {
      appearance: none;
      -webkit-appearance: none;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(0, 243, 255, 0.25);
      border-radius: 30px;
      color: rgba(255, 255, 255, 0.9);
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 6px 32px 6px 12px;
      cursor: pointer;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      white-space: nowrap;
    }

    .mode-select:hover {
      border-color: rgba(0, 243, 255, 0.6);
      box-shadow: 0 0 12px rgba(0, 243, 255, 0.18);
      background: rgba(255, 255, 255, 0.10);
    }

    .mode-select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
    }

    .mode-select option {
      background: #0d1117;
      color: #e6edf3;
      font-weight: 500;
    }

    .mode-select-wrapper::after {
      content: '⌄';
      position: absolute;
      right: 10px;
      font-size: 12px;
      color: rgba(0, 243, 255, 0.7);
      pointer-events: none;
      line-height: 1;
    }

    /* ── Dictation / Mic Button ───────────────────────────── */
    .tool-btn.recording {
      color: #ff5f56 !important;
      box-shadow: 0 0 0 0 rgba(255, 95, 86, 0.6);
      animation: micPulse 1s ease-in-out infinite;
    }

    @keyframes micPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 95, 86, 0.6);
      }

      70% {
        box-shadow: 0 0 0 8px rgba(255, 95, 86, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 86, 0);
      }
    }

    .action-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 24px;
    }

    .pill {
      background: var(--surf);
      border: 1px solid var(--bd);
      color: var(--ts);
      font-size: 13px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 100px;
      cursor: pointer;
      transition: var(--tr);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .pill:hover {
      background: var(--surf2);
      border-color: var(--t);
      color: var(--t);
    }

    /* ── RESPONSIVE ───────────────────────────────────────── */
    @media(max-width:768px) {
      .nav-links {
        display: none
      }

      .stats-inner {
        flex-wrap: wrap
      }

      .stat-item {
        flex: none;
        width: 50%;
        border-bottom: 1px solid var(--bd)
      }

      .matrix-grid {
        grid-template-columns: 1fr
      }

      .guardian-grid {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .eco-grid {
        grid-template-columns: 1fr
      }
    }
.auto-style-1 {
  color:var(--cyan);
  font-weight:700;
}

.auto-style-2 {
  width: 100%;
}

.auto-style-3 {
  color: var(--blue);
}

.auto-style-4 {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:24px;
}

.auto-style-5 {
  margin-top: 40px;
}

.auto-style-6 {
  color:var(--orange);
}

.auto-style-7 {
  margin-bottom:40px;
}

.auto-style-8 {
  background:var(--orange);
}

.auto-style-9 {
  background:var(--blue);
}

.auto-style-10 {
  background:var(--green);
}

.auto-style-11 {
  background:var(--yellow);
}

.auto-style-12 {
  background:var(--red);
}

.auto-style-13 {
  background:var(--purple);
}

.auto-style-14 {
  background:var(--orange);
}

.auto-style-15 {
  background:var(--cyan);
}

.auto-style-16 {
  color:var(--cyan);
}

.auto-style-17 {
  background:var(--blue);
}

.auto-style-18 {
  background:var(--green);
}

.auto-style-19 {
  background:var(--bg2);
}

.auto-style-20 {
  color:var(--blue);
}

.auto-style-21 {
  margin-bottom:40px;
}

.auto-style-22 {
  color:var(--yellow);
}

.auto-style-23 {
  margin-bottom:32px;
}

.auto-style-24 {
  flex:1;
  min-width:200px;
}

.auto-style-25 {
  font-size:11px;
  color:var(--tt);
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:6px;
}

.auto-style-26 {
  font-size:11px;
  color:var(--tt);
  margin-top:4px;
}

.auto-style-27 {
  background:var(--bg2);
  text-align:center;
}

.auto-style-28 {
  color:var(--green);
}

.auto-style-29 {
  margin:0 auto 12px;
}

.auto-style-30 {
  margin:0 auto 28px;
  text-align:center;
}

.auto-style-31 {
  color:var(--red);
}

.auto-style-32 {
  margin-bottom:32px;
}

.auto-style-33 {
  font-size:4rem;
  text-align:center;
  margin-bottom:16px;
}

.auto-style-34 {
  color:#ff5f56;
}
