/** Solution inner pages — shared chrome (footer, buttons). Replaces full home.css on /solutions/*. */

body.da-native-shell {
  --fs: 'Satoshi', system-ui, sans-serif;
  --fb: 'Biennale', Georgia, serif;
  --ease-c: cubic-bezier(0.16, 1, 0.3, 1);
  --da-container-pad-x: 40px;
  --da-btn-transition: color 180ms var(--ease-c), background 180ms var(--ease-c), border-color 180ms var(--ease-c), box-shadow 180ms var(--ease-c), transform 180ms var(--ease-c);
}

body.da-native-shell .home-hello-footer .container {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: var(--da-container-pad-x);
  padding-right: var(--da-container-pad-x);
  box-sizing: border-box;
  width: 100%;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
  transition: var(--da-btn-transition);
}

.home-btn:visited,
.home-btn:hover,
.home-btn:active,
.home-btn:focus {
  color: inherit;
  background: transparent;
  border-color: currentColor;
  box-shadow: none;
}

.home-btn:focus-visible {
  outline: 2px solid var(--da-lime);
  outline-offset: 3px;
}

.home-btn--white {
  background: var(--da-white, #ffffff);
  border-color: rgba(21, 21, 21, 0.4);
  color: var(--da-black, #151515);
}

.home-btn--white:visited,
.home-btn--white:hover,
.home-btn--white:active,
.home-btn--white:focus {
  color: var(--da-black, #151515);
  background: var(--da-white, #ffffff);
  border-color: rgba(21, 21, 21, 0.4);
  box-shadow: none;
}

.home-btn--white:hover,
.home-btn--white:focus {
  box-shadow: 0 4px 16px rgba(21, 21, 21, 0.08);
}

.home-btn--white:focus-visible {
  outline: 2px solid var(--da-black, #151515);
  outline-offset: 3px;
}

.home-hello-footer {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.28) 0, transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(21, 21, 21, 0.06) 0, transparent 36%),
    #B8E986;
  color: #151515;
  overflow: hidden;
}

.home-hello-footer .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(28px, 4vw, 30px);
}

.home-hello-footer__watermark {
  position: absolute;
  top: clamp(-12px, 1vw, 24px);
  right: clamp(-8px, 3vw, 50px);
  margin: 0;
  font-family: var(--fb);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 170px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(21, 21, 21, 0.06);
  pointer-events: none;
  user-select: none;
}

.home-hello-footer__brand,
.home-hello-footer__brand:visited {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #151515;
  margin-bottom: clamp(35px, 5vw, 50px);
}

.home-hello-footer__logo {
  display: block;
  width: 180px;
  height: auto;
  filter: brightness(0);
}

.home-hello-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(300px, 1.35fr);
  gap: clamp(32px, 5vw, 56px) clamp(24px, 3.5vw, 40px);
  align-items: start;
}

.home-hello-footer__col-title {
  margin: 0 0 20px;
  font-family: var(--fs);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #151515;
}

.home-hello-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-hello-footer__links a,
.home-hello-footer__links a:visited {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--fs);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(21, 21, 21, 0.82);
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translate3d(0, 0, 0);
  transition: transform 160ms var(--ease-c);
}

.home-hello-footer__contact-link,
.home-hello-footer__contact-link:visited {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--fs);
  font-weight: 600;
  line-height: 1.4;
  color: #151515;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translate3d(0, 0, 0);
  transition: transform 160ms var(--ease-c);
}

.home-hello-footer__links a {
  font-size: 15px;
  transform-origin: center center;
}

.home-hello-footer__contact-link {
  font-size: 14px;
  transform-origin: center center;
}

.home-hello-footer__links a:hover,
.home-hello-footer__links a:focus,
.home-hello-footer__links a:focus-visible,
.home-hello-footer__links a:visited:hover,
.home-hello-footer__links a:visited:focus,
.home-hello-footer__links a:visited:focus-visible {
  color: #151515;
  background: none;
  transform: translate3d(0, 0, 0) scale(1.05);
}

