/* ==============================================
   TECHNOHEBERG — style.css
   Professional hosting aesthetic
   ============================================== */

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

:root {
  --bg:        #07090f;
  --bg-2:      #0c0f1a;
  --bg-3:      #111624;
  --bg-4:      #161b2e;
  --border:    rgba(255,255,255,0.06);
  --border-2:  rgba(255,255,255,0.10);
  --text:      #d4dce8;
  --text-2:    #8b97b0;
  --text-3:    #4a5568;
  --accent:    #3b82f6;
  --accent-2:  #60a5fa;
  --cyan:      #06b6d4;
  --green:     #10b981;
  --amber:     #f59e0b;
  --purple:    #8b5cf6;
  --mono:      'JetBrains Mono', monospace;
  --sans:      'Inter', sans-serif;
  --r:         8px;
  --r2:        12px;
  --max:       1160px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7,9,15,0.95);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo img {
  height: 30px;
  display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin-left: 1.5rem;
}
.nav-menu a {
  color: var(--text-2);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-menu a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav-ownbot {
  font-size: .8rem;
  color: var(--text-2);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  background: rgba(139,92,246,.06);
  color: #a78bfa;
  transition: all .15s;
}
.nav-ownbot:hover { background: rgba(139,92,246,.12); border-color: rgba(139,92,246,.3); }

.btn-nav {
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 18px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--r);
  transition: background .15s, transform .15s;
}
.btn-nav:hover { background: var(--accent-2); transform: translateY(-1px); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

/* subtle noise bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(59,130,246,.07) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(6,182,212,.04) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  width: 100%;
}

.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #edf2f7;
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
}
#typewriter {
  font-family: var(--mono);
  font-size: .9rem;
  color: var(--accent-2);
}

.hero-cta { display: flex; gap: .875rem; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border-radius: var(--r);
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  color: var(--text-2);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
  border-radius: var(--r);
  border: 1px solid var(--border-2);
  background: transparent;
  transition: all .2s;
}
.btn-secondary:hover { color: var(--text); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
  margin-top: .25rem;
}
.metric { text-align: left; }
.metric-val {
  display: block;
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: #edf2f7;
  line-height: 1;
  margin-bottom: 3px;
}
.metric-key {
  font-size: .7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.metric-div { width: 1px; height: 36px; background: var(--border); }

/* ===================== RACK ===================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rack-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.1) 0%, transparent 70%);
  pointer-events: none;
}

.rack-shell {
  position: relative;
  background: #08090e;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 340px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5),
    0 25px 70px rgba(0,0,0,.9),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* corner screws */
.rack-screw {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a1f2e;
  border: 1px solid rgba(255,255,255,.07);
  z-index: 2;
}
.rack-screw.tl { top: 5px; left: 5px; }
.rack-screw.tr { top: 5px; right: 5px; }
.rack-screw.bl { bottom: 5px; left: 5px; }
.rack-screw.br { bottom: 5px; right: 5px; }

/* unit base */
.unit {
  display: flex;
  align-items: stretch;
}

.unit-ear {
  width: 9px;
  flex-shrink: 0;
  background: #0d1018;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 2px;
}

.unit-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1420;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  padding: 0 8px;
  margin: 0 2px;
}

