:root {
  --bg: #fff7e6;
  --bg-warm: #fae9a6;
  --panel: #ffffff;
  --ink: #2b2b2b;
  --accent: #9b5de5;
  --accent-2: #4d9de0;
  --green: #3dd68c;
  --pink: #ff6fb5;
  --radius: 28px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 22px; }

/* Header / nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  max-width: 960px;
  margin: 0 auto;
}
.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; color: var(--accent); text-decoration: none; }
.nav .brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav a.link { color: var(--ink); text-decoration: none; font-weight: 700; margin-left: 18px; opacity: 0.75; }
.nav a.link:hover { opacity: 1; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  padding: 30px 0 60px;
  text-align: center;
}
.hero img.jenna { width: 200px; height: 200px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.12)); }
.hero .eyebrow { font-weight: 800; color: var(--ink); opacity: 0.55; letter-spacing: 0.5px; text-transform: uppercase; font-size: 14px; }
.hero h1 { font-size: clamp(34px, 7vw, 56px); font-weight: 900; color: var(--accent); margin: 4px 0 10px; }
.hero p.tag { font-size: clamp(18px, 3.5vw, 22px); font-weight: 700; max-width: 640px; margin: 0 auto 22px; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.badge {
  background: var(--panel);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.badge.green { color: var(--green); }
.badge.purple { color: var(--accent); }
.badge.blue { color: var(--accent-2); }
.badge.pink { color: var(--pink); }

.store {
  display: inline-block;
  margin-top: 26px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.store small { display: block; font-weight: 600; opacity: 0.7; font-size: 12px; }

/* Sections */
section.block { padding: 56px 0; }
section.block h2 { font-size: clamp(26px, 5vw, 36px); font-weight: 900; text-align: center; margin: 0 0 8px; }
section.block p.lead { text-align: center; max-width: 640px; margin: 0 auto 36px; font-size: 18px; opacity: 0.8; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-bottom: 6px solid rgba(0,0,0,0.06);
}
.card .ico { font-size: 34px; }
.card h3 { margin: 10px 0 6px; font-size: 20px; font-weight: 900; }
.card p { margin: 0; opacity: 0.8; font-size: 15px; }

/* Promise */
.promise { background: var(--accent); color: #fff; border-radius: var(--radius); padding: 40px 28px; text-align: center; box-shadow: var(--shadow); }
.promise h2 { color: #fff; }
.promise p { font-size: 18px; max-width: 620px; margin: 0 auto; opacity: 0.95; }

/* Article (privacy / support) */
.article { padding: 44px 0 64px; }
.article h1 { font-size: clamp(30px, 6vw, 42px); color: var(--accent); font-weight: 900; margin-bottom: 4px; }
.article .updated { opacity: 0.55; font-weight: 700; margin-bottom: 24px; }
.article h2 { font-size: 22px; font-weight: 900; margin: 28px 0 8px; }
.article p, .article li { font-size: 16px; }
.article a { color: var(--accent); font-weight: 700; }
.article .panel { background: var(--panel); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); }

/* Footer */
footer {
  background: var(--bg-warm);
  padding: 36px 0;
  text-align: center;
  margin-top: 20px;
}
footer .links a { color: var(--ink); font-weight: 800; text-decoration: none; margin: 0 12px; opacity: 0.8; }
footer .links a:hover { opacity: 1; }
footer .fine { margin-top: 14px; opacity: 0.55; font-size: 14px; font-weight: 600; }
footer .heart { color: var(--pink); }
