/* hako.to splash — loads after base.css.
 * Accent: sage-teal #9ec1b8 (base.css default, so no override needed).
 * Deliberately quiet: the tool list is the page. */

main {
  max-width: 640px;
  padding: 8vh 24px 64px;
}

/* ---------- hero ---------- */
.hero { margin-bottom: 40px; }

.mark {
  font-size: clamp(44px, 9vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.mark .dot { color: var(--p400); cursor: help; }

.tag {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* ---------- tool list ---------- */
.tools { display: flex; flex-direction: column; }

.tools a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 14px 15px 16px;
  border-top: 1px solid var(--border);
  color: var(--fg);
  text-decoration: none;
  border-radius: 8px;
  transition: background .14s ease;
  position: relative;
}
.tools a:last-child { border-bottom: 1px solid var(--border); }

/* accent bar, revealed on hover — the only decoration on the page */
.tools a::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px; border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .14s ease;
}
.tools a:hover, .tools a:focus-visible {
  background: var(--p100);
  outline: none;
}
.tools a:hover::before, .tools a:focus-visible::before { opacity: 1; }

.tools .name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-width: 84px;
  flex: none;
}
.tools .name .dot { color: var(--accent); }

.tools .desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

@media (max-width: 460px) {
  .tools a { flex-direction: column; gap: 3px; padding: 13px 14px; }
  .tools .name { min-width: 0; }
}

/* ---------- about ---------- */
.about { margin-top: 56px; line-height: 1.65; }
.about h2 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-bottom: 14px;
}
.about p { margin-bottom: 12px; font-size: 14px; color: var(--muted); }
.about p strong { color: var(--fg); font-weight: 600; }
.about a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--border); }
.about a:hover { color: var(--p400); border-bottom-color: var(--p400); }
.about .more { font-size: 13px; }
