/* ===== Brutalist Maximalist — Reset & Base ===== */

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  background: #000000;
}

body {
  font-family: var(--font-body);
  background: #000000;
  color: #FFFFFF;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  cursor: crosshair;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #FFE500;
  text-decoration: none;
  transition: none;
}

a:hover {
  color: #FF3300;
}

ul, ol {
  list-style: none;
}

/* ===== Typography — LOUD AND BOLD ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

h4 {
  font-size: 1.3rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #FFE500;
  background-clip: unset;
}

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

/* ===== Layout ===== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Section divider — brutalist stripe instead of subtle line */
.section-divider {
  width: 150px;
  height: 8px;
  background: #FFE500;
  margin: 20px auto 0;
  box-shadow: 3px 3px 0 #FF3300;
}

/* ===== Utilities ===== */

.text-center { text-align: center; }
.text-start { text-align: start; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Force all selections to be yellow on black */
::selection {
  background: #FFE500;
  color: #000000;
}
