:root {
  --bg: #f6f7ff;
  --bg-soft: #fff7fa;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --ink: #181c6f;
  --ink-muted: #50559a;
  --line: rgba(24, 28, 111, 0.12);
  --brand: #2323a2;
  --brand-deep: #171b7d;
  --accent: #f0043e;
  --accent-soft: #ffd7e2;
  --success: #4752b5;
  --shadow: 0 24px 60px rgba(25, 32, 118, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --page-width: 1180px;
  --nav-height: 84px;
  --title-font: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --body-font: "Gill Sans", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 4, 62, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(35, 35, 162, 0.16), transparent 36%),
    linear-gradient(180deg, #f7f8ff 0%, #f4f6ff 50%, #fff8fb 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -2;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 248, 255, 0.78);
  border-bottom: 1px solid rgba(24, 28, 111, 0.08);
}

.site-header__inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--title-font);
}

.brand__image {
  width: min(100%, 240px);
  height: auto;
}

.brand__text strong,
.brand__text span {
  display: block;
}

.brand__text strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand__text span {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

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

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

.site-nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-muted);
  transition: 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(35, 35, 162, 0.08);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(35, 35, 162, 0.08);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #c40034 45%, var(--brand) 100%);
  box-shadow: 0 12px 28px rgba(240, 4, 62, 0.24);
}

.button:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(24, 28, 111, 0.12);
}

.hero,
.section {
  padding: 72px 0;
}

.hero {
  padding-top: 48px;
}

.hero__grid,
.section__grid,
.footer__grid,
.cta-band,
.story-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero__grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.slider-section {
  padding-top: 8px;
}

.auto-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: #141865;
}

.auto-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 500ms ease, transform 800ms ease;
}

.auto-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.auto-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 18, 82, 0.8) 0%, rgba(13, 18, 82, 0.5) 42%, rgba(13, 18, 82, 0.22) 100%),
    linear-gradient(180deg, rgba(240, 4, 62, 0.1), transparent 30%);
}

.auto-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-slide__content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;
  width: min(520px, calc(100% - 80px));
  padding: 28px;
  border-radius: 28px;
  background: rgba(15, 20, 88, 0.42);
  backdrop-filter: blur(14px);
  color: #fff;
}

.auto-slide__kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240, 4, 62, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auto-slide__content h3 {
  margin: 0 0 10px;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.auto-slide__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.auto-slider__nav {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.auto-slider__dot {
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.auto-slider__dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 4, 62, 0.18);
}

.page-photo-section {
  padding-top: 16px;
}

.page-photo-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.photo-panel {
  overflow: hidden;
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #fff;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 74, 0.06), rgba(10, 14, 74, 0.34));
}

.photo-copy {
  padding: 30px;
}

.photo-copy h3 {
  margin: 0 0 12px;
  font-family: var(--title-font);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.photo-copy p {
  color: var(--ink-muted);
  line-height: 1.7;
}

.photo-credit {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(240, 4, 62, 0.1);
  color: #ba0839;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.headline {
  margin: 18px 0 18px;
  font-family: var(--title-font);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.lead,
.section p,
.list-card li,
.feature-card p,
.quote-card p,
.contact-card p {
  color: var(--ink-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--brand);
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-links {
  display: grid;
  gap: 12px;
}

.detail-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 28, 111, 0.1);
  color: var(--ink);
}

.detail-links a span:last-child {
  color: var(--accent);
  font-weight: 700;
}

.metric-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 28, 111, 0.08);
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--title-font);
  font-size: 1.75rem;
}

.metric-card span {
  color: var(--ink-muted);
}

.standards-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.standard-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
  min-height: 144px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 28, 111, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.standard-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 35, 162, 0.18);
  box-shadow: 0 28px 60px rgba(25, 32, 118, 0.18);
}

.standard-card__icon {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: grid;
  place-items: center;
  border-radius: 22px;
}

.standard-card__icon svg {
  width: 38px;
  height: 38px;
}

.standard-card h3 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--brand);
}

.standard-card--quality .standard-card__icon {
  background: #eef0fb;
  color: #2337a7;
}

.standard-card--environment .standard-card__icon {
  background: #ecf7f2;
  color: #0f9b72;
}

.standard-card--safety .standard-card__icon {
  background: #fff0f4;
  color: #f0043e;
}

.standard-card--food .standard-card__icon {
  background: #fff4eb;
  color: #df7d11;
}

.standard-card--security .standard-card__icon {
  background: #f2ebfb;
  color: #6b2bbf;
}

.standard-card--lab .standard-card__icon {
  background: #edf7fb;
  color: #1790c7;
}

.industry-media-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-media-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #141865;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.industry-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px rgba(18, 26, 100, 0.2);
}

