:root {
  color-scheme: light;
  --color-bg: #eff3ff;
  --color-bg-alt: #f6f9ff;
  --color-bg-accent: #0f172a;
  --color-fg: #0f172a;
  --color-fg-muted: #475569;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-border-strong: rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --header-height: 4.5rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-fg);
  background: linear-gradient(135deg, #eff3ff 0%, #f6f9ff 38%, #ffffff 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(24px);
  background: linear-gradient(115deg, rgba(15, 23, 42, 0.92), rgba(37, 99, 235, 0.85));
  border-bottom: 1px solid rgba(15, 23, 42, 0.35);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header[data-scrolled="true"] {
  background: linear-gradient(115deg, rgba(15, 23, 42, 0.98), rgba(21, 64, 180, 0.85));
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.3);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo img {
  width: auto;
  height: 2.75rem;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.4));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.site-nav[data-open="true"] {
  transform: translateY(0);
}

.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.24);
}

.site-nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-fg);
  margin: 0.2rem 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .site-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .site-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .site-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav__link {
  font-weight: 500;
  color: rgba(248, 250, 252, 0.86);
  padding: 0.3rem 0.15rem;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link[data-active="true"] {
  color: #f8fafc;
}

.site-nav__link[data-active="true"]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: rgba(191, 219, 254, 0.9);
  border-radius: 999px;
}

.site-nav__link--accent {
  color: #bfdbfe;
  font-weight: 600;
}

.site-nav__divider {
  width: 1px;
  height: 1.4rem;
  background: rgba(148, 163, 184, 0.35);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 1.5rem 6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--radius-lg) * 1.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40px -80px -40px;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(15, 23, 42, 0.15), transparent 50%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0));
  z-index: -1;
  filter: blur(0.5px);
  border-radius: calc(var(--radius-lg) * 1.2);
}

.hero__content h1 {
  font-size: clamp(2.75rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__content .lead {
  font-size: 1.2rem;
  color: var(--color-fg-muted);
  max-width: 36rem;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__media {
  justify-self: end;
  width: min(28rem, 100%);
  border-radius: calc(var(--radius-lg) * 1.1);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lead {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(37, 99, 235, 0.16);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: calc(var(--radius-lg) * 1.2);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.section--accent {
  background: var(--color-bg-alt);
  border-radius: calc(var(--radius-lg) * 1.2);
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.section--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 55%);
  pointer-events: none;
}

.section--accent::after {
  content: '';
  position: absolute;
  inset: -20% -30% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.14), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

.section--tight {
  padding-bottom: 4rem;
}

.section__intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section__intro h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__intro p {
  color: var(--color-fg-muted);
}

.feature-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.feature-card {
  background: rgba(248, 250, 252, 0.92);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.feature-card__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.feature-card h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.4rem;
}

.feature-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-fg-muted);
}

.feature-card p {
  margin: 0;
  color: var(--color-fg-muted);
}

.content-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.content-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-fg-muted);
}

.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.content-video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.slogan-block {
  margin-top: 3.5rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(15, 23, 42, 0.88));
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.slogan-block h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2.5rem;
}

.leadership-story {
  display: grid;
  gap: 1.75rem;
}

.leadership-media img,
.leadership-media video {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
  object-fit: cover;
}

.portrait-card {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: rgba(15, 23, 42, 0.85);
  padding: 1.6rem 2rem;
  border-radius: calc(var(--radius-lg) * 1.1);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.portrait-card img {
  width: 30%;
  min-width: 140px;
  border-radius: calc(var(--radius-lg) * 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.32);
}

.portrait-card figcaption {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: rgba(248, 250, 252, 0.92);
  line-height: 1.7;
  text-align: left;
}

.leadership-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.leadership-text p {
  color: var(--color-fg-muted);
  line-height: 1.7;
}

.leadership-quote {
  margin: 1.5rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid rgba(37, 99, 235, 0.6);
  background: rgba(37, 99, 235, 0.1);
  font-style: italic;
  color: var(--color-fg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.leadership-meta {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.leadership-meta p {
  margin: 0.4rem 0;
}

.leadership-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.office-map {
  display: grid;
  gap: 1.5rem;
  background: rgba(248, 250, 252, 0.94);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 2rem;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(12px);
}

.office-map__embed iframe {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.office-map__details {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.office-map__details h4 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.office-map__details ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-fg-muted);
}

.section--highlight {
  position: relative;
  margin-top: -1rem;
}

.section--highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.88));
  border-radius: calc(var(--radius-lg) * 1.2);
  z-index: -2;
}

.section--highlight::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  border-radius: calc(var(--radius-lg) * 1.2 - 1px);
  z-index: -1;
  opacity: 0.5;
}

