:root {
  --color-brand: #FFA500;
  --color-bg: #000000;
  --color-text: #E0E0E0;
  --color-text-dim: #888888;
  --color-border: #222222;
  --font-mono: 'Fira Code', 'IBM Plex Mono', monospace;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --spacing-base: 1rem;
}

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

section {
  margin-bottom: 6rem;
}

/* Typography */
h1, h2, h3 {
  font-weight: 900;

  letter-spacing: -0.02em;
  color: #fff;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-brand);
  display: inline-block;
  padding-bottom: 0.25rem;
}

p {
  font-size: 1.125rem;
  color: var(--color-text-dim);
  max-width: 42rem;
}

/* Components */
.brand {
  color: var(--color-brand);
}

.mono {
  font-family: var(--font-mono);
}

/* Code Blocks */
.code-box {
  background: #0A0A0A;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.code-box:hover {
  border-color: var(--color-brand);
}

.code-box code {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-text);
}

.code-box .label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: var(--color-bg);
  padding: 0 5px;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-brand);
  letter-spacing: 1.5px;
}

/* Minimal List */
ul {
  list-style: none;
}

li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

li .title {
  display: block;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  margin-top: 10rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-dim);
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: var(--color-brand);
}

/* Animation Shorthand */
@keyframes reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 600px) {
  .container { padding: 2rem 1rem; }
  h1 { font-size: 2rem; }
}
