* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html,body {
  background:#ecfdf5;
  color:#064e3b;
  font:17px/1.7 "Segoe UI",sans-serif;
}
.mint-bar {
  background:#047857;
  color:#ecfdf5;
  padding:12px 16px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}
.brand {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:18px;
}
.brand svg {
  width:28px;
  height:28px;
}
.mint-bar nav {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-left:auto;
}
a.hit {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  min-width:88px;
  padding:12px 18px;
  background:#065f46;
  color:#ecfdf5;
  text-decoration:none;
  border-radius:14px;
  font-size:16px;
}
a.hit:hover {
  background:#064e3b;
}
main {
  padding:20px 16px 48px;
}
.hero {
  margin-bottom:18px;
}
.hero h1 {
  font-size:26px;
  margin-bottom:10px;
}
.hero p {
  margin-bottom:8px;
  max-width:36em;
}
.tiles {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:20px;
}
.tile {
  background:#fff;
  padding:22px;
  border-radius:18px;
  min-height:220px;
  box-shadow:0 0 0 1px #a7f3d0;
}
.tile svg {
  width:36px;
  height:36px;
  color:#047857;
}
.tile h2,.cmp h2,#pen h2,#lack h2,#faq h2 {
  font-size:20px;
  margin:10px 0;
  color:#065f46;
}
.tile p,#pen p,#lack p {
  font-size:16px;
}
.cmp {
  margin-bottom:20px;
}
.cmp table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
  font-size:16px;
}
.cmp th {
  background:#047857;
  color:#ecfdf5;
  text-align:left;
  padding:14px;
  min-height:56px;
}
.cmp td {
  padding:14px;
  border-bottom:1px solid #a7f3d0;
  vertical-align:top;
}
.cmp p {
  margin-top:12px;
}
.numtiles {
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px;
}
.numtiles article {
  display:flex;
  align-items:stretch;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  min-height:88px;
}
.numtiles span {
  flex:0 0 72px;
  background:#047857;
  color:#ecfdf5;
  font-size:36px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
}
.numtiles div {
  padding:16px 18px;
}
.numtiles h3 {
  font-size:18px;
  margin-bottom:6px;
}
#pen,#lack,#faq {
  margin-bottom:20px;
}
details {
  background:#fff;
  margin-bottom:10px;
  padding:8px 12px;
  border-radius:14px;
}
summary {
  cursor:pointer;
  color:#047857;
  min-height:56px;
  display:flex;
  align-items:center;
  font-size:16px;
}
details p {
  margin:8px 4px 12px;
}
.more-touch {
  background:#fff;
  padding:18px;
  border-radius:18px;
  margin-bottom:20px;
  box-shadow:0 0 0 1px #a7f3d0;
}
.more-touch h3 {
  color:#065f46;
  margin-bottom:10px;
  font-size:20px;
}
.more-touch p {
  margin-bottom:8px;
}
a.hit:focus {
  outline:3px solid #34d399;
  outline-offset:2px;
}
.tile:hover {
  box-shadow:0 0 0 2px #047857;
}
.numtiles article:hover span {
  background:#065f46;
}
.cmp tr:nth-child(even) td {
  background:#ecfdf5;
}
.site-footer {
  padding:20px 16px;
  background:#064e3b;
  color:#a7f3d0;
  font-size:13px;
}
.site-footer p {
  margin-bottom:6px;
}
@media (max-width:800px) {
.tiles {
  grid-template-columns:1fr;
}
.numtiles span {
  flex-basis:56px;
  font-size:28px;
}
}
