:root {
  --bg: #050b12;
  --bg-soft: #091522;
  --panel: rgba(12, 27, 43, 0.78);
  --panel-strong: rgba(15, 35, 55, 0.94);
  --border: rgba(148, 188, 216, 0.16);
  --text: #f5f9fc;
  --muted: #9db0bf;
  --accent: #40d3b4;
  --accent-strong: #1de0b2;
  --accent-soft: rgba(64, 211, 180, 0.14);
  --blue: #4aa8ff;
  --warning: #ffcc66;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 105, 138, 0.18), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(42, 196, 167, 0.12), transparent 28%),
    linear-gradient(180deg, #050b12 0%, #07111d 56%, #050b12 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(107, 157, 190, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 157, 190, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

.radar-glow {
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.11;
  pointer-events: none;
}

.radar-glow-a {
  top: 10%;
  right: -140px;
  background: var(--accent);
}

.radar-glow-b {
  bottom: 8%;
  left: -160px;
  background: var(--blue);
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(64, 211, 180, 0.45);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(64, 211, 180, 0.16), rgba(74, 168, 255, 0.08));
  box-shadow: inset 0 0 24px rgba(64, 211, 180, 0.07);
}

.brand-mark svg {
  width: 28px;
  fill: var(--accent);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7e5ee;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.header-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 60px;
  padding: 64px 0 90px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 7px rgba(29, 224, 178, 0.08), 0 0 18px rgba(29, 224, 178, 0.6);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.75rem);
}

h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-strong), #6ee7c8);
  color: #03221a;
  box-shadow: 0 14px 36px rgba(29, 224, 178, 0.2);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: #e7f0f6;
}

.button-secondary:hover {
  border-color: rgba(64, 211, 180, 0.4);
  background: rgba(64, 211, 180, 0.08);
}

.redirect-panel {
  max-width: 610px;
  margin-top: 24px;
  padding: 15px 16px 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(8, 20, 31, 0.72);
  backdrop-filter: blur(14px);
}

.redirect-panel small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redirect-panel p {
  margin: 2px 0 0;
  font-size: 0.92rem;
}

.redirect-panel strong {
  color: var(--warning);
}

.redirect-panel button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #eaf4f9;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.redirect-panel.is-cancelled strong {
  color: var(--accent);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.radar {
  position: relative;
  width: min(42vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(64, 211, 180, 0.25);
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(rgba(64, 211, 180, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 211, 180, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(64, 211, 180, 0.11), transparent 58%);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow:
    inset 0 0 80px rgba(64, 211, 180, 0.08),
    0 0 100px rgba(24, 113, 100, 0.12);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(64, 211, 180, 0.16);
}

.radar::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.radar::after {
  width: 100%;
  height: 1px;
  top: 50%;
}

.radar-ring {
  position: absolute;
  inset: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(64, 211, 180, 0.17);
  border-radius: 50%;
}

.ring-1 {
  width: 28%;
  height: 28%;
}

.ring-2 {
  width: 55%;
  height: 55%;
}

.ring-3 {
  width: 80%;
  height: 80%;
}

.radar-line {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 47%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 20px rgba(64, 211, 180, 0.8);
  animation: sweep 5s linear infinite;
}

.radar-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 130px;
  transform-origin: left bottom;
  transform: skewY(-26deg);
  background: linear-gradient(0deg, rgba(64, 211, 180, 0.13), transparent);
}

.radar-center {
  position: absolute;
  inset: 50%;
  width: 12px;
  height: 12px;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 24px rgba(29, 224, 178, 0.9);
}

.signal {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(64, 211, 180, 0.08), 0 0 18px rgba(64, 211, 180, 0.8);
  animation: pulse 2.6s ease-in-out infinite;
}

.signal-1 { top: 24%; left: 68%; }
.signal-2 { top: 64%; left: 74%; animation-delay: 0.5s; }
.signal-3 { top: 70%; left: 29%; animation-delay: 1s; }
.signal-4 { top: 31%; left: 34%; animation-delay: 1.5s; }

.radar-label {
  position: absolute;
  left: 50%;
  bottom: 13%;
  translate: -50% 0;
  text-align: center;
}

.radar-label strong,
.radar-label small {
  display: block;
}

.radar-label strong {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.radar-label small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

.tools-section {
  padding: 100px 0 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.portal-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 35, 55, 0.82), rgba(8, 20, 32, 0.86));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(64, 211, 180, 0.12), transparent 34%);
  pointer-events: none;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(64, 211, 180, 0.38);
}

.tool-card.featured {
  border-color: rgba(64, 211, 180, 0.32);
  background: linear-gradient(180deg, rgba(18, 48, 65, 0.92), rgba(7, 25, 34, 0.96));
}

