.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(13, 44, 52, 0.74), transparent);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line-light);
  background: rgba(13, 44, 52, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
  height: 100%;
}

.header-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-self: end;
}

.brand {
  display: inline-flex;
  gap: 0.72rem;
  align-items: center;
  width: max-content;
  line-height: 1;
}

.brand-mark,
.harness-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 2.35rem;
  aspect-ratio: 1.06;
  background-image: url("../assets/agentica-mark.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.brand-word {
  font-size: 1.72rem;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.brand-light .brand-mark {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: clamp(1.1rem, 1.45vw, 2rem);
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 400;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding-block: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  display: inline-flex;
  min-height: 40px;
  padding: 0.62rem 1rem;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.nav-action::after {
  display: none;
}

.nav-action:hover,
.nav-action:focus-visible {
  color: var(--deep-teal);
  background: var(--white);
  transform: translateY(-1px);
}

.site-nav .nav-action-mobile {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  border: 1px solid var(--coral);
  border-radius: 999px;
  background: var(--coral);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    color 200ms ease,
    background 200ms ease,
    transform 200ms var(--ease-out);
}

.button:hover {
  color: var(--coral);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  font-size: 0.78rem;
}

.button-dark {
  color: var(--white);
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.button-dark:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: transparent;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  gap: 0.55rem;
  align-items: center;
  color: var(--deep-teal);
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link span {
  transition: transform 200ms var(--ease-out);
}

.text-link:hover span {
  transform: translateX(0.32rem);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.label-pulse {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 111, 89, 0.55);
  animation: label-pulse 2.6s infinite;
}

.hero-route {
  position: relative;
  overflow: hidden;
  min-height: 37rem;
  padding: 1.15rem;
  border: 1px solid rgba(230, 244, 248, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(230, 244, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 244, 248, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 3rem 3rem;
  box-shadow: inset 0 0 5rem rgba(101, 198, 216, 0.04);
}

.route-meta,
.route-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(230, 244, 248, 0.55);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.route-status {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--ice);
}

.route-status i,
.live-label i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0.75rem rgba(255, 111, 89, 0.75);
}

.route-map {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  overflow: visible;
}

.route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.route-line-muted {
  stroke: rgba(230, 244, 248, 0.13);
}

.route-line-active {
  stroke: url("#routeGradient");
  stroke-dasharray: 10 18;
  stroke-dashoffset: 820;
  opacity: 0.75;
}

.route-visual.is-visible .route-line-active {
  animation: route-draw 3.8s var(--ease-out) forwards;
}

.route-node rect:not(.module) {
  fill: rgba(13, 44, 52, 0.94);
  stroke: rgba(230, 244, 248, 0.22);
}

.route-node circle {
  fill: var(--coral);
}

.route-node text {
  fill: var(--ice);
  font-family: var(--font-utility);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.route-node .route-sub {
  fill: rgba(230, 244, 248, 0.46);
  font-size: 8px;
  letter-spacing: 0.02em;
}

.route-node path {
  fill: none;
  stroke: rgba(101, 198, 216, 0.82);
  stroke-linecap: round;
  stroke-width: 2;
}

.route-node .module {
  fill: rgba(101, 198, 216, 0.13);
  stroke: rgba(101, 198, 216, 0.58);
}

.route-node-live rect {
  stroke: rgba(255, 111, 89, 0.58) !important;
}

.route-node-live .live-dot {
  filter: drop-shadow(0 0 6px var(--coral));
}

.route-signal {
  fill: var(--coral);
  opacity: 0;
}

.route-visual.is-visible .route-signal {
  animation: route-signal 5.5s 0.8s var(--ease-out) infinite;
  opacity: 1;
}

.route-foot {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
}

.edge-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.edge-rail::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 33.333%;
  height: 2px;
  background: var(--coral);
  content: "";
}

.edge-item {
  position: relative;
  min-height: 26rem;
  padding: var(--space-5);
}

.edge-item + .edge-item {
  border-left: 1px solid var(--line-dark);
}

.edge-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: var(--space-7);
  place-items: center;
  color: var(--tool-blue);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.edge-icon svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.edge-index,
.process-step,
.solution-topline {
  color: var(--cool-gray);
  font-family: var(--font-utility);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edge-item h3 {
  max-width: 17rem;
  margin-block: 0.9rem 1.1rem;
}

.edge-item p {
  max-width: 23rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.process-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6rem minmax(0, 1fr) 6rem minmax(0, 1fr);
  align-items: stretch;
  margin-block: var(--space-7) var(--space-5);
}

.process-node {
  position: relative;
  min-height: 24rem;
  padding: var(--space-5);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.process-node-live {
  border-color: rgba(255, 111, 89, 0.48);
  background: linear-gradient(150deg, rgba(255, 111, 89, 0.1), rgba(255, 255, 255, 0.025) 55%);
}

.process-step {
  color: rgba(230, 244, 248, 0.5);
}

.process-node h3 {
  margin-block: var(--space-5) var(--space-3);
  color: var(--white);
}

.process-node p {
  color: rgba(230, 244, 248, 0.62);
  font-size: 0.92rem;
}

.process-connector {
  position: relative;
  display: grid;
  place-items: center;
}

.process-connector span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 244, 248, 0.12), rgba(101, 198, 216, 0.68), rgba(230, 244, 248, 0.12));
}

.process-connector i {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 1rem rgba(255, 111, 89, 0.8);
  opacity: 0;
}

.process-map.is-visible .process-connector i {
  animation: connector-signal 2.4s 0.6s var(--ease-out) forwards;
}

.process-glyph {
  position: relative;
  height: 6.5rem;
  margin-top: var(--space-6);
}

.process-glyph-people i {
  position: absolute;
  bottom: 0;
  width: 2.6rem;
  height: 4.3rem;
  border: 1px solid rgba(101, 198, 216, 0.54);
  border-radius: 1.5rem 1.5rem 0.5rem 0.5rem;
}

.process-glyph-people i::before {
  position: absolute;
  top: -1.55rem;
  left: 0.55rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(101, 198, 216, 0.7);
  border-radius: 50%;
  content: "";
}

.process-glyph-people i:nth-child(1) {
  left: 0;
}

.process-glyph-people i:nth-child(2) {
  left: 3.2rem;
  height: 5rem;
  border-color: rgba(255, 111, 89, 0.72);
}

.process-glyph-people i:nth-child(3) {
  left: 6.4rem;
}

.process-glyph-blocks {
  display: grid;
  width: 8rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  align-content: center;
}

.process-glyph-blocks i {
  height: 2.8rem;
  border: 1px solid rgba(101, 198, 216, 0.56);
  border-radius: 0.4rem;
  background: rgba(101, 198, 216, 0.06);
}

.process-glyph-blocks i:nth-child(2),
.process-glyph-blocks i:nth-child(3) {
  border-color: rgba(255, 111, 89, 0.58);
}

.process-glyph-infra {
  display: flex;
  width: 9rem;
  gap: 0.5rem;
  align-items: end;
}

.process-glyph-infra i {
  flex: 1;
  height: 4rem;
  border: 1px solid rgba(101, 198, 216, 0.5);
  border-radius: 0.35rem 0.35rem 0 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(101, 198, 216, 0.11) 0 0.48rem,
    transparent 0.48rem 0.78rem
  );
}

.process-glyph-infra i:nth-child(2) {
  height: 5.5rem;
  border-color: rgba(255, 111, 89, 0.62);
}

.process-glyph-infra i:nth-child(3) {
  height: 4.7rem;
}

.live-label {
  position: absolute;
  right: var(--space-5);
  bottom: var(--space-5);
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--ice);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.measure-list {
  border-top: 1px solid var(--line-dark);
}

.measure-item {
  display: grid;
  grid-template-columns: 3rem minmax(12rem, 0.8fr) minmax(14rem, 1.2fr);
  gap: var(--space-4);
  align-items: start;
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--line-dark);
}

