:root {
  --bg: #efefef;
  --card: #fff;
  --ink: #111;
  --muted: #6b6b6b;
  --muted-2: #8a8a8a;
  --muted-3: #9a9a9a;
  --faint: #b0b0b0;
  --line: #ececec;
  --accent: #3B6EF8;
  --accent-hover: #2f5ad0;
  --accent-tint: #eef2ff;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: #555; }

img { display: block; max-width: 100%; }

.page {
  padding: 28px 20px 60px;
}

.sheet {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 28px;
  padding: 24px 24px 64px;
}

/* Header / nav */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--card);
  margin: 0 -24px;
  padding: 24px 24px 0;
  border-radius: 28px 28px 0 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand img { width: 26px; height: 26px; }

.brand span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pill-nav a {
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  color: var(--muted);
}

.pill-nav a.current {
  background: #f2f2f2;
  color: var(--ink);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.menu-toggle svg { width: 19px; height: 19px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 10px 0 14px;
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--muted);
}

.mobile-nav a.current {
  background: #f2f2f2;
  color: var(--ink);
  font-weight: 500;
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover { background: #333; color: #fff; }

.btn.large { padding: 14px 28px; font-size: 15px; }
.btn.block { display: block; width: 100%; text-align: center; padding: 13px 24px; font-size: 15px; }

/* Hero */

@keyframes clackFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.hero {
  max-width: 620px;
  margin: 0 auto;
  padding: 76px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.hero img.mascot {
  width: 112px;
  height: 112px;
  animation: clackFloat 4s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--muted);
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.hero p.sub {
  margin: 0;
  max-width: 500px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
}

.hero .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.hero .cta small {
  font-size: 13px;
  color: var(--muted-3);
}

/* Sections */

section { max-width: 620px; margin: 0 auto; padding: 96px 0 0; }
section.wide { max-width: 840px; }

.eyebrow {
  margin: 0 0 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-3);
  letter-spacing: 0.02em;
}

/* How it works */

.steps { display: flex; flex-direction: column; gap: 24px; }

.step {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.step p strong { color: var(--ink); font-weight: 600; }

/* Feature grid */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.feature .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent-tint);
  margin-bottom: 14px;
}

.feature .icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.feature h3 { margin: 0 0 6px; font-size: 15px; font-weight: 600; }
.feature p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted-2); }

/* Privacy */

.statement h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.statement p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.statement em { color: var(--ink); font-style: normal; font-weight: 500; }

/* Pricing */

.price-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
}

.price-card img { width: 38px; height: 38px; margin-bottom: 14px; }

.price-card h2 { margin: 0 0 8px; font-size: 24px; letter-spacing: -0.02em; font-weight: 600; }

.price-card > p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
}

.price-card .checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.price-card .checks span { font-size: 14px; color: var(--muted); }

/* Get it free */

.free-intro { max-width: 620px; display: flex; flex-direction: column; gap: 12px; }
.free-intro h3 { margin: 0; font-size: 34px; line-height: 1.15; letter-spacing: -0.03em; font-weight: 600; }
.free-intro p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted); }

.free-steps {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.free-steps .cell { background: #fff; padding: 22px; }
.free-steps .cell .num { display: block; font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.free-steps .cell h4 { margin: 0 0 5px; font-size: 14px; font-weight: 600; }
.free-steps .cell p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted-3); }

.free-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.free-link:hover { color: var(--accent-hover); }

/* FAQ */

.faq-list { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq-item button .q { font-size: 16px; font-weight: 600; color: var(--ink); }

.faq-item button .sign {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 18px;
  line-height: 1;
}

.faq-item .answer {
  display: none;
  padding: 0 44px 22px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
}

.faq-item.open .answer { display: block; }

/* Download CTA */

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 104px;
}

.closing img { width: 72px; height: 72px; }
.closing h2 { margin: 0; font-size: 42px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; }
.closing small { font-size: 13px; color: var(--muted-3); }

/* Footer */

footer.site {
  max-width: 840px;
  margin: 104px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

footer.site .brand img { width: 18px; height: 18px; }
footer.site .brand span { font-size: 14px; font-weight: 500; }

footer.site .links { display: flex; gap: 20px; }
footer.site .links a { font-size: 13px; color: var(--muted-2); }

footer.site .copyright { font-size: 13px; color: var(--faint); }

/* Simple content pages (rules / privacy / support) */

.doc {
  max-width: 620px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.doc h1 { font-size: 40px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; margin: 0 0 8px; }
.doc .updated { font-size: 13px; color: var(--muted-3); margin: 0 0 40px; }
.doc h2 { font-size: 20px; font-weight: 600; margin: 40px 0 10px; }
.doc p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }
.doc ul { margin: 0 0 16px; padding-left: 20px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent); }
.doc a:hover { color: var(--accent-hover); }

.back-link { font-size: 14px; font-weight: 500; color: var(--accent); }
.back-link:hover { color: var(--accent-hover); }

@media (max-width: 900px) {
  section.wide { max-width: 100%; }
}

@media (max-width: 860px) {
  .pill-nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .page { padding: 16px 12px 40px; }
  .sheet { padding: 20px 16px 48px; border-radius: 20px; }
  .nav-wrap { margin: 0 -16px; padding: 20px 16px 0; border-radius: 20px 20px 0 0; }

  .hero { padding-top: 48px; gap: 18px; }
  .hero img.mascot { width: 88px; height: 88px; }
  .hero h1 { font-size: 40px; }
  .hero p.sub { font-size: 17px; }

  section { padding-top: 64px; }
  .closing { padding-top: 72px; }
  footer.site { margin-top: 64px; }

  .closing h2 { font-size: 32px; }
  .statement h2, .free-intro h3 { font-size: 28px; }

  .price-card { padding: 22px; }
  .free-steps .cell { padding: 18px; }

  .faq-item .answer { padding-right: 0; }

  .doc { padding-top: 40px; }
  .doc h1 { font-size: 32px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 34px; }
  .brand span { font-size: 15px; }
}

@media (min-width: 861px) {
  .mobile-nav { display: none !important; }
}
