body { background: var(--page); color: var(--text); }
.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 100;
  translate: 0 -160%;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: white;
}
.skip-link:focus { translate: 0; }

.category-hero {
  width: min(1440px, calc(100% - 32px));
  margin: auto;
  padding-block: clamp(60px, 9vw, 120px) clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(240px,.65fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
}
.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.category-hero h1 {
  margin: 14px 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: 1;
}
.category-hero h1 em { color: var(--primary); font-style: normal; }
.category-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.9;
}
.hero-stat {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-stat strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 92px);
  line-height: 1;
}
.hero-stat span {
  display: block;
  margin-block-start: 10px;
  color: var(--muted);
  font-size: 12px;
}

.tool-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}
.tool-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: .18s ease;
}
.tool-card:hover {
  border-color: var(--primary);
  translate: 0 -2px;
}
.tool-card.featured {
  background: var(--primary);
  color: white;
}
.tool-number {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.tool-card.featured p,
.tool-card.featured span:not(.tool-number) { color: rgb(255 255 255 / 75%); }
.tool-card h2 {
  margin: 12px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
}
.tool-card div > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.tool-card > strong:last-child {
  align-self: end;
  color: var(--primary);
  font-size: 22px;
}
.tool-card.featured > strong:last-child { color: white; }
.coming-soon {
  opacity: .72;
  box-shadow: none;
}
.coming-soon:hover {
  border-color: var(--line);
  translate: none;
}
.coming-soon > strong:last-child {
  font-size: 10px;
  white-space: nowrap;
}

.content-section {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.content-section h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.reason-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
}
.reason-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.roadmap-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.roadmap-list li {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
}

@media (max-width: 860px) {
  .category-hero { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reason-grid { grid-template-columns: 1fr; }
}