.measure-item > span {
  color: var(--coral);
  font-family: var(--font-utility);
  font-size: 0.68rem;
}

.measure-item h3 {
  font-size: 1.25rem;
  font-weight: 400;
}

.measure-item p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.solution-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 43rem;
  padding: var(--space-5);
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.solution-card-custom {
  color: var(--white);
  background: var(--tool-blue);
}

.solution-card-product {
  color: var(--deep-teal);
  border: 1px solid rgba(13, 44, 52, 0.12);
  background: var(--ice);
}

.solution-topline {
  display: flex;
  justify-content: space-between;
  color: inherit;
  opacity: 0.62;
}

.solution-motif {
  position: relative;
  flex: 1;
}

.motif-workflow .motif-line {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 1px;
  background: rgba(230, 244, 248, 0.34);
}

.motif-workflow i {
  position: absolute;
  top: calc(50% - 0.7rem);
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgba(230, 244, 248, 0.64);
  border-radius: 50%;
  background: var(--tool-blue);
}

.motif-workflow i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translate(-50%, -50%);
}

.motif-workflow i:nth-of-type(1) {
  left: 8%;
}

.motif-workflow i:nth-of-type(2) {
  left: 33%;
  transform: translateY(-3.5rem);
}

.motif-workflow i:nth-of-type(3) {
  left: 58%;
  transform: translateY(2.25rem);
}

.motif-workflow i:nth-of-type(4) {
  right: 8%;
}

.motif-modules {
  display: grid;
  width: min(85%, 24rem);
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  align-content: center;
  transform: rotate(-4deg);
}

.motif-modules i {
  aspect-ratio: 1.3;
  border: 1px solid rgba(28, 84, 97, 0.24);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1rem 2rem rgba(28, 84, 97, 0.06);
}

