/* Base Layout */
html, body {
  background: #eeebe3;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #1f48a8;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1vw + 0.5rem, 18px);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* Links */
a {
  color: #1f48a8;
  text-decoration: none;
}
a:hover {
  color: #3b6bdb;
}

/* Generic Containers */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

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

/* Brutalist Typography */
.heading {
  font-size: clamp(3rem, 9vw + 1rem, 9rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.15rem;
  margin: 2rem 0;
}

.smaller-heading {
  font-size: clamp(2rem, 6vw + 0.5rem, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 2rem;
}

.bold {
  font-weight: 700;
}

.claim {
  margin: 0.5rem 0;
  font-weight: 500;
}

/* Text Blocks */
.block {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.body {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.03rem;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.4;
}

/* Flex Layouts */
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.flex > div {
  flex: 1 1 300px;
}

/* Grid Sections */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-weight: 100;
  text-transform: uppercase;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem);
  margin: 1rem 0;
}

.grid > div {
  padding: 0.5rem 0;
}

.grid-3 { 
grid-column: span 2 / span 2;
grid-column-start: 1;
grid-row-start: 2;
/* padding: .5rem 0;  */
}

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

/* Device List */
.device-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.7rem);
  text-transform: uppercase;
}
.device-list li {
  border-bottom: 1px solid #1f48a8;
  margin: 0.3rem 0;
}

/* Crew Section */
.grid-crew {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.grid-crew div {
  max-width: 250px;
  text-align: center;
}

.crew-body {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 2rem);
  font-weight: 300;
}

/* Contact Section */
.contact-methods ul {
  list-style: none;
  padding: 0;
  font-size: clamp(1rem, 1vw + 0.25rem, 1.5rem);
}

.contact-methods a {
  color: #1f48a8;
}
.contact-methods a:hover {
  color: #3b6bdb;
}

/* Newsletter */
.newsletter {
  margin-top: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 4px solid #000;
  max-width: 800px;
  width: 100%;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  text-align: left;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font: inherit;
}

.newsletter button {
  background: #004aad;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background: #3b6bdb;
}

/* Footer */
.micro-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #444;
  padding: 2rem 0;
  border-top: 1px solid #ccc;
  margin-top: 3rem;
}
.micro-footer a {
  color: #1f48a8;
}
.micro-footer a:hover {
  color: #3b6bdb;
}

.supporters img {
  width: 200px;
  max-width: 80%;
}

/* Legal Page */
.legal-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.hr { margin: 2rem 0; }

.fl-start {align-items: center;}
