/* FINNTI — identidade institucional
   Paleta: azul profundo, ciano, turquesa, violeta
   Tipografia: Inter (texto) + Manrope (títulos)
*/

:root {
  --navy-950: #040814;
  --navy-900: #07111f;
  --navy-800: #0c1a30;
  --navy-700: #12243f;
  --navy-600: #1a3256;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --teal: #2dd4bf;
  --violet: #8b5cf6;
  --white: #ffffff;
  --off: #f4f7fb;
  --off-2: #e8eef6;
  --ink: #0c1a30;
  --ink-soft: #334155;
  --text: #e8eef7;
  --muted: #9aa8bc;
  --line: rgba(232, 238, 247, 0.1);
  --line-strong: rgba(232, 238, 247, 0.18);
  --shadow: 0 18px 50px rgba(4, 8, 20, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --max: 1160px;
  --grad: linear-gradient(135deg, #2dd4bf 0%, #3b82f6 50%, #8b5cf6 100%);
  --grad-soft: linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.16));
  --font-body: "Inter", system-ui, sans-serif;
  --font-title: "Manrope", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.logo svg {
  width: 36px;
  height: 36px;
  max-width: none;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 54px;
  max-width: min(210px, 40vw);
  object-fit: contain;
  flex-shrink: 0;
}

.logo--footer img {
  height: 72px;
  max-width: 260px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--grad);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

/* Justificação de textos corridos */
:is(
  .about-copy p,
  .card p,
  .pillar p,
  .hero .lead,
  .section__head .lead,
  .cta-band .lead,
  .privacy article p,
  main p:not(.subtitle):not(.brand-kicker):not(.placeholder-note):not(.kicker)
) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.section__head--center .lead,
.cta-band .lead {
  text-align-last: center;
}

.map-card__body p {
  text-align: left;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--alt {
  background: var(--navy-900);
}

.section--deep {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(139, 92, 246, 0.14), transparent 60%),
    radial-gradient(700px 380px at 90% 100%, rgba(45, 212, 191, 0.1), transparent 55%),
    var(--navy-800);
}

.section--light {
  background: var(--off);
  color: var(--ink-soft);
}

.section--light h2,
.section--light h3 {
  color: var(--ink);
}

.section--light .eyebrow {
  color: #0f766e;
}

.section--light .lead,
.section--light p {
  color: var(--ink-soft);
}

.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  justify-content: center;
}

.section__head--center .lead {
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 700;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--cyan);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--whatsapp {
  background: #128c7e;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #0e7a6e;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(59, 130, 246, 0.16), transparent 50%),
    radial-gradient(900px 500px at 10% 90%, rgba(139, 92, 246, 0.14), transparent 46%),
    var(--navy-950);
  padding: calc(var(--header-h) + 48px) 0 72px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 238, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 238, 247, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 750;
  margin: 10px 0 18px;
}