.home-hello-footer__contact-link:hover,
.home-hello-footer__contact-link:focus,
.home-hello-footer__contact-link:focus-visible,
.home-hello-footer__contact-link:visited:hover,
.home-hello-footer__contact-link:visited:focus,
.home-hello-footer__contact-link:visited:focus-visible {
  color: #151515;
  transform: translate3d(0, 0, 0) scale(1.05);
}

.home-hello-footer__aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-hello-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hello-footer__social-btn,
.home-hello-footer__social-btn:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.08);
  color: #151515;
  text-decoration: none;
  transition: background 180ms var(--ease-c), transform 180ms var(--ease-c), box-shadow 180ms var(--ease-c);
}

.home-hello-footer__social-btn svg {
  width: 22px;
  height: 22px;
}

.home-hello-footer__social-btn:hover,
.home-hello-footer__social-btn:focus,
.home-hello-footer__social-btn:focus-visible {
  background: #151515;
  color: #B8E986;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.14);
}

.home-hello-footer__subscribe {
  padding: clamp(20px, 2.2vw, 20px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.1);
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.1);
  backdrop-filter: blur(8px);
}

.home-hello-footer__subscribe-label {
  display: block;
  margin: 0 0 6px;
  font-family: var(--fs);
  font-size: 15px;
  font-weight: 700;
  color: #151515;
}

.home-hello-footer__subscribe-lead {
  margin: 0 0 14px;
  font-family: var(--fs);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(21, 21, 21, 0.68);
}

.home-hello-footer__subscribe-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}

.home-hello-footer__subscribe-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 10px;
  background: #FFFFFF;
  color: #151515;
  font-family: var(--fs);
  font-size: 14px;
  outline: none;
  transition: border-color 180ms var(--ease-c), box-shadow 180ms var(--ease-c);
}

.home-hello-footer__subscribe-input::placeholder {
  color: rgba(21, 21, 21, 0.42);
}

.home-hello-footer__subscribe-input:focus-visible {
  border-color: #151515;
  box-shadow: 0 0 0 3px rgba(21, 21, 21, 0.08);
}

.home-hello-footer__subscribe-input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.home-hello-footer__subscribe-btn {
  flex-shrink: 0;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: #151515;
  color: #B8E986;
  font-family: var(--fs);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms var(--ease-c), transform 180ms var(--ease-c), opacity 180ms var(--ease-c);
}

