
  :root{
    --bg:#0b0f14;
    --panel: rgba(255,255,255,0.04);
    --glass: rgba(255,255,255,0.03);
    --accent:#6ee7b7;
    --muted:#9aa6b2;
    --mono: 'JetBrains Mono', monospace;
    --ui: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --radius:12px;
    --glass-border: rgba(255,255,255,0.06);
  }

  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family:var(--ui);
    background:
      radial-gradient(1200px 600px at 10% 10%, rgba(110,231,183,0.03), transparent 8%),
      linear-gradient(180deg, #071018 0%, #071018 40%, #05060a 100%);
    color:#e6eef3;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.45;
    padding:32px;
  }

  .wrap{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 420px 1fr;
    gap:28px;
  }

  /* Left column terminal card */
  .card{
    background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border:1px solid var(--glass-border);
    border-radius:var(--radius);
    padding:20px;
    box-shadow: 0 6px 30px rgba(2,6,12,0.6);
    min-height:320px;
  }

  .term{
    background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.25));
    border-radius:10px;
    padding:18px;
    font-family:var(--mono);
    font-size:13px;
    color:#bfeadf;
    line-height:1.5;
    height:100%;
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .term .status{
    display:flex;
    gap:8px;
    align-items:center;
    font-weight:600;
    color:var(--muted);
    font-size:12px;
  }

  .led{
    width:10px;height:10px;border-radius:50%;
    background:linear-gradient(180deg,#9ef0c9,#3fbf8f);
    box-shadow:0 0 8px rgba(110,231,183,0.18);
  }

  .boot{
    flex:1;
    overflow:auto;
    padding-top:6px;
  }

  .line{white-space:pre-wrap; opacity:0.95}
  .prompt{color:var(--accent); font-weight:700}
  .ascii{color:#8bd6ff; opacity:0.9; font-size:11px; margin-top:6px}

  /*right column content*/
  .content{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .hero{
    background:var(--panel);
    border-radius:var(--radius);
    padding: 20px
  }

  .title {
    font-size: 36px;
    align-items: center;
    display: flex;
  }