:root {
  --ink: #0A1118;
  --panel: #101B25;
  --panel2: #16232F;
  --line: #22323F;
  --mint: #35E0A1;
  --mint-dim: #1E8F68;
  --amber: #F4B740;
  --coral: #FF5A6E;
  --text: #E8F0F5;
  --muted: #6E8494;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: 50px;
}

.wrap { max-width: 900px; margin: 0 auto; padding: 0 16px; }

.crumbs {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--muted);
  padding-top: 16px;
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.crumbs a:hover { color: var(--mint); }

header {
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.logo span { color: var(--mint); }

h1 {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 640px;
}
.lede {
  font-size: 15.5px;
  color: #A9BAC6;
  max-width: 680px;
  line-height: 1.65;
}

h2 {
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 34px 0 14px;
}
h2:first-of-type { margin-top: 0; }

.tools { display: grid; gap: 12px; }

.tool {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  transition: border-color .16s, transform .16s;
}
.tool:hover {
  border-color: var(--mint-dim);
  transform: translateY(-2px);
}
.tool.soon {
  opacity: .55;
  pointer-events: none;
}
.tool-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.tool h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.015em;
}
.tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(53, 224, 161, .1);
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
}
.tag.gray {
  color: var(--muted);
  background: var(--panel2);
}
.tool p {
  font-size: 14px;
  color: #A9BAC6;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 640px;
}
.tool p b { color: var(--text); font-weight: 600; }
.tool p code {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--mint);
  background: var(--panel2);
  padding: 1px 6px;
  border-radius: 5px;
}
.feats { display: flex; gap: 7px; flex-wrap: wrap; }
.feat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--panel2);
  padding: 6px 11px;
  border-radius: 8px;
}

.empty {
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 28px 22px;
  color: #A9BAC6;
  font-size: 14.5px;
  line-height: 1.65;
}

.seo {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.seo h2 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  text-transform: none;
  color: var(--text);
  margin: 26px 0 11px;
}
.seo h2:first-child { margin-top: 0; }
.seo p {
  font-size: 14.5px;
  line-height: 1.68;
  color: #A9BAC6;
  margin-bottom: 12px;
  max-width: 740px;
}
.seo p b { color: var(--text); }
.seo ul { list-style: none; max-width: 740px; margin-bottom: 14px; }
.seo li {
  font-size: 14.5px;
  line-height: 1.62;
  color: #A9BAC6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 7px;
}
.seo li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--mint-dim);
}
.seo a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 224, 161, .3);
}

footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  text-align: left;
}
.f-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.f-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.f-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 15px;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: border-color .16s, transform .16s;
}
.f-card:hover {
  border-color: var(--mint-dim);
  transform: translateY(-2px);
}
.f-card:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.f-ic {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--panel2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--mint);
  transition: background .2s;
}
.f-ic svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.f-tx b {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.f-tx i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .02em;
}
.f-card.copied .f-ic { background: rgba(53, 224, 161, .16); }
.f-card.copied .f-tx i { color: var(--mint); }
.f-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #A9BAC6;
  margin-bottom: 18px;
}
.f-note a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 224, 161, .3);
}
.f-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  margin-bottom: 14px;
}
.f-legal a,
.f-legal button[data-cookie-settings] {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.f-legal a:hover,
.f-legal button[data-cookie-settings]:hover { color: var(--mint); }
.f-legal button[data-cookie-settings] {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: inherit;
  font: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.f-copy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.f-copy a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 640px) {
  h1 { font-size: 24px; }
}