.motif-modules i:nth-child(2),
.motif-modules i:nth-child(5) {
  border-color: rgba(255, 111, 89, 0.72);
  background: rgba(255, 111, 89, 0.1);
}

.solution-copy {
  position: relative;
  z-index: 1;
}

.solution-copy h3 {
  max-width: 32rem;
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 2.5vw, 3.4rem);
}

.solution-copy p {
  max-width: 35rem;
  margin-bottom: var(--space-4);
  opacity: 0.72;
}

.harness-id {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  font-weight: 600;
}

.harness-mark {
  width: 2rem;
  filter: brightness(0) invert(1);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 72px;
  padding: 1.5rem 4rem 1.5rem 0;
  align-items: center;
  font-size: clamp(1.05rem, 0.55vw + 0.95rem, 1.32rem);
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1.15rem;
  height: 1px;
  background: var(--tool-blue);
  content: "";
  transition: transform 200ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease-out);
}

.faq-list details[open] > div {
  grid-template-rows: 1fr;
}

.faq-list details > div > p {
  overflow: hidden;
  max-width: 50rem;
  padding: 0 4rem 0 0;
  color: var(--ink-soft);
}

.faq-list details[open] > div > p {
  padding-bottom: 1.75rem;
}

.site-footer {
  padding-block: var(--space-8) var(--space-5);
  color: var(--white);
  background: var(--charcoal);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(32rem, 1.5fr);
  gap: var(--space-8);
}

.footer-brand p {
  max-width: 24rem;
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.footer-links > div {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

.footer-links h2 {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-links span {
  opacity: 0.48;
}

.footer-bottom {
  display: flex;
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-utility);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes label-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 111, 89, 0.55);
  }
  55%,
  100% {
    box-shadow: 0 0 0 0.65rem rgba(255, 111, 89, 0);
  }
}

@keyframes route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes route-signal {
  0% {
    transform: translate(0, 0);
  }
  21% {
    transform: translate(292px, 0);
  }
  42% {
    transform: translate(338px, 194px);
  }
  65% {
    transform: translate(390px, 194px);
  }
  82% {
    transform: translate(390px, 384px);
  }
  100% {
    transform: translate(142px, 384px);
  }
}

@keyframes connector-signal {
  0% {
    left: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 0.55rem);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.74rem;
  }

  .process-map {
    grid-template-columns: minmax(0, 1fr) 3rem minmax(0, 1fr) 3rem minmax(0, 1fr);
  }

  .process-node {
    padding: 1.35rem;
  }

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

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    padding: 2rem 1.25rem;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    color: var(--white);
    background: var(--deep-teal);
    transform: translateX(100%);
    transition: transform 280ms var(--ease-out);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    display: flex;
    min-height: 64px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    font-size: 1.05rem;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
  }

  .header-cta {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .brand-word {
    font-size: 1.45rem;
  }

  .brand-mark {
    width: 2rem;
  }

  .header-actions {
    display: none;
  }

  .site-nav .nav-action-mobile {
    display: inline-flex;
    min-height: 52px;
    margin-top: 1.5rem;
    padding: 0.85rem 1.2rem;
    align-self: flex-start;
    border-bottom-color: var(--white);
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero-route {
    min-height: 0;
    padding-bottom: 3.25rem;
  }

  .route-meta {
    align-items: flex-start;
  }

  .route-status {
    max-width: 8rem;
    text-align: right;
  }

  .route-foot {
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
  }

  .edge-rail {
    grid-template-columns: 1fr;
  }

  .edge-rail::before {
    width: 100%;
  }

  .edge-item {
    min-height: 0;
    padding: 2rem 0;
  }

  .edge-item + .edge-item {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .edge-icon {
    margin-bottom: var(--space-5);
  }

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

  .process-node {
    min-height: 21rem;
  }

  .process-connector {
    height: 4rem;
  }

  .process-connector span {
    width: 1px;
    height: 100%;
    background: linear-gradient(rgba(230, 244, 248, 0.12), rgba(101, 198, 216, 0.68), rgba(230, 244, 248, 0.12));
  }

  .process-connector i {
    top: 0;
  }

  .process-map.is-visible .process-connector i {
    animation-name: connector-signal-mobile;
  }

  .measure-item {
    grid-template-columns: 2rem 1fr;
  }

  .measure-item p {
    grid-column: 2;
  }

  .solution-card {
    min-height: 36rem;
    padding: 1.35rem;
  }

  .solution-topline {
    gap: 1rem;
  }

  .faq-list summary {
    min-height: 68px;
    padding-right: 3rem;
  }

  .faq-list details > div > p {
    padding-right: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    gap: 1rem;
    flex-direction: column;
  }
}

@keyframes connector-signal-mobile {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 0.55rem);
    opacity: 1;
  }
}
