/* Template 13 - Brutalist / Raw Concrete */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Courier+Prime:wght@400;700&display=swap");

:root {
  --bg-primary: #e8e8e8;
  --bg-secondary: #d0d0d0;
  --bg-dark: #2a2a2a;

  --text-primary: #0a0a0a;
  --text-secondary: #3a3a3a;
  --text-muted: #6a6a6a;
  --text-inverse: #f0f0f0;

  --accent-red: #ff3333;
  --accent-yellow: #ffcc00;
  --border-heavy: 6px solid var(--text-primary);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Space Grotesk", "Arial Black", sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Brutalist block */
.site-header {
  background: var(--bg-dark);
  border-bottom: var(--border-heavy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 80px;
}

.site-logo {
  background: var(--accent-yellow);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  border-right: var(--border-heavy);
}

.site-logo a {
  font-family: "Courier Prime", monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -2px;
  transition: transform 0.2s ease;
}

.site-logo a:hover {
  transform: scale(1.1) rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: stretch;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: stretch;
  margin: 0;
}

.site-nav li {
  display: flex;
  align-items: stretch;
}

.site-nav a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
  padding: 1.5rem 2rem;
  border-right: 3px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.site-nav a:hover {
  background: var(--accent-red);
  transform: translateY(-4px);
  box-shadow: 0 4px 0 var(--text-primary);
}

/* Hero Section - Bold statement */
.section.head {
  padding: 8rem 0;
  text-align: left;
  background: var(--bg-secondary);
  border-bottom: var(--border-heavy);
  position: relative;
  overflow: hidden;
}

.section.head::after {
  content: "///";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  font-family: "Courier Prime", monospace;
}

.section.head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -3px;
  border-left: 12px solid var(--accent-red);
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: 2.75rem;
  font-family: "Courier Prime", monospace;
  line-height: 1.6;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  border-bottom: 4px solid var(--bg-secondary);
}

.section header {
  text-align: left;
  margin-bottom: 4rem;
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 2rem;
  border: var(--border-heavy);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.section header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-inverse);
  max-width: 700px;
  font-family: "Courier Prime", monospace;
}

/* Footer - Heavy block */
.footer {
  background: var(--text-primary);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  border-top: 8px solid var(--accent-yellow);
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-red) 0,
    var(--accent-red) 20px,
    var(--accent-yellow) 20px,
    var(--accent-yellow) 40px
  );
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
  border-left: 6px solid var(--accent-red);
  padding-left: 1.5rem;
}

.footer-tagline {
  color: var(--bg-secondary);
  line-height: 1.7;
  font-family: "Courier Prime", monospace;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
  padding: 1rem 1.5rem;
  border: 3px solid var(--text-inverse);
  margin: 0.5rem;
  display: inline-block;
}

.footer-links a:hover {
  background: var(--accent-yellow);
  color: var(--text-primary);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 var(--accent-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.copyright a {
  color: var(--bg-secondary);
  font-size: 0.9rem;
  font-family: "Courier Prime", monospace;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  border-left: 8px solid var(--accent-red);
  padding-left: 1.5rem;
}
