:root {
  --green: #16a34a;
  --green-bright: #22c55e;
  --ink: #111111;
  --body: #24272b;
  --muted: #5b6169;
  --line: #e6e8eb;
  --bg: #ffffff;
  --panel: #f6f8f7;
  --maxw: 760px;
}

* { box-sizing: border-box; }

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

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

a { color: var(--green); }
a:hover { color: #0f7a37; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand svg { display: block; height: 34px; width: auto; }
.brand { text-decoration: none; }
.nav { display: flex; gap: 20px; font-size: 15px; }
.nav a { color: var(--body); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--green); }

/* Hero (landing) */
.hero {
  padding: 72px 0 40px;
  text-align: center;
}
.hero .mark { height: 78px; width: auto; margin-bottom: 26px; }
.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 30px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.pill {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--body);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.pill:hover { border-color: var(--green); color: var(--green); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px 0 8px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.feature h3 { margin: 0 0 6px; font-size: 16px; color: var(--ink); }
.feature p { margin: 0; font-size: 15px; color: var(--muted); }

/* Legal / content pages */
.doc { padding: 44px 0 8px; }
.doc h1 {
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 6px;
}
.doc .effective {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 8px;
  font-style: italic;
}
.doc h2 {
  font-size: 21px;
  color: var(--ink);
  margin: 38px 0 10px;
  padding-top: 6px;
}
.doc h3 { font-size: 17px; color: var(--ink); margin: 24px 0 6px; }
.doc p, .doc li { color: var(--body); }
.doc ul { padding-left: 22px; }
.doc li { margin: 7px 0; }
.doc .controller {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 18px 0;
}
.doc .controller p { margin: 0; }

/* Callout box for the deletion steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.steps li {
  position: relative;
  padding: 14px 16px 14px 56px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 10px 0;
  background: #fff;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--muted);
  margin: 20px 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 28px 0 40px;
  font-size: 14px;
  color: var(--muted);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--green); }
.site-footer .links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { padding: 48px 0 32px; }
  .hero h1 { font-size: 32px; }
  .feature-row { grid-template-columns: 1fr; }
  .nav { gap: 14px; font-size: 14px; }
  .doc h1 { font-size: 27px; }
}
