:root {
  --teal: #009688;
  --teal-d: #00796b;
  --ink: #14302e;
  --muted: #5b6b69;
  --bg: #f4faf9;
  --card: #ffffff;
  --line: #e2ecea;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: var(--teal-d); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* hero */
.hero {
  background: radial-gradient(1200px 500px at 70% -10%, #b2dfdb55, transparent),
              linear-gradient(180deg, #ffffff, var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 64px 0 48px;
}
.hero .wrap { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.hero-text { flex: 1 1 360px; }
.hero-text img.logo { width: min(440px, 90%); margin-bottom: 18px; }
.hero h1 { font-size: 1.6rem; line-height: 1.25; margin-bottom: 12px; }
.hero p.sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; max-width: 46ch; }
.hero .mascot { flex: 0 0 240px; text-align: center; }
.hero .mascot img { width: 220px; }

.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 2px solid var(--teal);
}
.btn.primary { background: var(--teal); color: #fff; }
.btn.ghost { color: var(--teal-d); background: transparent; }
.btn:hover { filter: brightness(1.05); }

/* sections */
section { padding: 56px 0; }
section h2 { font-size: 1.5rem; text-align: center; margin-bottom: 8px; }
section .lead { text-align: center; color: var(--muted); margin-bottom: 36px; }

/* features */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px; transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px #00968822; }
.card .ico { font-size: 1.6rem; }
.card h3 { font-size: 1.05rem; margin: 8px 0 6px; }
.card p { color: var(--muted); font-size: .95rem; }

/* shots */
.shots { background: #eef6f5; }
.shots .row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.shots img { width: 230px; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 12px 30px #00000014; }

/* two apps */
.apps .grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

footer { border-top: 1px solid var(--line); padding: 32px 0; text-align: center; color: var(--muted); font-size: .9rem; }
.badge { display:inline-block; background:#e0f2f1; color:var(--teal-d); border-radius:999px; padding:4px 12px; font-size:.8rem; font-weight:700; margin-bottom:14px;}

/* --- product site: top nav --- */
.nav { position: sticky; top: 0; z-index: 10; background: #ffffffe6; backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 20px; padding: 12px 24px; }
.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink);
  text-decoration: none; }
.nav .brand img { height: 26px; }
.nav .links { margin-left: auto; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav .links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav .links a:hover { color: var(--teal-d); }
.nav .links a.cta { background: var(--teal); color: #fff; padding: 8px 16px; border-radius: 999px; }

/* --- pricing --- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px;
  max-width: 880px; margin: 0 auto; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  display: flex; flex-direction: column; }
.plan.feature { border: 2px solid var(--teal); box-shadow: 0 12px 30px #00968822; }
.plan h3 { font-size: 1.15rem; margin-bottom: 4px; }
.plan .price { font-size: 2rem; font-weight: 800; margin: 8px 0; }
.plan .price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.plan ul { list-style: none; margin: 14px 0 20px; }
.plan li { padding: 5px 0; color: var(--muted); font-size: .95rem; }
.plan li::before { content: "✓"; color: var(--teal); font-weight: 800; margin-right: 8px; }
.plan .tag { align-self: flex-start; background: #e0f2f1; color: var(--teal-d); border-radius: 999px;
  padding: 3px 10px; font-size: .72rem; font-weight: 700; margin-bottom: 10px; }

/* --- legal pages --- */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.legal h1 { font-size: 1.8rem; margin-bottom: 6px; }
.legal .updated { color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 1.15rem; margin: 26px 0 8px; }
.legal h3 { font-size: 1rem; margin: 16px 0 6px; }
.legal p, .legal li { color: #36433f; margin-bottom: 10px; }
.legal ul { margin: 0 0 10px 22px; }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: .9rem; }
.site-footer .wrap { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--teal-d); }
.site-footer .sp { margin-left: auto; }
