:root {
  --navy: #061b49;
  --navy-2: #0d2c67;
  --blue: #174f9b;
  --orange: #f59b19;
  --green: #4f7f24;
  --red: #d9352c;
  --ink: #13213b;
  --muted: #5c667a;
  --line: #d9dfeb;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(8, 28, 72, 0.16);
  --radius: 8px;
}

[class$="-page"] {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--white);
}

[class$="-page"] img,
[class$="-page"] svg {
  display: block;
}

[class$="-page"] img {
  max-width: 100%;
}

.atx-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 40;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

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

.atx-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 20px rgba(6, 27, 73, 0.08);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.utility-inner nav {
  display: flex;
  gap: 18px;
}

.utility-inner a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.utility-inner a:hover,
.utility-inner a:focus-visible {
  color: var(--orange);
}

.main-nav {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 178px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  gap: 4px;
  align-self: stretch;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-trigger {
  min-height: 44px;
  padding: 0 15px;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-open .nav-trigger {
  color: var(--navy);
  background: rgba(245, 155, 25, 0.14);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.mega-menu.compact {
  left: 220px;
  grid-template-columns: 1fr;
}

.nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-feature {
  padding: 22px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 27, 73, 0.96), rgba(13, 44, 103, 0.92)),
    var(--navy);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-feature h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.1;
}

.mega-feature p {
  margin: 10px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mega-feature a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

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

.mega-grid a {
  min-height: 76px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
}

.mega-grid a:hover,
.mega-grid a:focus-visible {
  border-color: rgba(245, 155, 25, 0.45);
  background: rgba(245, 155, 25, 0.08);
}

.mega-grid strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
}

.mega-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.support-link {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  border-radius: 6px;
  background: var(--orange);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(640px, 82vh, 840px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.child-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 73, 0.96) 0%, rgba(6, 27, 73, 0.82) 42%, rgba(6, 27, 73, 0.34) 72%, rgba(6, 27, 73, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 27, 73, 0.44), rgba(6, 27, 73, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  padding: 80px 0 98px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1,
.section h2,
.home-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 900;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button.primary {
  color: var(--navy);
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: rgba(6, 27, 73, 0.24);
  background: var(--white);
}

.button.light.primary {
  color: var(--navy);
  background: var(--white);
}

.hero-system {
  display: grid;
  gap: 14px;
  align-self: end;
}

.system-product {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.system-product img {
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
}

.system-panel {
  padding: 16px 18px;
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.system-panel.amber {
  border-left-color: var(--orange);
}

.system-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.15;
}

.system-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.audience-band {
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--orange);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.audience-grid a {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-grid a:first-child {
  border-left: 0;
}

.audience-grid a:hover,
.audience-grid a:focus-visible {
  color: var(--navy);
  background: var(--orange);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section h2,
.home-cta h2 {
  color: var(--navy);
  font-size: 3.25rem;
  font-weight: 900;
}

.section-heading p,
.platform-layout > div > p,
.behavior-copy p,
.child-layout p,
.home-cta p {
  color: var(--muted);
}

.solutions-section,
.trust-section {
  background: var(--soft);
}

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

.solution-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 28, 72, 0.08);
}

.solution-card img {
  width: 100%;
  height: 178px;
  padding: 18px;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.4), rgba(244, 247, 251, 0.95));
}

.solution-card.featured img {
  object-fit: contain;
}

.solution-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.solution-card h3,
.trust-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.16;
}

.solution-card p,
.trust-grid p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution-card a,
.capability-grid a,
.trust-grid a,
.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.solution-card a {
  margin-top: auto;
}

.platform-section {
  background: var(--white);
}

.platform-layout,
.behavior-layout,
.child-layout,
.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.platform-media {
  min-height: 480px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.94), rgba(255, 255, 255, 0.82)),
    var(--soft);
  box-shadow: var(--shadow);
}

.media-recorders {
  width: 82%;
  justify-self: end;
  filter: drop-shadow(0 18px 22px rgba(6, 27, 73, 0.16));
}

.media-cameras {
  width: 76%;
  position: absolute;
  left: 22px;
  bottom: 24px;
  filter: drop-shadow(0 14px 20px rgba(6, 27, 73, 0.14));
}

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

.capability-grid a {
  min-height: 132px;
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(8, 28, 72, 0.06);
}

.capability-grid a:hover,
.capability-grid a:focus-visible {
  border-color: rgba(245, 155, 25, 0.55);
}

.capability-grid strong {
  display: block;
  color: var(--navy);
  line-height: 1.18;
}

