/* WattsEaten site styles */

:root {
  --orange: #E8641B;
  --orange-soft: #F2A33E;
  --ink: #1B2A4A;
  --cream: #FAF6F0;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --card: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--orange); }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo { width: 32px; height: 32px; }

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.site-nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* Hero */
.hero {
  text-align: center;
  padding: 72px 0 56px;
}

.hero-logo {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.beta-badge {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.beta-note {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Sections */
.section { padding: 64px 0; }

.section-alt { background: #f3ece2; }

.section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--text-muted);
}

.center { text-align: center; }

/* Steps & features share a card grid */
.steps, .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.step, .feature {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(27, 42, 74, 0.06);
}

.step img, .feature img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  /* Phone screenshots are tall; keep cards tidy */
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  background: #eee;
}

.step h3, .feature h3 {
  color: var(--ink);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.step p, .feature p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Legal page */
.legal { max-width: 760px; }

.legal h1 {
  color: var(--ink);
  font-size: 2rem;
  margin-bottom: 6px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.legal h2 {
  text-align: left;
  font-size: 1.3rem;
  margin: 32px 0 10px;
}

.legal h3 {
  color: var(--ink);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal p { margin-bottom: 12px; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 24px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 18px;
}

.site-footer a:hover { color: var(--orange); }

/* Mobile */
@media (max-width: 760px) {
  .steps, .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .site-nav a { margin-left: 14px; font-size: 0.85rem; }
  .footer-inner { flex-direction: column; gap: 10px; }
}
