body {
  background:#000;
  color:#0aff9d;
  font-family:'JetBrains Mono', monospace;
  margin:0;
  overflow:hidden;
}
#boot-screen {
  position:fixed;
  inset:0;
  background:#000;
  color:#0f0;
  padding:20px;
  font-size:14px;
  white-space:pre-line;
}
#terminal {
  display:none;
  position:fixed;
  inset:0;
  background:#000;
  color:#00ff9d;
  padding:20px;
  font-size:16px;
  line-height:1.4;
  text-shadow:0 0 5px #00ff9d;
}
#ui {
  display:none;
  position:fixed;
  inset:0;
  background:#050608 radial-gradient(circle at top, #041018 0, #050608 55%);
  color:#0aff9d;
  padding:16px;
  box-sizing:border-box;
  display:grid;
  grid-template-columns: 260px 1fr 260px;
  grid-template-rows: 60px 1fr 160px;
  gap:12px;
}
.panel {
  background:rgba(5,10,15,0.9);
  border:1px solid rgba(0,255,180,0.25);
  box-shadow:0 0 18px rgba(0,255,180,0.18);
  border-radius:8px;
  padding:10px 12px;
  box-sizing:border-box;
  position:relative;
  overflow:hidden;
}
.panel::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0, rgba(0,255,200,0.08) 40%, transparent 80%);
  opacity:0.3;
  mix-blend-mode:screen;
  pointer-events:none;
}
.panel-header {
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#6bffda;
  margin-bottom:6px;
}
.panel-body {
  font-size:13px;
}
#ui-top-bar {
  grid-column:1 / 4;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