.capability-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.behavior-section {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 68%, #173f83 100%);
}

.behavior-copy h2,
.behavior-copy p {
  color: var(--white);
}

.behavior-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 6px;
  width: 5px;
  height: 9px;
  content: "";
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.text-link {
  color: var(--white);
}

.behavior-dashboard {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.dashboard-header {
  margin-bottom: 22px;
}

.dashboard-header span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-header strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.1;
}

.score-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 800;
}

meter {
  width: 100%;
  height: 16px;
}

.alert-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.alert-list div {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
}

.alert-list strong {
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
}

.alert-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.child-safety-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.child-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 73, 0.94), rgba(6, 27, 73, 0.78) 50%, rgba(6, 27, 73, 0.34)),
    linear-gradient(0deg, rgba(6, 27, 73, 0.25), rgba(6, 27, 73, 0.08));
}

.child-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.86fr) auto;
}

.child-layout h2,
.child-layout p {
  color: var(--white);
}

.child-layout p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

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

.trust-grid article {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 28, 72, 0.06);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.trust-icon.amber {
  background: var(--orange);
}

.trust-icon.green {
  background: var(--green);
}

.trust-icon.blue {
  background: var(--blue);
}

.home-cta {
  padding: 64px 0;
  background: var(--white);
}

.home-cta-inner {
  gap: 34px;
}

.home-cta p {
  max-width: 700px;
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(3, 16, 45, 0.98), rgba(6, 27, 73, 0.98)),
    #03102d;
  border-top: 4px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(360px, 1.25fr) minmax(260px, 0.85fr);
  gap: 32px;
  align-items: start;
  padding: 30px 0 24px;
}

.footer-brand img {
  width: 148px;
  height: auto;
}

.footer-brand p {
  max-width: 300px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(245, 155, 25, 0.95), rgba(218, 121, 6, 0.96));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 181, 49, 1), rgba(245, 155, 25, 1));
  transform: translateY(-1px);
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

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

.footer-main h2 {
  margin: 0 0 9px;
  color: var(--orange);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-main a,
.legal-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-main a:hover,
.footer-main a:focus-visible,
.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--orange);
}

.footer-links a,
.contact-grid a {
  display: block;
  margin-top: 5px;
  font-size: 0.86rem;
  line-height: 1.25;
}

.footer-contact address {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.35;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  text-align: right;
}

@media (max-width: 1080px) {
  .nav-inner {
    min-height: 68px;
  }

  .brand img {
    width: 156px;
  }

  .menu-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    color: var(--navy);
    font: inherit;
    font-weight: 900;
    border: 0;
    background: transparent;
  }

  .menu-toggle span[aria-hidden="true"] {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .primary-nav,
  .nav-actions {
    display: none;
  }

  .atx-site-header.is-mobile-open .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    align-items: stretch;
    max-height: calc(100vh - 102px);
    overflow: auto;
    padding: 14px 20px 90px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .atx-site-header.is-mobile-open .nav-actions {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 356px);
    display: flex;
    padding-bottom: 20px;
    background: var(--white);
  }

  .nav-item {
    display: block;
  }

  .nav-trigger {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .mega-menu,
  .mega-menu.compact {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    margin: 4px 0 10px;
    padding: 12px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.is-open .mega-menu {
    display: grid;
  }

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

  .hero-inner,
  .platform-layout,
  .behavior-layout,
  .child-layout,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-system {
    max-width: 560px;
  }

  .solution-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-grid a:nth-child(4) {
    border-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p {
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .atx-container {
    width: min(100% - 28px, 1180px);
  }

  .atx-site-header {
    position: static;
  }

  .atx-site-header.is-mobile-open {
    position: relative;
    z-index: 40;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner span {
    display: none;
  }

  .utility-inner nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(6, 27, 73, 0.96) 0%, rgba(6, 27, 73, 0.86) 66%, rgba(6, 27, 73, 0.62) 100%);
  }

  .hero-inner {
    padding: 56px 0 66px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .section h2,
  .home-cta h2 {
    font-size: 2.35rem;
  }

  .button {
    width: 100%;
  }

  .audience-grid,
  .solution-grid,
  .capability-grid,
  .trust-grid,
  .alert-list,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .audience-grid a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .audience-grid a:first-child {
    border-top: 0;
  }

  .section {
    padding: 62px 0;
  }

  .platform-media {
    min-height: 380px;
  }

  .score-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .child-layout {
    gap: 22px;
  }
}
