:root {
  --bg: #fbf7f0;
  --surface: #ffffff;
  --ink: #1e1a16;
  --ink2: #5b524a;
  --ink3: #8e8275;
  --amber: #e8a02a;
  --wash: #fdf1d8;
  --border: rgba(30, 26, 22, 0.14);
  --hairline: rgba(30, 26, 22, 0.08);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: #b5760f; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 22px; }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.nav .brand { display: flex; align-items: center; gap: 10px; }
.nav .brand img { height: 26px; width: auto; display: block; }
.nav .brand .name { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.bee { color: var(--amber); }
.better { color: var(--ink); }
.nav .links { display: flex; gap: 18px; font-size: 14px; font-weight: 600; }
.nav .links a { color: var(--ink2); }

.hero { text-align: center; padding: 54px 0 30px; }
.hero .mark { height: 84px; width: auto; margin: 0 auto 20px; display: block; }
.hero h1 { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: clamp(34px, 7vw, 52px); letter-spacing: -0.01em; line-height: 1; margin: 0; }
.hero .product { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: clamp(20px, 4vw, 26px); color: var(--ink2); margin: 8px 0 0; letter-spacing: -0.02em; }
.hero p.tag { font-size: clamp(17px, 3.2vw, 20px); color: var(--ink2); margin: 18px auto 0; max-width: 30ch; }

.badge { display: inline-flex; align-items: center; gap: 11px; margin-top: 26px; background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 14px; }
.badge:hover { text-decoration: none; opacity: 0.92; }
.badge svg { width: 22px; height: 22px; }
.badge small { display: block; font-size: 10px; opacity: 0.72; font-weight: 500; line-height: 1.1; }
.badge b { font-size: 17px; font-weight: 700; line-height: 1.15; }

.shots { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin: 48px 0 8px; }
.shots img { width: 230px; max-width: 42vw; height: auto; border-radius: 24px; box-shadow: 0 18px 48px -18px rgba(30, 26, 22, 0.4); border: 1px solid var(--hairline); }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 52px 0 8px; }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature { background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px; padding: 18px 20px; }
.feature h3 { margin: 0 0 5px; font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--ink2); font-size: 14.5px; line-height: 1.5; }

.page { padding: 12px 0 56px; }
.page h1 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 30px; letter-spacing: -0.02em; margin: 18px 0 4px; }
.page .updated { color: var(--ink3); font-size: 13px; margin: 0 0 26px; }
.page h2 { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 700; margin: 30px 0 8px; }
.page p, .page li { color: #3c352e; font-size: 15.5px; }
.page ul { padding-left: 20px; }
.page li { margin: 6px 0; }

.foot { border-top: 1px solid var(--hairline); margin-top: 44px; padding: 26px 0 48px; color: var(--ink3); font-size: 13.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.foot a { color: var(--ink2); }
.foot .links { display: flex; gap: 16px; }