.industry-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 19, 86, 0.08) 0%, rgba(12, 19, 86, 0.62) 100%);
}

.industry-media-card__label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat-card,
.feature-card,
.quote-card,
.list-card,
.contact-card,
.panel,
.timeline-card,
.service-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: var(--title-font);
}

.stat-card span {
  color: var(--ink-muted);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(35, 35, 162, 0.98), rgba(17, 22, 95, 0.95)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent);
  color: #effcf9;
  box-shadow: 0 28px 80px rgba(22, 28, 114, 0.26);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.4;
}

.hero-card::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(240, 4, 62, 0.85), transparent 68%);
}

.hero-card::after {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 68%);
}

.hero-card__top,
.hero-card__row {
  position: relative;
  z-index: 1;
}

.hero-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-card__tag {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(239, 252, 249, 0.86);
}

.hero-card h2,
.section-title {
  font-family: var(--title-font);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 9ch;
}

.hero-card__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-card__metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card__metric strong {
  display: block;
  font-size: 1.6rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-subtitle {
  max-width: 54ch;
  margin: 10px 0 0;
  color: var(--ink-muted);
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.list-card,
.timeline-card,
.contact-card {
  padding: 24px;
}

.feature-card h3,
.service-card h3,
.quote-card h3,
.list-card h3,
.timeline-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-family: var(--title-font);
  font-size: 1.3rem;
}

.feature-card__icon,
.service-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--brand-deep);
  background: linear-gradient(135deg, rgba(35, 35, 162, 0.12), rgba(240, 4, 62, 0.18));
}

.list-card ul,
.service-card ul,
.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-muted);
  line-height: 1.7;
}

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

.quote-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 241, 231, 0.92));
}

.quote-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
}

.cta-band {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 34px;
  margin-top: 12px;
  background:
    linear-gradient(135deg, rgba(35, 35, 162, 0.96), rgba(240, 4, 62, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  color: #effcf9;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(54, 20, 83, 0.22);
}

.cta-band p,
.cta-band li {
  color: rgba(239, 252, 249, 0.82);
}

.story-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.story-grid .panel {
  padding: 28px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.platform-highlight {
  overflow: hidden;
}

.platform-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
}

.dashboard-preview {
  padding: 26px;
  min-height: 400px;
  background:
    linear-gradient(180deg, #2323a2 0%, #141865 100%);
  color: #ecfbfa;
}

.dashboard-preview__window {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.dashboard-preview__bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-preview__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.dashboard-preview__content {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.dashboard-preview__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.5fr 1fr;
}

.dashboard-preview__card,
.dashboard-preview__chart,
.dashboard-preview__list {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-preview__chart {
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.dashboard-preview__chart::after {
  content: "";
  position: absolute;
  inset: auto 14px 16px 14px;
  height: 90px;
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(240, 4, 62, 0.68), transparent),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 20% 100%;
  clip-path: polygon(0 74%, 16% 58%, 31% 64%, 45% 34%, 63% 42%, 77% 22%, 100% 0, 100% 100%, 0 100%);
}

.dashboard-preview__card {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.dashboard-preview__stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-preview__stat:last-child {
  border-bottom: 0;
}

.dashboard-preview__list {
  min-height: 120px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.dashboard-preview__list div {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.14));
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
}

.form-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(24, 28, 111, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--ink-muted);
}

.site-footer {
  padding: 26px 0 40px;
}

.site-footer .brand {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(35, 35, 162, 0.08);
  color: var(--brand);
  border: 1px solid rgba(24, 28, 111, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(240, 4, 62, 0.12), rgba(35, 35, 162, 0.12));
  color: var(--accent);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer__grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  padding: 26px 0;
  border-top: 1px solid rgba(24, 28, 111, 0.08);
}

.footer__grid h4 {
  margin: 0 0 12px;
  font-family: var(--title-font);
}

.footer__grid a,
.footer__grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--ink-muted);
}

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 980px) {
  .hero__grid,
  .story-grid,
  .platform-grid,
  .contact-grid,
  .page-photo-grid,
  .cta-band,
  .footer__grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .standards-grid,
  .industry-media-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    background: rgba(248, 249, 255, 0.96);
    border: 1px solid rgba(24, 28, 111, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav[data-open="true"] .site-nav__links {
    display: flex;
  }

  .site-nav__links a {
    border-radius: 12px;
  }

  .brand__image {
    width: 180px;
  }

  .site-nav .button {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 54px 0;
  }

  .stats,
  .standards-grid,
  .industry-media-grid,
  .card-grid,
  .metric-grid,
  .form-grid,
  .hero-card__row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .headline {
    max-width: 12ch;
  }

  .auto-slider {
    min-height: 480px;
  }

  .auto-slide__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 22px;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .footer__base {
    flex-direction: column;
  }
}
