:root {
  color-scheme: light;
  --bg: #f7f7fb;
  --text: #1b1b24;
  --muted: #5c5c72;
  --accent: #5c2d91;
  --accent-2: #f4b740;
  --surface: #ffffff;
  --border: #e4e4ef;
  --shadow: 0 20px 45px rgba(55, 25, 89, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.background-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 420px;
  background: radial-gradient(circle at top left, rgba(92, 45, 145, 0.25), transparent 60%);
  z-index: -1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 6vw;
  position: sticky;
  top: 0;
  background: rgba(247, 247, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cross {
  font-size: 2rem;
  color: var(--accent);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.2rem;
}

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

.nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
}

.pill {
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}

main {
  padding: 2rem 6vw 4rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0.6rem 0 1rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.hero-text {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.primary,
.secondary {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--border);
}

.encouragement {
  padding: 1rem 1.2rem;
  background: rgba(92, 45, 145, 0.1);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-metrics h3 {
  font-size: 1.8rem;
  color: var(--accent);
}

.hero-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.notify-message {
  margin-top: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.mission {
  margin: 4rem 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mission-cards {
  display: grid;
  gap: 1rem;
}

.mission-cards article {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.products {
  margin: 4rem 0;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.filter {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.filter.active {
  background: var(--accent);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-image {
  height: 140px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-image.tees {
  background: linear-gradient(135deg, #5c2d91, #8360c3);
}

.product-image.hats {
  background: linear-gradient(135deg, #f4b740, #f4d35e);
  color: #3d2b1f;
}

.product-image.mugs {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.badge {
  background: rgba(92, 45, 145, 0.12);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.impact {
  margin: 4rem 0;
}

.impact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.impact-grid div {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.cta {
  margin: 5rem 0 3rem;
}

.cta-card {
  background: linear-gradient(135deg, rgba(92, 45, 145, 0.92), rgba(30, 60, 114, 0.88));
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
}

.cta-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  justify-content: center;
}

.cta-form input {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  min-width: 220px;
}

.form-message {
  margin-top: 0.75rem;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 6vw 3rem;
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 6vw;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .pill {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-metrics {
    flex-direction: column;
  }

  .cta-card {
    padding: 2.2rem 1.5rem;
  }
}
