@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Manrope:wght@400;600;800&display=swap');

:root {
  --c-void: #000000;
  --c-concrete: #e5e7eb;
  --c-concrete-dark: #d1d5db;
  --c-raw: #6b7280;
  --c-lime: #ccff00;
  --c-lime-dim: #b3e600;
  --c-surface: #ffffff;
  --c-text-main: #1f2937;
  --c-text-muted: #4b5563;
  
  --ff-head: 'Manrope', sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;
  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(4rem, 8vw, 6rem);
  --space-xl: clamp(6rem, 12vw, 10rem);
  
  --border-thick: 2px solid var(--c-void);
  --border-thin: 1px solid var(--c-concrete-dark);
  --radius-raw: 0px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-concrete);
  color: var(--c-text-main);
  font-family: var(--ff-head);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-void);
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); margin-bottom: var(--space-sm); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: var(--space-xs); }
p { margin-bottom: var(--space-sm); font-size: 1.05rem; color: var(--c-text-muted); max-width: 65ch; }

.mono-label {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-raw);
  display: inline-block;
  margin-bottom: var(--space-xs);
  border-bottom: 1px solid var(--c-raw);
  padding-bottom: 2px;
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }

/* --- LAYOUT UTILITIES --- */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.grid-layout {
  display: grid;
  gap: var(--space-md);
}

/* --- HEADER --- */
.site-header {
  background: var(--c-surface);
  border-bottom: var(--border-thick);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.nav-list {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-link {
  font-family: var(--ff-mono);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-lime);
  transition: width 0.3s;
}

.nav-link:hover { color: var(--c-void); }
.nav-link:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--ff-mono);
  font-weight: 600;
  text-transform: uppercase;
  border: var(--border-thick);
  background: var(--c-void);
  color: var(--c-surface);
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--c-lime);
  color: var(--c-void);
  box-shadow: 4px 4px 0px var(--c-void);
  transform: translate(-2px, -2px);
}

.btn-secondary {
  background: transparent;
  color: var(--c-void);
}

.btn-secondary:hover {
  background: var(--c-void);
  color: var(--c-surface);
  box-shadow: 4px 4px 0px var(--c-lime);
}

/* --- HERO --- */
.hero-section {
  padding: var(--space-xl) 0;
  background-color: var(--c-concrete);
  border-bottom: var(--border-thick);
  background-image: radial-gradient(var(--c-concrete-dark) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-tag {
  background: var(--c-void);
  color: var(--c-lime);
  font-family: var(--ff-mono);
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.hero-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.hero-image-wrapper {
  border: var(--border-thick);
  background: var(--c-surface);
  padding: var(--space-sm);
  position: relative;
}

.hero-image-wrapper::before {
  content: 'IMG_01.TIFF';
  position: absolute;
  top: -12px;
  right: 0;
  background: var(--c-lime);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  padding: 2px 6px;
  border: 1px solid var(--c-void);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- CARDS --- */
.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-concrete-dark);
  padding: var(--space-md);
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border-color: var(--c-void);
  border-top: 4px solid var(--c-lime);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--c-void);
}

/* --- STATS --- */
.stats-row {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  background: var(--c-surface);
  padding: var(--space-lg) 0;
  margin: var(--space-lg) 0;
}

.stat-item {
  text-align: left;
  border-right: 1px solid var(--c-concrete-dark);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--ff-mono);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--c-void);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--c-raw);
  text-transform: uppercase;
}

/* --- CTA --- */
.cta-section {
  background: var(--c-void);
  color: var(--c-surface);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-section h2 { color: var(--c-surface); }
.cta-section p { color: var(--c-concrete); margin: 0 auto var(--space-md); }

/* --- FAQ --- */
.faq-list {
  list-style: none;
  border-top: var(--border-thick);
}

.faq-item {
  border-bottom: 1px solid var(--c-concrete-dark);
  padding: var(--space-md) 0;
}

.faq-question {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-question::after {
  content: '+';
  font-family: var(--ff-mono);
  color: var(--c-lime-dim);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--c-void);
  color: var(--c-concrete);
  padding: var(--space-lg) 0;
  font-family: var(--ff-mono);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-col h4 {
  color: var(--c-surface);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--c-raw);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--c-lime); }

.footer-legal {
  border-top: 1px solid #333;
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  color: var(--c-raw);
  font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: var(--space-sm); }
  .nav-list { flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrapper { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--c-concrete-dark); padding-bottom: var(--space-sm); margin-bottom: var(--space-sm); }
}body{margin:0}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}