.hero .brand-kicker {
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pill {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 999px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-copy p + p {
  margin-top: 16px;
}

.network-card {
  background: var(--grad-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 380px;
}

.network-svg {
  width: 100%;
  height: auto;
}

/* Cards */
.cards-3,
.cards-2,
.cards-4,
.area-grid,
.sol-grid,
.partner-grid,
.audience-grid,
.project-grid,
.gov-grid {
  display: grid;
  gap: 18px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.area-grid { grid-template-columns: repeat(3, 1fr); }
.sol-grid { grid-template-columns: repeat(4, 1fr); }
.partner-grid { grid-template-columns: repeat(3, 1fr); }
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.project-grid { grid-template-columns: repeat(3, 1fr); }
.gov-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.section--light .card {
  background: var(--white);
  border-color: rgba(12, 26, 48, 0.08);
  box-shadow: 0 10px 30px rgba(12, 26, 48, 0.06);
  color: var(--ink-soft);
}

.section--light .card:hover {
  border-color: rgba(59, 130, 246, 0.35);
}

.card h3 {
  font-size: 1.15rem;
  margin: 10px 0 10px;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.section--light .card p,
.section--light .card li {
  color: var(--ink-soft);
}

.card ul {
  display: grid;
  gap: 6px;
}

.card li {
  padding-left: 14px;
  position: relative;
}

.card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  color: var(--cyan);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.sol-card {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
}

.sol-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
}

/* Research pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pillar {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(4, 8, 20, 0.35);
}

.pillar span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.pillar h3 {
  margin: 10px 0 8px;
}

/* Researchers */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Ecosystem */
.eco-visual {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(59, 130, 246, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.02);
  padding: 28px 20px;
  overflow: hidden;
}

.eco-ring {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.eco-ring li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 17, 31, 0.7);
  font-size: 0.9rem;
  color: var(--text);
}

.eco-center {
  width: 120px;
  height: 120px;
  margin: 28px auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--navy-800);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--navy-800), var(--navy-800)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 0 12px rgba(59, 130, 246, 0.08);
}

.eco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.eco-tags li {
  font-size: 0.88rem;
  color: var(--muted);
  border-left: 2px solid var(--violet);
  padding-left: 10px;
}

/* Audience */
.audience-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience-card .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

/* Projects */
.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card__body {
  padding: 20px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.tag {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.placeholder-note {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.8;
}

/* Indicators */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  text-align: center;
  padding: 28px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Governance */
.gov-item {
  padding: 24px 22px;
  text-align: left;
}

.gov-item h3 {
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
  margin-bottom: 10px;
}

.gov-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: justify;
}

/* CTA */
.cta-band {
  padding: 88px 0;
  background:
    radial-gradient(700px 300px at 20% 50%, rgba(45, 212, 191, 0.18), transparent 60%),
    radial-gradient(700px 300px at 80% 50%, rgba(139, 92, 246, 0.2), transparent 60%),
    var(--navy-900);
  text-align: center;
  border-block: 1px solid var(--line);
}

.cta-band h2 {
  max-width: 18ch;
  margin: 0 auto 16px;
}

.cta-band .lead {
  margin: 0 auto 28px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.whatsapp-contact {
  display: flex;
  justify-content: center;
}

.whatsapp-contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 360px;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-contact__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(12, 26, 48, 0.14);
}

.whatsapp-contact__icon {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
  transition: transform 0.22s ease, background 0.22s ease;
}

.whatsapp-contact__icon svg {
  width: 58px;
  height: 58px;
}

.whatsapp-contact__link:hover .whatsapp-contact__icon {
  transform: scale(1.05);
  background: #1ebe5d;
}

.whatsapp-contact__title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.whatsapp-contact__phone {
  font-size: 1.15rem;
  font-weight: 600;
  color: #128c7e;
}

.whatsapp-contact__hint {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(12, 26, 48, 0.08);
  background: var(--white);
}

.map-card iframe {
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.map-card__body {
  padding: 20px 22px 24px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-details a {
  color: var(--ink);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--blue);
}

.section--light .contact-details a {
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: #03060f;
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.hero .reveal:nth-child(2) { animation-delay: 0.08s; }
.hero .reveal:nth-child(3) { animation-delay: 0.16s; }
.hero .reveal:nth-child(4) { animation-delay: 0.24s; }
.hero .reveal:nth-child(5) { animation-delay: 0.32s; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-in {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.privacy {
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: var(--off);
  color: var(--ink-soft);
  min-height: 70vh;
}

.privacy h1,
.privacy h2 {
  color: var(--ink);
}

.privacy h1 {
  margin-bottom: 12px;
}

.privacy article {
  max-width: 72ch;
}

.privacy h2 {
  font-size: 1.2rem;
  margin: 28px 0 8px;
}

.privacy p + p {
  margin-top: 12px;
}

.privacy .lead {
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .nav a { padding: 8px 7px; font-size: 0.8rem; }
  .area-grid,
  .partner-grid,
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-grid,
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .nav,
  .header-cta .btn--whatsapp span.label {
    display: none;
  }
  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7, 17, 31, 0.97);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  body.nav-open .nav a {
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
  }
  .about-grid,
  .contact-grid,
  .footer-grid,
  .cards-3,
  .pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--header-h) + 28px); min-height: auto; }
  .logo img {
    height: 46px;
    max-width: min(170px, 54vw);
  }
  .logo--footer img {
    height: 64px;
    max-width: 220px;
  }
  .whatsapp-contact__link {
    min-height: 300px;
    padding: 40px 24px;
  }

  .whatsapp-contact__icon {
    width: 96px;
    height: 96px;
  }

  .whatsapp-contact__icon svg {
    width: 50px;
    height: 50px;
  }

  .area-grid,
  .sol-grid,
  .partner-grid,
  .project-grid,
  .gov-grid,
  .cards-4 {
    grid-template-columns: 1fr;
  }
  .actions .btn { width: 100%; }
  .legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-on-scroll,
  .card,
  .btn {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
