/* Template 2 - Minimalist Monochrome / Swiss Design */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Space+Mono:wght@400;700&display=swap");

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-accent: #000000;

  --text-primary: #000000;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-inverse: #ffffff;

  --border-color: #e0e0e0;
  --accent-red: #ff0000;
}

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

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Top Border Accent */
.site-header {
  background: var(--bg-primary);
  border-bottom: 4px solid var(--bg-accent);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.site-logo a {
  font-family: "Space Mono", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  transition: all 0.3s ease;
  border: 3px solid var(--bg-accent);
  padding: 0.5rem 1rem;
}

.site-logo a:hover {
  background: var(--bg-accent);
  color: var(--text-inverse);
  transform: translateX(5px);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  padding: 0.75rem 1.5rem;
  border-left: 1px solid var(--border-color);
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

/* Hero Section - Brutalist */
.section.head {
  padding: 10rem 0 8rem;
  border-bottom: 4px solid var(--bg-accent);
}

.section.head h1 {
  font-family: "Inter", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.section.head p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section header {
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Footer - Grid Layout */
.footer {
  background: var(--bg-accent);
  color: var(--text-inverse);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-about {
  max-width: 500px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-inverse);
  transform: translateX(10px);
}

.footer-bottom {
  text-align: center;
}

.copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-family: "Space Mono", monospace;
}

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

.fade-in {
  opacity: 0;
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 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: 1.5rem;
  color: var(--text-primary);
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
