/* SHE ROCKS — Main styles */
:root {
  --black: #0a0a0a;
  --off-white: #f0ece4;
  --stone: #c4b8a8;
  --rust: #c45c2e;
  --rust-dark: #9e4220;
  --mid: #1e1c1a;
  --border: rgba(196,184,168,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--off-white);
  text-decoration: none;
}

.nav-logo span { color: var(--rust); }

nav a.nav-link {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a.nav-link:hover { color: var(--off-white); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }

.btn-donate-nav {
  background: var(--rust);
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  transition: background 0.2s !important;
}

.btn-donate-nav:hover { background: var(--rust-dark) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rust);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 2rem;
}

h1 .rocks {
  color: transparent;
  -webkit-text-stroke: 2px var(--rust);
  display: block;
}

.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--stone);
  padding: 1rem 2.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--off-white); }

/* HERO RIGHT — geometric */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-geo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: rotateRing 20s linear infinite;
}

.geo-ring:nth-child(1) { width: 500px; height: 500px; animation-duration: 30s; }
.geo-ring:nth-child(2) { width: 350px; height: 350px; animation-duration: 20s; animation-direction: reverse; border-color: rgba(196,92,46,0.2); }
.geo-ring:nth-child(3) { width: 200px; height: 200px; animation-duration: 15s; }

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-center-box {
  width: 240px;
  height: 240px;
  border: 1px solid var(--rust);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: rgba(196,92,46,0.05);
  transform: rotate(45deg);
}

.hero-center-inner {
  transform: rotate(-45deg);
  text-align: center;
  padding: 1rem;
}

.hero-center-inner .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--rust);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--stone);
}

/* TICKER */
.ticker {
  background: var(--rust);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 20s linear infinite;
  gap: 0;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 0 2rem;
}

.ticker-dot {
  color: rgba(255,255,255,0.4);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION BASE */
section {
  padding: 7rem 5rem;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px;
}

/* BLESSING SECTION */
.blessing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.blessing-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.blessing-text h2 em {
  font-style: normal;
  color: var(--rust);
}

.blessing-text p {
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.blessing-text p a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,92,46,0.4);
  transition: border-color 0.2s, color 0.2s;
}

.blessing-text p a:hover {
  color: var(--off-white);
  border-bottom-color: var(--rust);
}

.blessing-photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  display: block;
}

/* PROGRESS BAR */
.progress-block {
  margin: 2.5rem 0;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--mid);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.progress-raised {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--rust);
  display: block;
  line-height: 1;
}

.progress-goal { color: var(--stone); }

.progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(196,184,168,0.15);
  position: relative;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--rust);
  width: 38%;
  transition: width 1s ease;
}

.progress-pct {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--stone);
}

/* DONATION TIERS */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tier-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--off-white);
  padding: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  letter-spacing: 0.05em;
}

.tier-btn:hover, .tier-btn.active {
  border-color: var(--rust);
  background: rgba(196,92,46,0.1);
  color: var(--rust);
}

.tier-btn .tier-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.3rem;
}

.custom-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.custom-input:focus { border-color: var(--rust); }

.custom-input::placeholder { color: var(--stone); }

.recurring-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  cursor: pointer;
}

.toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  transition: background 0.2s;
}

.toggle-switch.on { background: var(--rust); }

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.toggle-switch.on::after { transform: translateX(16px); }

/* IMPACT MODEL */
.impact-section { background: var(--mid); }

.flow-diagram {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 3rem 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.flow-node {
  flex: 1;
  min-width: 160px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  background: rgba(0,0,0,0.3);
}

.flow-node-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.flow-node-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--off-white);
  display: block;
  margin-bottom: 0.3rem;
}

.flow-node-sub {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  line-height: 1.5;
}

.flow-arrow {
  color: var(--rust);
  font-size: 1.2rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.flow-node.highlight {
  border-color: var(--rust);
  background: rgba(196,92,46,0.08);
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.stat-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-cell:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--rust);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.5;
}

/* SHOP — FEATURED PRODUCT LAYOUT */
.products-section {
  margin-top: 3rem;
}