#ui-left {
  grid-row:2 / 4;
}
#ui-center {
  grid-row:2 / 3;
}
#ui-right {
  grid-row:2 / 4;
}
#ui-bottom {
  grid-column:1 / 4;
}
.badge {
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(0,255,180,0.4);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:#9bffe7;
}
.metric {
  font-size:22px;
  font-weight:600;
}
.metric-label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:#6bffda;
}
.log-line {
  font-family:'JetBrains Mono', monospace;
  font-size:12px;
  color:#8bffe0;
  opacity:0.9;
}
.log-line span.tag {
  color:#0aff9d;
}
.log-line span.time {
  color:#4cffc0;
}
.pill {
  display:inline-block;
  padding:3px 10px;
  border-radius:999px;
  border:1px solid rgba(0,255,180,0.4);
  font-size:11px;
  margin:2px 4px 2px 0;
}
.window {
  position:absolute;
  width:420px;
  height:260px;
  background:rgba(5,10,15,0.92);
  border:1px solid rgba(0,255,180,0.35);
  box-shadow:0 0 18px rgba(0,255,180,0.25);
  border-radius:8px;
  backdrop-filter:blur(6px);
  overflow:hidden;
  animation:fadeIn 0.25s ease-out;
}
.window-header {
  background:rgba(0,255,180,0.08);
  padding:6px 10px;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#6bffda;
  cursor:move;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.window-close {
  cursor:pointer;
  padding:2px 6px;
  border-radius:4px;
  border:1px solid rgba(0,255,180,0.4);
}
.window-body {
  padding:10px;
  font-size:13px;
  color:#9bffe7;
}
@keyframes fadeIn {
  from { opacity:0; transform:scale(0.92); }
  to { opacity:1; transform:scale(1); }
}
body::before {
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0,255,200,0.12) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(0,180,255,0.16) 0, transparent 55%),
    repeating-linear-gradient(
      to bottom,
      rgba(0,255,180,0.08) 0,
      rgba(0,255,180,0.08) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity:0.6;
  mix-blend-mode:screen;
  pointer-events:none;
  animation:bgShift 18s linear infinite;
}
@keyframes bgShift {
  0% { transform:translateY(0); }
  100% { transform:translateY(40px); }
}
#ui {
  display:none;
  position:fixed;
  inset:0;
  background:transparent;
  color:#0aff9d;
  padding:16px;
  box-sizing:border-box;
  display:grid;
  grid-template-columns: 260px 1fr 260px;
  grid-template-rows: 60px 1fr 160px;
  gap:12px;
}
#boot-screen {
  animation: glitch 0.35s infinite;
}
@keyframes glitch {
  0% { text-shadow: 2px 0 #0f0, -2px 0 #0ff; }
  20% { text-shadow: -2px 0 #0f0, 2px 0 #0ff; }
  40% { text-shadow: 2px 0 #0ff, -2px 0 #0f0; }
  60% { text-shadow: -2px 0 #0ff, 2px 0 #0f0; }
  100% { text-shadow: 2px 0 #0f0, -2px 0 #0ff; }
}
body::after {
  content:"";
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(0,255,180,0.12), transparent 70%);
  animation:pulse 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes pulse {
  0% { opacity:0.2; }
  50% { opacity:0.55; }
  100% { opacity:0.2; }
}
body::before {
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0,255,200,0.12) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(0,180,255,0.16) 0, transparent 55%),
    repeating-linear-gradient(
      to bottom,
      rgba(0,255,180,0.08) 0,
      rgba(0,255,180,0.08) 1px,
      transparent 1px,
      transparent 3px
    );
  opacity:0.6;
  mix-blend-mode:screen;
  pointer-events:none;
  animation:bgShift 18s linear infinite;
}
@keyframes bgShift {
  0% { transform:translateY(0); }
  100% { transform:translateY(40px); }
}
#ui {
  display:none;
  position:fixed;
  inset:0;
  background:transparent;
  color:#0aff9d;
  padding:16px;
  box-sizing:border-box;
  display:grid;
  grid-template-columns: 260px 1fr 260px;
  grid-template-rows: 60px 1fr 160px;
  gap:12px;
}
#boot-screen {
  animation: glitch 0.35s infinite;
}
@keyframes glitch {
  0% { text-shadow: 2px 0 #0f0, -2px 0 #0ff; }
  20% { text-shadow: -2px 0 #0f0, 2px 0 #0ff; }
  40% { text-shadow: 2px 0 #0ff, -2px 0 #0f0; }
  60% { text-shadow: -2px 0 #0ff, 2px 0 #0f0; }
  100% { text-shadow: 2px 0 #0f0, -2px 0 #0ff; }
}
body::after {
  content:"";
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(0,255,180,0.12), transparent 70%);
  animation:pulse 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes pulse {
  0% { opacity:0.2; }
  50% { opacity:0.55; }
  100% { opacity:0.2; }
}
.holo-widget {
  position:fixed;
  top:20px;
  right:20px;
  width:180px;
  padding:12px;
  background:rgba(0,255,180,0.08);
  border:1px solid rgba(0,255,180,0.35);
  border-radius:10px;
  box-shadow:0 0 20px rgba(0,255,180,0.25);
  backdrop-filter:blur(8px);
  color:#9bffe7;
  font-family:'JetBrains Mono', monospace;
  font-size:13px;
  z-index:99999;
  animation:holoPulse 3s ease-in-out infinite;
}
@keyframes holoPulse {
  0% { box-shadow:0 0 10px rgba(0,255,180,0.25); }
  50% { box-shadow:0 0 22px rgba(0,255,200,0.55); }
  100% { box-shadow:0 0 10px rgba(0,255,180,0.25); }
}
.holo-title {
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:#6bffda;
  margin-bottom:6px;
}
.holo-value {
  font-size:22px;
  font-weight:600;
  color:#0aff9d;
}
body.hr-mode {
  background:#f5f5f5;
  color:#111;
}
body.hr-mode #boot-screen,
body.hr-mode #terminal,
body.hr-mode .window,
body.hr-mode #dock,
body.hr-mode .holo-widget {
  display:none !important;
}
body.hr-mode #ui {
  display:block !important;
  background:#ffffff;
  color:#111;
  box-shadow:none;
}
body.hr-mode .panel {
  background:#ffffff;
  border:1px solid #ddd;
  box-shadow:none;
}
body.hr-mode .panel-header {
  color:#555;
}
body.hr-mode .badge,
body.hr-mode .pill {
  border-color:#ccc;
  color:#333;
}
#boot-screen {
  animation: glitch 0.35s infinite;
}
@keyframes glitch {
  0% { text-shadow: 2px 0 #0f0, -2px 0 #0ff; }
  20% { text-shadow: -2px 0 #0f0, 2px 0 #0ff; }
  40% { text-shadow: 2px 0 #0ff, -2px 0 #0f0; }
  60% { text-shadow: -2px 0 #0ff, 2px 0 #0f0; }
  100% { text-shadow: 2px 0 #0f0, -2px 0 #0ff; }
}
body::after {
  content:"";
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(0,255,180,0.12), transparent 70%);
  animation:pulse 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes pulse {
  0% { opacity:0.2; }
  50% { opacity:0.55; }
  100% { opacity:0.2; }
}
.notify {
  position:fixed;
  top:20px;
  right:20px;
  min-width:220px;
  padding:12px 16px;
  background:rgba(0,255,180,0.12);
  border:1px solid rgba(0,255,180,0.35);
  border-radius:10px;
  box-shadow:0 0 20px rgba(0,255,180,0.35);
  backdrop-filter:blur(10px);
  color:#9bffe7;
  font-family:'JetBrains Mono', monospace;
  font-size:13px;
  opacity:0;
  transform:translateY(-20px);
  animation:notifyIn 0.35s forwards;
  z-index:999999;
}
@keyframes notifyIn {
  to { opacity:1; transform:translateY(0); }
}
@keyframes notifyOut {
  to { opacity:0; transform:translateY(-20px); }
}
.ai-core {
  width:420px;
  height:300px;
  background:rgba(0,255,180,0.08);
  border:1px solid rgba(0,255,180,0.35);
  border-radius:10px;
  box-shadow:0 0 20px rgba(0,255,180,0.35);
  backdrop-filter:blur(10px);
  padding:12px;
  display:flex;
  flex-direction:column;
  animation:fadeIn 0.25s ease-out;
}
.ai-output {
  flex:1;
  overflow-y:auto;
  font-size:13px;
  color:#9bffe7;
  margin-bottom:10px;
}
.ai-input {
  width:100%;
  padding:8px;
  background:rgba(0,255,180,0.12);
  border:1px solid rgba(0,255,180,0.35);
  border-radius:6px;
  color:#0aff9d;
  font-family:'JetBrains Mono', monospace;
}
#landing {
  min-height: 100vh;
  padding: 60px 10vw;
  background: radial-gradient(circle at top, #101826 0, #050810 55%, #020308 100%);
  color: #f5f5f5;
}

.hero {
  max-width: 720px;
  margin-top: 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 560px;
  opacity: 0.85;
}

.hero button,
.cta button {
  margin-top: 24px;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg,#00f5a0,#00d9ff);
  color: #050810;
  font-weight: 600;
  cursor: pointer;
}

.hero button:hover,
.cta button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,255,200,0.3);
}

.features, .usecases, .cta {
  margin-top: 60px;
  max-width: 720px;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  margin-bottom: 10px;
}

#contact {
  margin-top: 80px;
  max-width: 720px;
}
