/* ── NULLPUNKT CAPITAL — SHARED STYLESHEET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:    #08090A;
  --offwhite: #E8E8E6;
  --steel:    #1A2B3C;
  --muted:    #4A4E54;
  --dim:      #2C3038;
  --cyan:     #00C8C8;
  --hairline: rgba(232, 232, 230, 0.10);
}

html {
  background: var(--black);
  color: var(--offwhite);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline);
  background: rgba(8, 9, 10, 0.92);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
}

.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--offwhite); }
.nav-links a.active { border-bottom: 1px solid var(--cyan); padding-bottom: 2px; }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* PAGE HERO */
.page-hero {
  padding: 140px 0 72px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 100% 100% at 0% 50%, rgba(0,0,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.page-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.1s forwards;
}

.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--offwhite);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
  position: relative;
  z-index: 1;
}

.page-sub {
  max-width: 580px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(232,232,230,0.48);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.page-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin: 32px 0;
  animation: expandRule 1s ease 0.5s forwards;
}

/* SECTIONS */
.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  margin-bottom: 28px;
}

.prose {
  max-width: 660px;
  font-size: 13.5px;
  line-height: 2.0;
  color: rgba(232,232,230,0.52);
}

.prose + .prose { margin-top: 18px; }

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
  margin-top: 56px;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

.col-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 14px;
}

.col-body {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(232,232,230,0.46);
}

/* HAIRLINE LIST */
.h-list { margin-top: 40px; }

.h-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}

.h-item:first-child { border-top: 1px solid var(--hairline); }

.h-tag {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  width: 130px;
}

.h-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(232,232,230,0.65);
}

@media (max-width: 640px) {
  .h-item { flex-direction: column; gap: 6px; }
  .h-tag { width: auto; }
}

/* PANEL (dark inset) */
.panel {
  background: var(--dim);
  border: 1px solid var(--hairline);
  padding: 40px;
  margin-top: 40px;
}

.panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 12px;
}

.panel-body {
  font-size: 12.5px;
  line-height: 1.95;
  color: rgba(232,232,230,0.45);
}

/* GRID CELLS */
.cell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  margin-top: 48px;
}

@media (max-width: 720px) {
  .cell-grid { grid-template-columns: 1fr; }
}

.cell {
  background: var(--black);
  padding: 36px 32px;
  position: relative;
}

.cell-bg { background: var(--dim); }

.cell-index {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(0,200,200,0.28);
}

.cell-key {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.cell-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--offwhite);
  line-height: 1.3;
  margin-bottom: 12px;
}

.cell-desc {
  font-size: 12px;
  line-height: 1.88;
  color: rgba(232,232,230,0.4);
}

/* QUOTE BLOCK */
.quote-block {
  border-left: 2px solid var(--cyan);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
}

.quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(232,232,230,0.72);
  letter-spacing: -0.01em;
}

/* NOTICE BOX */
.notice-box {
  border: 1px solid rgba(0,200,200,0.2);
  padding: 40px;
  position: relative;
  margin-top: 40px;
}

.notice-box::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 32px;
  background: var(--black);
  padding: 0 8px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  transform: translateY(-50%);
}

.notice-text {
  font-size: 13px;
  line-height: 2.0;
  color: rgba(232,232,230,0.45);
}

.notice-text + .notice-text { margin-top: 18px; }

/* BACK LINK */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}

.breadcrumb:hover { color: var(--offwhite); }
.breadcrumb svg { width: 10px; height: 10px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--hairline);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 10px;
}

.footer-address {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}

.footer-right { text-align: right; }

@media (max-width: 640px) {
  .footer-right { text-align: left; }
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.4s ease infinite;
}

.footer-copy { font-size: 10px; color: rgba(74,78,84,0.7); }

.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* KEYFRAMES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes expandRule {
  to { width: 200px; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .page-eyebrow, .page-title, .page-sub { opacity: 1; transform: none; }
  .page-rule { width: 200px; }
  .reveal { opacity: 1; transform: none; }
}
