:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --pink: #ec4899;
  --cream: #fffaf3;
  --ink: #1c1917;
  --ink-soft: #57534e;
  --card: #ffffff;
  --border: rgba(28, 25, 23, 0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .wrap { display: flex; align-items: center; gap: 12px; }
header img { width: 40px; height: 40px; border-radius: 10px; }
header .brand { font-size: 1.25rem; font-weight: 800; }
header nav { margin-left: auto; display: flex; gap: 18px; font-weight: 600; font-size: 0.95rem; }

/* Hero */
.hero { text-align: center; padding: 72px 0 56px; }
.hero img { width: 120px; height: 120px; border-radius: 28px; box-shadow: 0 12px 40px rgba(249, 115, 22, 0.25); }
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900;
  margin-top: 24px;
  background: linear-gradient(120deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.tag { font-size: 1.25rem; color: var(--ink-soft); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero .badge {
  display: inline-block; margin-top: 28px; padding: 12px 26px;
  background: var(--ink); color: #fff; border-radius: 14px; font-weight: 700;
}
.hero .note { margin-top: 10px; font-size: 0.85rem; color: var(--ink-soft); }

/* Screenshots */
.shots {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  padding: 8px 0 56px;
}
.shots img {
  width: 200px; border-radius: 22px; border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(28, 25, 23, 0.16);
}

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; padding: 24px 0 64px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 22px; box-shadow: 0 4px 16px rgba(28, 25, 23, 0.04);
}
.feature .emoji { font-size: 1.8rem; }
.feature h3 { margin: 10px 0 6px; font-size: 1.05rem; }
.feature p { font-size: 0.92rem; color: var(--ink-soft); }

/* Pricing */
.pricing { text-align: center; padding: 24px 0 64px; }
.pricing-title { font-size: 1.7rem; font-weight: 900; margin-bottom: 24px; }
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; align-items: start; text-align: left;
}
.plan {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px;
  padding: 26px; box-shadow: 0 4px 16px rgba(28, 25, 23, 0.04);
}
.plan.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 10px 34px rgba(249, 115, 22, 0.14);
}
.plan h3 { font-size: 1.1rem; }
.plan .price { font-size: 2rem; font-weight: 900; margin-top: 4px; }
.plan .price span { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); }
.plan .trial { color: var(--orange-dark); font-weight: 700; margin-top: 2px; font-size: 0.92rem; }
.plan ul { list-style: none; margin-top: 14px; font-size: 0.92rem; }
.plan li { padding: 3px 0; }
.plan li::before { content: "🐾 "; }
.pricing .free-note { max-width: 640px; margin: 26px auto 0; font-size: 0.88rem; color: var(--ink-soft); text-align: center; }

/* Legal pages */
.doc { padding: 48px 0 72px; }
.doc h1 { font-size: 2rem; font-weight: 900; }
.doc .updated { color: var(--ink-soft); font-size: 0.9rem; margin: 6px 0 30px; }
.doc h2 { font-size: 1.15rem; margin: 28px 0 8px; }
.doc p { color: var(--ink-soft); white-space: pre-line; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 34px 0 48px; text-align: center; font-size: 0.88rem; color: var(--ink-soft); }
footer .links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; font-weight: 600; }

@media (max-width: 560px) {
  header nav { gap: 12px; font-size: 0.85rem; }
  .hero { padding: 48px 0 36px; }
}
