:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #65706b;
  --line: #dbe3de;
  --paper: #ffffff;
  --accent: #116149;
  --accent-dark: #0b4937;
  --accent-soft: #e5f2ed;
  --warm: #f1eadc;
  --shadow: 0 22px 64px rgba(31, 54, 45, 0.09);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(202, 233, 220, 0.5), transparent 31rem),
    linear-gradient(180deg, #fbfcfb 0%, #f4f7f5 100%);
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid rgba(17, 97, 73, 0.24);
  outline-offset: 4px;
  border-radius: 6px;
}

.page-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid rgba(186, 200, 192, 0.6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 9px;
  border-radius: 11px;
  background: var(--accent);
}

.brand-mark i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: white;
}

.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 12px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 680;
}

.header-nav > a {
  text-underline-offset: 5px;
  text-decoration-color: rgba(17, 97, 73, 0.34);
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #405049;
}

.privacy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a778;
  box-shadow: 0 0 0 4px rgba(40, 167, 120, 0.12);
}

.hero {
  max-width: 950px;
  padding: clamp(84px, 12vw, 146px) 0 clamp(76px, 10vw, 116px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p { margin-top: 0; }

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 940px;
  margin-bottom: 27px;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: -0.058em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: #4e5a55;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  color: white;
  background: var(--accent);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.primary-link:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(17, 97, 73, 0.18);
  transform: translateY(-1px);
}

.tools-section {
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid rgba(207, 218, 212, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-heading > p {
  max-width: 330px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-rows: auto 1fr auto auto;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfcfb;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tool-card::after {
  position: absolute;
  right: -78px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border: 42px solid rgba(17, 97, 73, 0.055);
  border-radius: 50%;
  content: "";
}

.tool-card:nth-child(2)::after { border-color: rgba(173, 111, 40, 0.07); }

.tool-card:hover {
  border-color: rgba(17, 97, 73, 0.5);
  box-shadow: 0 18px 42px rgba(31, 54, 45, 0.09);
  transform: translateY(-3px);
}

.tool-index {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.tool-copy {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.tool-kicker {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-copy strong {
  margin-bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.tool-copy > span:last-child {
  max-width: 480px;
  color: #59645f;
  font-size: 15px;
  line-height: 1.65;
}

.tool-action {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 14px;
  font-weight: 780;
}

.tool-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-details span {
  padding: 7px 10px;
  border: 1px solid #dfe7e2;
  border-radius: 999px;
  color: #52615a;
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 680;
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(90px, 12vw, 150px) clamp(8px, 2vw, 24px);
}

.safety-intro > p:last-child {
  max-width: 470px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.safety-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.safety-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.safety-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
}

.safety-steps strong { font-size: 16px; }

.safety-steps p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.closing-section {
  padding: clamp(60px, 9vw, 100px);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.12), transparent 18rem),
    var(--accent-dark);
}

.closing-section .eyebrow { color: #9fd4c0; }

.closing-section h2 { max-width: 780px; }

.closing-section > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: #d7e7e1;
  font-size: 17px;
  line-height: 1.7;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 28px;
  padding: 46px 0 54px;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand { grid-row: span 2; color: var(--ink); }

footer p { margin: 0; text-align: right; }

@media (max-width: 800px) {
  .page-shell { width: min(100% - 28px, 1160px); }
  .privacy-badge { display: none; }
  .hero { padding-top: 76px; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading > p { text-align: left; }
  .tool-grid, .safety-section { grid-template-columns: 1fr; }
  .tool-card { min-height: 350px; }
  .safety-section { gap: 44px; }
  footer { grid-template-columns: 1fr; }
  .footer-brand { grid-row: auto; margin-bottom: 14px; }
  footer p { text-align: left; }
}

@media (max-width: 480px) {
  .site-header { min-height: 72px; }
  .header-nav > a { font-size: 12px; }
  h1 { font-size: 47px; }
  .tools-section { padding: 24px 18px; border-radius: 22px; }
  .tool-card { min-height: 390px; padding: 24px; }
  .closing-section { padding: 44px 26px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
