:root {
    --Backgrounds-BG-Base: #F1F5FC;
    --Text-Text-Primary: #1F1F1F;
    --Gradient: linear-gradient(90deg, #C8FCFF 0%, #FFF2D9 100%);
}

html { scroll-behavior: smooth; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
  margin-bottom: 1em;
}
body, .body {
    font-family: Manrope, system-ui, -apple-system, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--Text-Text-Primary, #1F1F1F);
    font-weight: 500;
}

.primary {
  color: var(--Text-Text-Primary, #1F1F1F);
}
.secondary {
    color: #535353;
}

.highlight {
  padding: 2px 4px;
  background: var(--Gradient, linear-gradient(90deg, #C8FCFF 0%, #FFF2D9 100%));
}

h1, h2, h3, h4, h5, h6 {
  font-family: Syne, system-ui, -apple-system, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
}

input, textarea {
  border: 1px solid #a8a8a8;
  background-color: var(--Backgrounds-BG-Base);
  box-sizing: border-box;
  padding: 16px;
  width: 100%;
  align-self: stretch;
}

input[type="checkbox"] {
  padding: 0;
  cursor: pointer;
  accent-color: #1960C9;  
  width: 24px;
  height: 24px;
}

/* Style the label that contains the checkbox */
/* label:has(input[type="checkbox"]) {
  cursor: pointer;
  font-size: 0.875rem;
} */

article p, article li {
  line-height: 170%;
}

article p {
  margin-top: 1em;
  margin-bottom: 1em;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
  margin-top: 2em;
  margin-bottom: 1em;
}

.container,
.container-ns {
  max-width: 1380px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

section {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* 2025-02-20 */
nav {
  display: flex;
  padding: 24px 32px;
  justify-content: space-between;
  align-items: center;

  & .button-primary, .button-secondary {
    min-height: 48px;
  }
}

.navlink-container {
  padding: 8px 8px 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--Backgrounds-BG-Base, #F1F5FC);
}

.navlink {
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  text-decoration: none;
  color: var(--Text-Text-Primary, #1F1F1F);
}

/* / 2025-02-20 */

.divider {
  height: 12px;
  background: var(--Gradient, linear-gradient(90deg, #C8FCFF 0%, #FFF2D9 100%));
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  opacity: 0.3;
}

footer a {
  color: var(--Text-Text-Primary, #1F1F1F);
}

.gap2 {
  gap: 0.5rem;
}
.gap3 {
  gap: 1rem;
}
.gap4 {
  gap: 1.5rem;
}

.spacer {
  width: 64px;
  height: 40px;
  flex-shrink: 0;
}

.cta {
  background: radial-gradient(55.57% 66.08% at 50% 50%, rgba(215, 238, 255, 0.10) 48.55%, rgba(210, 236, 255, 0.41) 73.05%, rgba(206, 234, 255, 0.66) 88.05%, #C8E8FF 100%);
}

.button-primary, .button-secondary {
  display: flex;
  min-height: 52px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-decoration: none;
  transition: all .15s ease-in;
  text-align: center;
  font-weight: 600;
}

.button-primary {
  background: #1960C9;
  color: #ffffff;
}
.button-primary:hover {
  background: #0f49a0;
}

.button-secondary {
  border: 2px solid #3a89ff;
  color: #0f49a0;
}

.button-secondary:hover {
  background: #eef5ff;
  border: 2px solid #1960C9;
}

.feature-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  /* flex-shrink: 0; */
  background: linear-gradient(180deg, #E3FEFF 0%, rgba(255, 247, 232, 0.65) 100%);
}

.square {
  aspect-ratio: 1/1;
}

.feature-img-container img.device {
  width: 100%;
  height: auto;
  max-width: 250px;
  aspect-ratio: 248.62/548.00;
}

ul {
  padding-left: 1rem;
}
li {
  margin-bottom: .5rem;
}

.hero-image {
  height: auto; 
  min-width:2600px;
}

/* TACHYONS -NS */
@media (max-width: 50em) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .container-ns {
      max-width: 100vw;
      padding-left: 0;
      padding-right: 0;
    }

    .hero-image {
      min-width: 1500px;
    }
  }
  

@media (max-width: 470px) {
  .dn-xs {
    display: none;
  }
}

#error {
  color: #DA0000;
  border: 1.5px solid #DA0000;
  background: #FFF;
  padding: 16px;

  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  line-height: 150%;
}

#error a {
  color: #DA0000;
  font-weight: 700;
}