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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --border: #222;
  --text: #e8e4df;
  --text-dim: #8a857e;
  --accent: #d4a574;
  --accent-dim: #a67c52;
  --danger: #c45c5c;
  --signatur: #d4a574;
  --arv: #7a9e7e;
  --krop: #8b7ec4;
  --intention: #c4a87e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255,255,255,0.8) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  z-index: 50;
}

a { color: inherit; }

.container {
  width: min(92vw, 1400px);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.narrow { max-width: 700px; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 72px;
}

.logo-mark, .brand, .nav a, .eyebrow, .section-label, .card-number, .footer-text, .social-links a, .button {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
}

.logo-mark, .brand {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--accent); }

.hero {
  padding: 24px 0 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero h1, .hero p, .hero .privacy-note {
  text-align: center;
  width: 100%;
}

.hero h1 { max-width: 900px; }
.hero p { max-width: 600px; }

.hero-logo {
  width: min(260px, 62vw);
  display: block;
  margin: 0 auto 22px;
}

.hero .eyebrow { text-align: center; }

h1 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
}

h2 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.2;
  margin-bottom: 24px;
}

h3 {
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

p {
  color: var(--text);
  font-weight: 300;
  margin-bottom: 20px;
}

.intro-subtitle, .muted {
  color: var(--text-dim);
  font-style: italic;
}

.eyebrow, .section-label, .card-number {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.privacy-note, .manifest-note {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-dim);
  border-left: 2px solid var(--border);
  padding-left: 16px;
  margin: 40px 0;
  line-height: 1.8;
}

.button {
  display: inline-block;
  padding: 17px 20px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--accent);
  color: var(--bg);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.project-card {
  display: block;
  background: var(--surface);
  border-left: 3px solid var(--danger);
  padding: 24px;
  color: var(--text);
  text-decoration: none;
  min-height: 300px;
  transition: all 0.25s ease;
}

.project-card:hover {
  border-color: var(--accent);
  background: #1a1714;
  transform: translateY(-3px);
}

.muted-card {
  opacity: 1;
}

.project-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.module {
  border-left: 3px solid var(--border);
  padding: 24px;
  margin-bottom: 32px;
  background: var(--surface);
}

.module.accent { border-color: var(--accent); }
.module.danger { border-color: var(--danger); }
.module.green { border-color: var(--arv); }
.module.purple { border-color: var(--krop); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 32px;
}

.social-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  transition: color 0.2s ease;
}

.social-links a:hover { color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 0;
  margin-top: 72px;
}

.footer-text {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .container { width: 100%; padding: 28px 18px 60px; }
  .site-header { flex-direction: column; margin-bottom: 48px; }
  .nav { justify-content: flex-start; }
  .project-grid, .split { grid-template-columns: 1fr; }
  .project-card { min-height: 220px; }
  body { font-size: 17px; }
}

@media (min-width: 1024px) {
  body { font-size: 20px; }
  .project-card { min-height: 320px; padding: 32px; }
  .section { padding: 96px 0; }
  .site-header { margin-bottom: 96px; }
}
