:root {
  --bg: #f9fafb; /* light neutral */
  --text: #1f2937; /* slate gray */
  --muted: #6b7280; /* secondary gray */
  --brand: #0ea5e9; /* blue accent */
  --brand-2: #10b981; /* green accent */
  --card: #ffffff; /* white cards */
  --radius: 14px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui;
  background: var(--bg);
  color: var(--text);
}

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}

.container {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--brand);
}

.cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ------------------------------
   HAMBURGER MENU (MOBILE)
------------------------------ */

/* Hide the hamburger on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle .bar {
  width: 24px;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Rotate bars when active */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Default nav-links layout */
.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--text);
    font-weight: 600;
  }

  .cta {
    display: none; /* Hide main CTA button on small screens */
  }
}

/* ------------------------------
   MAIN STRUCTURE
------------------------------ */
main {
  padding: 40px 0;
}

section {
  margin-bottom: 60px;
}

h1,
h2,
h3 {
  margin-top: 0;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 550px;
  color: var(--muted);
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.store-btn img {
  height: 50px;
  transition: transform 0.2s ease;
}

.store-btn img:hover {
  transform: scale(1.05);
}

.cta-wrapper {
  margin-top: 24px;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ------------------------------
   ABOUT SECTION
------------------------------ */
.about {
  padding: 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.about .subtitle {
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.about p {
  line-height: 1.6;
}

.about-highlights {
  margin-top: 20px;
  padding-left: 20px;
  list-style: none;
}

.about-highlights li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual img {
    margin-top: 24px;
  }

  .about-highlights {
    padding-left: 0;
  }
}

/* ------------------------------
   FEATURES SECTION
------------------------------ */
.features-card {
  padding: 40px;
  text-align: center;
}

.features-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.features-card p {
  max-width: 700px;
  margin: 0 auto 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 10px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-card {
    padding: 24px;
  }
  .features {
    gap: 16px;
  }
}

/* ------------------------------
   WHAT DEMOCRASEE IS NOT
------------------------------ */
.not-card {
  padding: 40px;
}

.not-card h2 {
  text-align: center;
  margin-bottom: 10px;
}

.not-card .tagline {
  text-align: center;
  margin-bottom: 40px;
  color: var(--muted);
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.not-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.not-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.not-icon {
  font-size: 1.8rem;
  color: var(--brand);
  flex-shrink: 0;
}

.not-text h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.not-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.commitment {
  text-align: center;
  margin-top: 40px;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.08),
    rgba(16, 185, 129, 0.08)
  );
  padding: 20px;
  border-radius: var(--radius);
}

.commitment p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .not-card {
    padding: 24px;
  }
  .not-grid {
    gap: 16px;
  }
}

/* ------------------------------
   STATE OF THE ELECTORATE
------------------------------ */
.state-card {
  padding: 40px;
}

.state-header {
  text-align: center;
  margin-bottom: 40px;
}

.state-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.state-header p {
  max-width: 700px;
  margin: 0 auto;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.state-metric {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.state-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.progress {
  height: 8px;
  background: rgba(14, 165, 233, 0.15);
  border-radius: 999px;
  overflow: hidden;
  margin: 8px 0;
}

.progress > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.issue-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 1.05rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--text);
}

.issue-icon {
  font-size: 1.3rem;
}

.state-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.chart-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.chart-placeholder {
  height: 180px;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.08);
  border: 1px dashed rgba(14, 165, 233, 0.3);
  border-radius: var(--radius);
  font-size: 2rem;
  margin-bottom: 10px;
}

.state-footer {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.08),
    rgba(16, 185, 129, 0.08)
  );
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .state-card {
    padding: 24px;
  }

  .state-header h2 {
    font-size: 1.6rem;
  }

  .chart-placeholder {
    height: 150px;
  }
}

/* ------------------------------
   PARTNERS & WHITELABEL
------------------------------ */
.partners-card {
  padding: 40px;
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.partners-header p {
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.partners-column h3 {
  color: var(--brand);
  margin-bottom: 12px;
}

.partners-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.partners-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.partners-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand-2);
  font-weight: bold;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.partners-logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.whitelabel-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partners-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.partners-footer p {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text);
}

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

  .partners-card {
    padding: 24px;
  }

  .partners-logos {
    justify-content: center;
  }
}

/* ------------------------------
   DONATE SECTION
------------------------------ */
.donate-card {
  padding: 40px;
  text-align: center;
}

.donate-header {
  max-width: 700px;
  margin: 0 auto 40px;
}

.donate-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.donate-tier {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.donate-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.donate-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.donate-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

.donate-impact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.impact-icon {
  font-size: 1.8rem;
  color: var(--brand);
  flex-shrink: 0;
}

.donate-footer {
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.donate-footer p {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}

.donate-alt {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta.secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  box-shadow: none;
  transition: all 0.2s ease;
}

.cta.secondary:hover {
  background: var(--brand);
  color: white;
}

@media (max-width: 768px) {
  .donate-card {
    padding: 24px;
  }
}

/* ------------------------------
   CONTACT SECTION
------------------------------ */
.contact-card {
  padding: 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-header p {
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 10px;
}

.input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  outline: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block h3 {
  margin-bottom: 6px;
  color: var(--brand);
}

.info-block a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.info-block a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
  font-size: 1.5rem;
}

.social-links a {
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.map-placeholder {
  margin-top: 10px;
}

.map {
  height: 150px;
  border: 1px dashed rgba(14, 165, 233, 0.3);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.05);
  font-size: 2rem;
}

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

  .contact-card {
    padding: 24px;
  }

  .contact-form {
    order: 2;
  }

  .contact-info {
    order: 1;
  }
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  background: white;
  color: var(--muted);
  padding: 24px 0;
  border-top: 1px solid #e5e7eb;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
  }

  .hero-content {
    align-items: center;
  }

  .hero-image img {
    margin: 0 auto;
  }

  .store-buttons {
    justify-content: center;
  }
}
/* ------------------------------
   GLOBAL SCROLL BEHAVIOR
------------------------------ */
html {
  scroll-behavior: smooth;
}