.tool-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.tool-label {
  margin: 24px 0 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tool-card h3 {
  margin: 0;
  font-size: 2rem;
}

.tool-card > p:not(.tool-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.tool-card ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: #d2dee6;
  font-size: 0.9rem;
}

.tool-card li + li {
  margin-top: 9px;
}

.tool-card li::before {
  content: "•";
  margin-right: 9px;
  color: var(--accent);
}

.tool-card > a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: #f4fbff;
  font-weight: 800;
}

.tool-card > a span {
  color: var(--accent);
}

.portal-strip {
  margin-bottom: 92px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(64, 211, 180, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(64, 211, 180, 0.09), rgba(74, 168, 255, 0.06)),
    rgba(8, 20, 31, 0.84);
  box-shadow: var(--shadow);
}

.site-footer {
  min-height: 180px;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  border-top: 1px solid var(--border);
}

.site-footer strong {
  font-family: "Space Grotesk", sans-serif;
}

.site-footer p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: start;
}

.site-footer nav a {
  color: #c9d8e2;
  font-size: 0.88rem;
}

.site-footer nav a:hover {
  color: var(--accent);
}

.copyright {
  grid-column: 1 / -1;
}

.noscript-message {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 30;
  padding: 14px 18px;
  border: 1px solid rgba(255, 204, 102, 0.3);
  border-radius: 12px;
  background: #2c2413;
  color: #ffe3a5;
  text-align: center;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.65; }
  50% { transform: scale(1.25); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text,
  .redirect-panel {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 14px;
  }

  .radar {
    width: min(76vw, 470px);
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  .header-link {
    display: none;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero {
    gap: 36px;
    padding: 54px 0 68px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .redirect-panel {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .redirect-panel button {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tools-section {
    padding: 72px 0 62px;
  }

  .tool-card {
    padding: 24px;
  }

  .portal-strip {
    margin-bottom: 70px;
    padding: 26px;
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }

  .copyright {
    grid-column: auto;
  }
}


/* Entrega 2: páginas institucionais e consentimento */
.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 72px 0 100px;
}

.legal-hero {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
}

.legal-meta {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
}

.legal-content {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(8, 20, 31, .74);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 25px 0 9px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #c6d4dd;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-note {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: var(--accent-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.contact-card h2 {
  margin: 0 0 8px;
}

.contact-card p {
  margin: 0 0 18px;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(calc(100% - 40px), 980px);
  margin: auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(64,211,180,.28);
  border-radius: 18px;
  background: rgba(5, 15, 24, .96);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.cookie-banner a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 11px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-primary {
  border: 0;
  background: var(--accent);
  color: #03221a;
}

.cookie-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

@media (max-width: 760px) {
  .legal-main {
    width: min(calc(100% - 28px), 900px);
    padding-top: 50px;
  }

  .legal-content {
    padding: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }
}


/* v0.3 — Ajuda, Sobre e conteúdo institucional */
.home-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 26px;
}

.home-info-grid article {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(8,20,31,.75);
  box-shadow: var(--shadow);
}

.home-info-grid h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.home-info-grid p:not(.eyebrow) {
  color: var(--muted);
}

.home-info-grid a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
}

.help-search-wrap {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(8,20,31,.7);
}

.help-search-wrap label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.help-search-wrap input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(148,188,216,.22);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.045);
  color: var(--text);
  font: inherit;
}

.help-search-wrap input:focus {
  border-color: rgba(64,211,180,.6);
  box-shadow: 0 0 0 4px rgba(64,211,180,.08);
}

.help-search-wrap small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.help-categories {
  position: sticky;
  top: 12px;
  z-index: 5;
  margin: 0 0 22px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(5,15,24,.9);
  backdrop-filter: blur(16px);
}

.help-categories a {
  padding: 8px 11px;
  border-radius: 10px;
  color: #d5e2ea;
  font-size: .83rem;
  font-weight: 700;
}

.help-categories a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(8,20,31,.73);
  overflow: hidden;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  min-height: 62px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--accent);
  font-size: 1.35rem;
  transition: transform .18s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item div {
  padding: 0 19px 17px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.help-contact {
  margin-top: 28px;
}

.about-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.about-tools section {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.about-tools span {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.about-tools h3 {
  margin: 10px 0 6px;
}

.about-tools p {
  margin: 0;
  font-size: .9rem;
}

.roadmap {
  display: grid;
  gap: 12px;
}

.roadmap-item {
  position: relative;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 3px;
  border-radius: 5px;
}

.roadmap-item.done::before { background: var(--accent); }
.roadmap-item.active::before { background: var(--warning); }
.roadmap-item.future::before { background: var(--blue); }

.roadmap-item span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.roadmap-item strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
}

.roadmap-item p {
  margin: 4px 0 0;
}

@media (max-width: 760px) {
  .home-info-grid,
  .about-tools {
    grid-template-columns: 1fr;
  }

  .help-categories {
    position: static;
  }
}