.home-hello-footer__subscribe-btn:hover:not(:disabled) {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.home-hello-footer__subscribe-btn:disabled {
  opacity: 0.72;
  cursor: default;
}

.home-hello-footer__subscribe-form.is-success .home-hello-footer__subscribe-btn {
  background: #383B40;
  color: #FFFFFF;
}

.home-hello-footer__subscribe-status {
  margin: 10px 0 0;
  min-height: 1.45em;
  font-family: var(--fs);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.home-hello-footer__subscribe-status.is-error {
  color: #a93226;
}

.home-hello-footer__subscribe-status.is-success {
  color: rgba(21, 21, 21, 0.82);
}

.home-hello-footer__subscribe-note {
  margin: 10px 0 0;
  font-family: var(--fs);
  font-size: 11px;
  line-height: 1.45;
  color: rgba(21, 21, 21, 0.58);
}

.home-hello-footer__subscribe-note a,
.home-hello-footer__subscribe-note a:visited {
  color: var(--da-black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-hello-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-hello-footer__address {
  margin: 4px 0 0;
  font-family: var(--fs);
  font-size: 13px;
  font-weight: 600;
  color: rgba(21, 21, 21, 0.62);
}

.home-hello-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(56px, 8vw, 60px);
  padding-top: clamp(28px, 4vw, 30px);
  border-top: 1px solid rgba(21, 21, 21, 0.2);
}

.home-hello-footer__copy {
  margin: 0;
  font-family: var(--fs);
  font-size: 14px;
  font-weight: 700;
  color: rgba(21, 21, 21, 0.78);
}

.home-hello-footer__legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.home-hello-footer__legal a,
.home-hello-footer__legal a:visited {
  display: inline-block;
  font-family: var(--fs);
  font-size: 14px;
  font-weight: 600;
  color: #151515;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  transition: transform 160ms var(--ease-c);
}

.home-hello-footer__legal a:hover,
.home-hello-footer__legal a:focus,
.home-hello-footer__legal a:focus-visible,
.home-hello-footer__legal a:visited:hover,
.home-hello-footer__legal a:visited:focus,
.home-hello-footer__legal a:visited:focus-visible {
  color: #151515;
  transform: translate3d(0, 0, 0) scale(1.05);
}

body.home .da-site-footer,
body.da-video-subpage-shell .da-site-footer {
  display: none !important;
}

.home-capabilities__pill,
.home-capabilities__pill:visited {
  --home-cta-arrow: url('../assets/home/diagonal-arrow.svg');
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  max-width: none;
  padding: 16px 40px;
  border: 1px solid #ffabcc;
  border-radius: 999px;
  background: #ffabcc;
  color: var(--da-black);
  font-family: var(--fs);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: none;
  transition: var(--da-btn-transition);
}

.home-capabilities__pill:hover,
.home-capabilities__pill:focus,
.home-capabilities__pill:visited:hover,
.home-capabilities__pill:visited:focus {
  color: var(--da-black);
  border-color: #ffabcc;
  background: #ffabcc;
  text-decoration: none;
  box-shadow: none;
}

.home-capabilities__pill:active {
  background: #ffabcc;
  border-color: #ffabcc;
}

.home-capabilities__pill-text {
  display: inline-block;
}

@media (max-width: 1200px) {
  .home-hello-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  }

  .home-hello-footer__aside {
    grid-column: 1 / -1;
    max-width: min(100%, 560px);
  }
}

@media (max-width: 991px) {
  body.da-solution-inner-shell {
    --da-body-size: 15px;
  }

  .home-hello-footer .container {
    padding-top: clamp(48px, 8vw, 72px);
    padding-bottom: clamp(28px, 4vw, 40px);
  }

  .home-hello-footer__brand,
  .home-hello-footer__brand:visited {
    margin-bottom: clamp(32px, 5vw, 48px);
  }

  .home-hello-footer__logo {
    width: clamp(148px, 24vw, 180px);
  }

  .home-hello-footer__bottom {
    margin-top: clamp(40px, 6vw, 56px);
    padding-top: clamp(24px, 3.5vw, 32px);
  }
}

@media (max-width: 767px) {
  body.da-solution-inner-shell {
    --da-mobile-gap: 20px;
    --da-section-pad-y: 80px;
  }

  .home-hello-footer .container {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .home-hello-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--da-mobile-gap);
  }

  .home-hello-footer__links {
    gap: 7px;
  }

  .home-hello-footer__aside {
    max-width: none;
  }

  .home-hello-footer__col-title {
    margin-bottom: 10px;
  }

  .home-hello-footer__watermark {
    font-size: clamp(72px, 22vw, 120px);
    top: clamp(-12px, 1vw, 24px);
    right: 30px;
  }

  .home-hello-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: var(--da-mobile-gap);
    padding-top: var(--da-mobile-gap);
  }

  .home-hello-footer__legal ul {
    gap: var(--da-mobile-gap);
  }

  .home-hello-footer__copy,
  .home-hello-footer__legal a,
  .home-hello-footer__legal a:visited {
    font-size: 13px;
  }

  .home-hello-footer__subscribe-row {
    flex-direction: column;
    gap: var(--da-mobile-gap);
  }

  .home-hello-footer__subscribe-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .home-hello-footer__watermark {
    font-size: clamp(56px, 24vw, 88px);
  }

  .home-hello-footer__social-btn,
  .home-hello-footer__social-btn:visited {
    width: 44px;
    height: 44px;
  }

  .home-btn {
    padding: 12px 18px;
    font-size: 10px;
  }
}