:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #666;
  --border: #000;
  --shadow: 8px 8px 0 #000;
}

body {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
.header {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1000px;
  margin: auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 0;
}

.name {
  font-weight: 700;
}

.role {
  font-size: 12px;
  color: var(--muted);
}

/* HERO */
.hero {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.hero-title {
  font-size: 42px;
}

.accent {
  font-weight: 700;
}

.hero-sub {
  color: var(--muted);
  margin-bottom: 20px;
}

/* BUTTON */
.cta {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

/* TERMINAL */
.terminal-card {
  background: #000;
  color: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.command {
  color: #aaa;
}

/* SECTIONS */
.section {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
  border-top: 1px solid #000;
}

.section-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* CARDS */
.card {
  border: 1px solid #000;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* CHIPS */
.chip {
  border: 1px solid #000;
  padding: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* LINKS */
a {
  color: #000;
}

#loading {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  font-family: "JetBrains Mono", monospace;
}

.dark #loading {
  background: #0a0a0a;
}

.loading-box {
  width: 300px;
  text-align: left;
}

.loading-title {
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.loading-bar {
  width: 100%;
  height: 2px;
  border: 1px solid #000;
  position: relative;
  margin-bottom: 12px;
}

.dark .loading-bar {
  border-color: #fff;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: #000;
  animation: load 1s ease forwards;
}

.dark .loading-progress {
  background: #fff;
}

.loading-text {
  font-size: 12px;
  color: #666;
}

.dark .loading-text {
  color: #aaa;
}

@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