/* server unit */
.unit-server { height: 40px; }
.unit-server .unit-body { border-color: rgba(59,130,246,.12); background: #0d1520; }

.unit-left { display: flex; flex-direction: column; gap: 3px; }

.chip-badge {
  font-family: var(--mono);
  font-size: .38rem;
  color: rgba(96,165,250,.7);
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.12);
  border-radius: 2px;
  padding: 1px 5px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.led-row { display: flex; gap: 3px; }

.unit-mid {
  display: flex;
  gap: 4px;
  margin-left: 6px;
}

.port {
  display: block;
  border-radius: 2px;
}
.port.usb {
  width: 8px; height: 6px;
  background: #0a0c14;
  border: 1px solid rgba(255,255,255,.08);
}
.port.nic {
  width: 10px; height: 8px;
  background: #0a0c14;
  border: 1px solid rgba(59,130,246,.2);
}

.unit-right {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.pwr {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #0d1018;
  border: 1px solid rgba(255,255,255,.1);
}
.pwr.active { border-color: rgba(16,185,129,.5); box-shadow: 0 0 5px rgba(16,185,129,.3); }

/* storage unit */
.unit-storage { height: 40px; }

.bays { display: flex; gap: 3px; }
.bay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: #08090e;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  padding: 3px 4px;
  width: 32px;
}
.bay-lbl { font-family: var(--mono); font-size: .3rem; color: rgba(255,255,255,.3); }

/* switch unit */
.unit-switch { height: 26px; }
.unit-switch .unit-body { background: #0a0f1c; border-color: rgba(6,182,212,.1); }
.sw-label { font-family: var(--mono); font-size: .38rem; color: rgba(6,182,212,.5); letter-spacing: .04em; flex-shrink: 0; }
.eth-row { display: flex; gap: 2px; flex-wrap: wrap; max-width: 140px; }
.eth {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px; height: 9px;
  background: #08090e;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1px;
}

/* blank unit */
.unit-blank { height: 13px; }
.unit-blank .unit-ear { opacity: .5; }
.blank-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09090e;
  border: 1px dashed rgba(255,255,255,.05);
  border-radius: 2px;
  margin: 0 2px;
  font-family: var(--mono);
  font-size: .32rem;
  color: rgba(255,255,255,.12);
  letter-spacing: .1em;
}

/* fans unit */
.unit-fans { height: 36px; }
.fans-body {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0c14;
}
.fan-lbl { font-family: var(--mono); font-size: .36rem; color: rgba(255,255,255,.15); letter-spacing: .06em; }
.fans { display: flex; gap: 5px; }
.fan {
  position: relative;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
}
.fan-r {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 7px solid transparent;
  border-top-color: rgba(59,130,246,.35);
  border-right-color: rgba(59,130,246,.15);
  border-bottom-color: rgba(59,130,246,.35);
}
.fan-h {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1a2035;
  border: 1px solid rgba(59,130,246,.2);
  z-index: 1;
}
.spin { animation: spin 1s linear infinite; }
.spinr { animation: spin 1s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.fan-rpm { font-family: var(--mono); font-size: .32rem; color: rgba(59,130,246,.4); line-height: 1.6; margin-left: auto; }

/* PSU unit */
.unit-psu { height: 20px; }
.psu-body { display: flex; align-items: center; gap: 8px; background: #0c0e18; }
.psu-lbl { font-family: var(--mono); font-size: .36rem; color: rgba(255,255,255,.15); letter-spacing: .04em; white-space: nowrap; }
.outlets { display: flex; gap: 2px; }
.out {
  display: block;
  width: 9px; height: 9px;
  border-radius: 1px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.out.ok { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); }

/* LEDs */
.led {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
}
.led.green  { background: var(--green); box-shadow: 0 0 4px var(--green); }
.led.amber  { background: var(--amber); box-shadow: 0 0 4px var(--amber); }
.led.cyan   { background: var(--cyan);  box-shadow: 0 0 4px var(--cyan); }
.led.off    { background: rgba(255,255,255,.08); }

.led.pulse { animation: ledpulse 2s ease-in-out infinite; }
.led.ba    { animation: ledblink 1.9s step-end infinite; }
.led.bb    { animation: ledblink 2.5s .7s step-end infinite; }
.led.bc    { animation: ledblink 3.2s 1.3s step-end infinite; }

@keyframes ledpulse { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes ledblink { 0%,88%,100%{opacity:1} 92%{opacity:.05} }

/* ===================== SECTION SHARED ===================== */
.section-tag {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent-2);
  letter-spacing: .08em;
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #edf2f7;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.aw {
  background: linear-gradient(135deg, var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== TERMINAL ===================== */
.section-terminal {
  padding: 6rem 0;
  position: relative;
}

/* faint divider line */
.section-terminal::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--max);
  height: 1px;
  background: var(--border);
}

.terminal {
  max-width: 720px;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: var(--r2);
  overflow: hidden;
  background: #08090f;
  box-shadow: 0 16px 50px rgba(0,0,0,.6), 0 0 40px rgba(59,130,246,.04);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--border);
}
.tb-dots { display: flex; gap: 6px; }
.td {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.td.red    { background: #ff5f57; }
.td.yellow { background: #ffbd2e; }
.td.green  { background: #28ca41; }
.tb-title { font-family: var(--mono); font-size: .72rem; color: var(--text-3); margin-left: 6px; }

.terminal-body {
  padding: 22px 26px;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 2;
}

.tl { display: block; white-space: pre; color: var(--text); }
.tp { color: var(--accent-2); }
.tc { color: var(--text); }
.tk { color: var(--text-3); }
.tv { color: var(--accent-2); }
.t-ok { color: var(--green); }
.tcur { color: var(--accent-2); animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===================== FEATURES ===================== */
.section-features {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}

.fc {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.75rem;
  background: var(--bg);
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s, background .15s;
}
.fc.visible { opacity: 1; transform: none; }
.fc:hover { background: var(--bg-2); }

.fc-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  flex-shrink: 0;
}
.fc-icon svg { width: 18px; height: 18px; stroke: var(--accent-2); }

.fc-body h3 { font-size: .95rem; font-weight: 600; color: #edf2f7; margin-bottom: .2rem; }
.fc-body p  { font-size: .83rem; color: var(--text-2); }

.fc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--accent-2);
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 4px;
  padding: 2px 8px;
  width: fit-content;
}

/* ===================== USE CASES ===================== */
.section-usecases {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.usecases {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}

.uc {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}
.uc.visible { opacity: 1; transform: none; }

.uc-n {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--text-3);
  letter-spacing: .1em;
}
.uc h4 { font-size: .95rem; font-weight: 600; color: #edf2f7; }
.uc p  { font-size: .83rem; color: var(--text-2); line-height: 1.6; }

/* ===================== PANEL ===================== */
.section-panel {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.panel-desc {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin-bottom: 2rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: var(--text-2);
}
.checklist li::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2310b981' stroke-width='1.5'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

.mock-wrap { position: relative; }

.mock {
  border: 1px solid var(--border-2);
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  font-family: var(--mono);
  font-size: .75rem;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mock-url { font-size: .68rem; color: var(--text-3); margin-left: 5px; }

.mock-layout { display: flex; min-height: 200px; }

.mock-sidebar {
  width: 118px;
  border-right: 1px solid var(--border);
  background: var(--bg-3);
  padding: 10px 0;
  flex-shrink: 0;
}
.mock-nav {
  padding: 7px 14px;
  color: var(--text-3);
  font-size: .7rem;
  cursor: default;
  transition: background .15s;
}
.mock-nav.active {
  color: var(--accent-2);
  background: rgba(59,130,246,.07);
  border-left: 2px solid var(--accent);
}

.mock-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(255,255,255,.015);
}
.mr-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
}
.mr-dot.on { background: var(--green); box-shadow: 0 0 4px var(--green); }
.mr-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.mr-name { font-size: .72rem; color: var(--text); }
.mr-sub  { font-size: .62rem; color: var(--text-3); }
.mr-status { font-size: .62rem; color: var(--text-3); white-space: nowrap; }
.mr-status.on { color: var(--green); }

.mock-add {
  text-align: center;
  padding: 9px;
  border: 1px dashed var(--border-2);
  border-radius: var(--r);
  color: var(--text-3);
  font-size: .7rem;
  cursor: default;
  transition: all .15s;
}
.mock-add:hover { border-color: var(--accent); color: var(--accent-2); }

/* ===================== CTA ===================== */
.section-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.cta-box {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(59,130,246,.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #edf2f7;
  margin-bottom: .75rem;
  position: relative;
}
.cta-box p {
  color: var(--text-2);
  margin-bottom: 2rem;
  font-size: .95rem;
  position: relative;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-brand img { height: 26px; display: block; margin-bottom: .75rem; opacity: .7; }
.footer-brand p { font-size: .82rem; color: var(--text-3); max-width: 260px; line-height: 1.6; }

.footer-cols { display: flex; gap: 3rem; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.fc-title {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
}
.footer-col a {
  font-size: .85rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }
.footer-ownbot { color: #a78bfa !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: var(--text-3);
}
.footer-stack { font-family: var(--mono); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 4rem; }
  .hero-text { align-items: center; text-align: center; }
  .hero-metrics { justify-content: center; }
  .hero-visual { display: none; }
  .features { grid-template-columns: 1fr 1fr; }
  .usecases { grid-template-columns: 1fr 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .mock-wrap { display: none; }
  .nav-menu { display: none; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 580px) {
  .features { grid-template-columns: 1fr; }
  .usecases { grid-template-columns: 1fr; }
  .footer-cols { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .cta-box { padding: 2.5rem 1.5rem; }
}