.snapshot-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.75rem;
  color: #f7f9ff;
  z-index: 0;
}

.snapshot-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 0.85rem;
}

.snapshot-card h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.snapshot-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(241, 244, 252, 0.9);
}

.process {
  list-style: none;
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.process__step {
  background: rgba(248, 250, 252, 0.94);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  backdrop-filter: blur(10px);
}

.process__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.process__marker {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.process__title {
  margin: 0;
  font-size: 1.3rem;
}

.process__subtitle {
  margin: 0.35rem 0 0;
  color: var(--color-fg-muted);
  font-size: 0.95rem;
}

.process__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(240, 245, 255, 0.6);
  min-height: 180px;
}

.process__media--placeholder {
  border: 1px dashed var(--color-border-strong);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-fg-muted);
  font-size: 0.85rem;
  padding: 1rem;
}

.process__description {
  margin: 0;
  color: var(--color-fg-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.section--updates {
  margin-top: 2rem;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.75rem;
}

.update-card {
  background: rgba(248, 250, 252, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(8px);
}

.update-card:hover,
.update-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.update-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.update-card__meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.58);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.update-card p {
  margin: 0;
  color: var(--color-fg-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: rgba(248, 250, 252, 0.94);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 1.25rem;
  backdrop-filter: blur(10px);
}

.form-control {
  display: grid;
  gap: 0.5rem;
}

.form-control label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-control input,
.form-control textarea,
.form-control select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control input:focus,
.form-control textarea:focus,
.form-control select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.form-control select {
  background: #fff;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(17, 24, 39, 0.38) 50%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.38) 50%, transparent 50%);
  background-position: calc(100% - 1.5rem) 1.1rem, calc(100% - 1.1rem) 1.1rem;
  background-size: 0.45rem 0.45rem;
  background-repeat: no-repeat;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  font-size: 0.9rem;
  color: var(--color-fg-muted);
}

.form-status[data-status="error"] {
  color: #c23a3a;
}

.form-status[data-status="success"] {
  color: #0f7b4d;
}

.contact-meta {
  display: grid;
  gap: 1.75rem;
}

.contact-meta h3 {
  margin: 0 0 0.5rem;
}

.contact-meta p {
  margin: 0;
  color: var(--color-fg-muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.contact-list a {
  color: var(--color-primary);
  font-weight: 500;
}

.site-footer {
  padding: 3rem 1.5rem 2.5rem;
  background: var(--color-bg-accent);
  color: #f6f7fb;
  margin-top: 4rem;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
  max-width: 24rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-weight: 500;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #fff;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(var(--header-height) + 3rem) 1.5rem 4.5rem;
  }

  .hero__content {
    order: 2;
  }

  .hero__content .lead {
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    order: 1;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    transform: translateY(-120%);
    border-top: 1px solid var(--color-border);
    overflow-y: auto;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
  }

  .site-nav__link {
    color: var(--color-fg);
  }

  .site-nav__link[data-active="true"]::after {
    background: var(--color-primary);
  }

  .site-nav__divider {
    width: 100%;
    height: 1px;
  }

  .site-nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 4rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 4rem;
  }

  .section {
    padding: 4.5rem 1.25rem;
  }

  .feature-card {
    padding: 2rem 1.75rem;
  }

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

  .leadership-meta {
    padding: 1.2rem;
  }

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

  .process__step {
    padding: 1.75rem 1.5rem;
  }

  .process__media {
    min-height: 150px;
  }

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

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

@media (max-width: 520px) {
  .snapshot-grid {
    grid-template-columns: 1fr;
  }
}

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

  .reveal,
  .reveal[data-visible="true"] {
    opacity: 1;
    transform: none;
  }
}
