/* Water — cyan UI, lime logo & footer links, blob bottom-left */
:root {
  --shell-accent: #4af0c8;
  --shell-accent-rgb: 74, 240, 200;
  --shell-h1-em: #4af0c8;
  --shell-logo: #c8f04a;
  --shell-grid-rgb: 74, 240, 200;
  --shell-blob-rgb: 74, 240, 200;
  --shell-blob-alpha: 0.05;
  --shell-blob-top: auto;
  --shell-blob-right: auto;
  --shell-blob-bottom: -200px;
  --shell-blob-left: -200px;
  --shell-footer-link: #c8f04a;
  --shell-faq-link: #4af0c8;
  --shell-tool-link-hover: #4af0c8;
  --shell-recalc-hover: #4af0c8;
}

.water-hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.water-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--shell-accent), transparent);
  opacity: 0.6;
}

.water-number {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -4px;
  color: var(--shell-accent);
  margin-bottom: 8px;
}

.water-unit {
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.water-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.water-cups {
  font-family: Syne, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--shell-accent);
  margin-top: 12px;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

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

.b-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.b-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-family: Syne, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.b-val {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--shell-accent);
  margin-bottom: 4px;
}

.b-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.schedule-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 42, 58, 0.5);
}

.schedule-row:last-child {
  border-bottom: none;
}

.sched-time {
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--shell-accent);
  min-width: 80px;
}

.sched-amt {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}

.sched-tip {
  font-size: 0.78rem;
  color: var(--muted);
}