.product-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 1px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.product-featured:hover { border-color: var(--rust); }

.product-featured .product-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.product-featured .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-featured:hover .product-img img { transform: scale(1.03); }

.product-featured .product-info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mid);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.product-card {
  background: var(--black);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card:hover { background: var(--mid); }

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--rust);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
  z-index: 2;
}

.product-card:hover::before { transform: scaleX(1); }

.product-card .product-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img { transform: scale(1.05); }

.product-card .product-info {
  padding: 2rem;
}

.product-drop {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
  display: block;
}

.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--off-white);
}

.product-featured .product-name { font-size: 3.5rem; }

.product-desc {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-featured .product-desc { font-size: 0.8rem; max-width: 320px; }

.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--rust);
  display: block;
  margin-bottom: 0.25rem;
}

.product-cost-note {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  display: block;
  margin-bottom: 2rem;
}

.btn-shop {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  text-align: center;
}

.btn-shop:hover { background: var(--rust-dark); transform: translateY(-1px); }

.btn-shop-coming-soon {
  pointer-events: none;
  cursor: default;
  opacity: 0.9;
}

.limited-tag {
  display: inline-block;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

/* IMPACT STRIP (shop section) */
.impact-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 5rem 0 0;
}

.impact-cell {
  padding: 2.5rem 3rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.impact-cell:last-child { border-right: none; }

.impact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--rust);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.impact-desc {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.6;
}

/* SPONSOR TIERS */
.sponsor-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.sponsor-card {
  background: var(--mid);
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sponsor-card.featured {
  background: var(--rust);
}

.sponsor-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--stone);
  display: block;
  margin-bottom: 1rem;
}

.sponsor-card.featured .sponsor-tier { color: rgba(255,255,255,0.7); }

.sponsor-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--rust);
}

.sponsor-card.featured .sponsor-amount { color: #fff; }

.sponsor-period {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  display: block;
  margin-bottom: 2rem;
}

.sponsor-card.featured .sponsor-period { color: rgba(255,255,255,0.6); }

.sponsor-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex: 1;
}

.sponsor-features li {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sponsor-card.featured .sponsor-features li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.15);
}

.sponsor-features li::before {
  content: '→';
  color: var(--rust);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.sponsor-card.featured .sponsor-features li::before { color: rgba(255,255,255,0.6); }

.btn-sponsor {
  display: block;
  text-align: center;
  padding: 0.9rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--stone);
  color: var(--off-white);
  transition: all 0.2s;
  margin-top: auto;
}

.btn-sponsor:hover { border-color: var(--off-white); }

.sponsor-card.featured .btn-sponsor {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 8rem 5rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: 'SHE ROCKS';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,184,168,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.final-cta .hero-ctas { justify-content: center; position: relative; z-index: 2; }

/* FOOTER */
footer {
  padding: 3rem 5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-brand span { color: var(--rust); }

.footer-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  line-height: 1.7;
}

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-bottom {
  padding: 1.5rem 5rem 5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.footer-bottom a,
.footer-designer-link {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover,
.footer-designer-link:hover {
  color: var(--rust);
}

/* STICKY DONATE */
.sticky-donate {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-donate a {
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(196,92,46,0.4);
  transition: background 0.2s, transform 0.1s;
}

.sticky-donate a:hover { background: var(--rust-dark); transform: translateY(-2px); }

.sticky-donate.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.sticky-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-left { padding: 4rem 1.5rem 2rem; }
  .hero-right { display: none; }
  section { padding: 4rem 1.5rem; }
  .blessing-section { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .products-section { padding: 0; }
  .product-featured { grid-template-columns: 1fr; }
  .product-featured .product-info { padding: 2rem; }
  .product-featured .product-name { font-size: 2.5rem; }
  .products-row { grid-template-columns: 1fr; }
  .impact-strip { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1.5rem 1.5rem 5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  .final-cta { padding: 5rem 1.5rem; }
  .flow-diagram { flex-direction: column; gap: 0; }
  .flow-arrow { transform: rotate(90deg); }
}
