/* =========================================================
   BIVA SIGNUP INTENT PAGE
========================================================= */

.signup-intent-page {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 22px;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(37, 99, 235, 0.08),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(16, 185, 129, 0.07),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #f8fbff,
      #eef4fb
    );

  color: #0f172a;
}


.signup-intent-shell {
  width: min(
    100%,
    1080px
  );

  padding: 34px;

  border:
    1px solid
    rgba(
      148,
      163,
      184,
      0.22
    );

  border-radius: 30px;

  background:
    rgba(
      255,
      255,
      255,
      0.96
    );

  box-shadow:
    0 30px 80px
    rgba(
      15,
      23,
      42,
      0.10
    );
}


/* =========================================================
   HEADER
========================================================= */

.signup-intent-header {
  max-width: 720px;

  margin:
    0 auto 30px;

  text-align: center;
}


.signup-intent-brand {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  margin:
    0 auto 18px;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #07111f,
      #173675
    );

  box-shadow:
    0 14px 30px
    rgba(
      23,
      54,
      117,
      0.20
    );
}


.signup-intent-brand img {
  width: 54px;
  height: 54px;

  display: block;

  object-fit: contain;
}


.signup-intent-kicker {
  display: block;

  margin-bottom: 8px;

  color: #2563eb;

  font-size: 0.68rem;
  font-weight: 900;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.signup-intent-header h1 {
  margin: 0;

  color: #0f172a;

  font-size:
    clamp(
      2rem,
      5vw,
      3.35rem
    );

  font-weight: 950;

  line-height: 1.03;

  letter-spacing: -0.055em;
}


.signup-intent-header p {
  max-width: 610px;

  margin:
    16px auto 0;

  color: #64748b;

  font-size: 0.86rem;

  line-height: 1.7;
}


/* =========================================================
   GRID
========================================================= */

.signup-intent-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 16px;
}


/* =========================================================
   CARDS
========================================================= */

.signup-intent-card {
  position: relative;

  min-width: 0;
  min-height: 180px;

  display: grid;

  grid-template-columns:
    64px 1fr 32px;

  align-items: center;

  gap: 18px;

  padding: 24px;

  overflow: hidden;

  border:
    1px solid
    #e2e8f0;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8fbff
    );

  color: #0f172a;

  text-align: left;

  font: inherit;

  cursor: pointer;

  box-shadow:
    0 12px 30px
    rgba(
      15,
      23,
      42,
      0.05
    );

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}


.signup-intent-card::before {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  top: -70px;
  right: -60px;

  border-radius: 50%;

  background:
    rgba(
      37,
      99,
      235,
      0.05
    );
}


.signup-intent-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(
      37,
      99,
      235,
      0.26
    );

  box-shadow:
    0 20px 46px
    rgba(
      15,
      23,
      42,
      0.10
    );
}


.signup-intent-card:focus-visible {
  outline: 0;

  border-color: #2563eb;

  box-shadow:
    0 0 0 4px
    rgba(
      37,
      99,
      235,
      0.10
    );
}


/* =========================================================
   ICON
========================================================= */

.signup-intent-card__icon {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  flex: 0 0 64px;

  border-radius: 18px;

  color: #1d4ed8;

  background: #eff6ff;
}


.signup-intent-card__icon svg {
  width: 30px;
  height: 30px;

  display: block;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* =========================================================
   CONTENT
========================================================= */

.signup-intent-card__content {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 8px;
}


.signup-intent-card__content strong {
  color: #0f172a;

  font-size: 1rem;

  font-weight: 950;

  line-height: 1.25;
}


.signup-intent-card__content small {
  color: #64748b;

  font-size: 0.72rem;

  line-height: 1.6;
}


.signup-intent-card__arrow {
  position: relative;
  z-index: 1;

  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #1d4ed8;

  background: #eff6ff;

  font-size: 1.15rem;

  font-weight: 900;

  transition:
    transform 160ms ease;
}


.signup-intent-card:hover
.signup-intent-card__arrow {
  transform:
    translateX(4px);
}


/* =========================================================
   INTERNET PARTNER CARD
========================================================= */

.signup-intent-card--partner {
  border-color:
    rgba(
      5,
      150,
      105,
      0.18
    );

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f0fdf8
    );
}


.signup-intent-card--partner::before {
  background:
    rgba(
      5,
      150,
      105,
      0.06
    );
}


.signup-intent-card--partner
.signup-intent-card__icon {
  color: #067647;

  background: #ecfdf3;
}


.signup-intent-card--partner
.signup-intent-card__arrow {
  color: #067647;

  background: #ecfdf3;
}


/* =========================================================
   FOOTER
========================================================= */

.signup-intent-footer {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 26px;

  padding-top: 22px;

  border-top:
    1px solid
    #e2e8f0;
}


.signup-intent-footer > span {
  color: #64748b;

  font-size: 0.76rem;
}


.signup-intent-footer button {
  padding: 0;

  border: 0;

  background: transparent;

  color: #1d4ed8;

  font: inherit;

  font-size: 0.76rem;

  font-weight: 900;

  cursor: pointer;
}


.signup-intent-footer button:hover {
  text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (
  max-width: 820px
) {

  .signup-intent-page {
    padding:
      28px 16px;
  }


  .signup-intent-shell {
    padding: 26px;

    border-radius: 24px;
  }


  .signup-intent-grid {
    grid-template-columns: 1fr;
  }


  .signup-intent-card {
    min-height: 150px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (
  max-width: 560px
) {

  .signup-intent-page {
    align-items: flex-start;

    padding:
      16px 10px 26px;
  }


  .signup-intent-shell {
    padding:
      22px 14px;

    border-radius: 20px;
  }


  .signup-intent-header {
    margin-bottom: 22px;
  }


  .signup-intent-brand {
    width: 62px;
    height: 62px;

    border-radius: 17px;
  }


  .signup-intent-brand img {
    width: 46px;
    height: 46px;
  }


  .signup-intent-header h1 {
    font-size: 2rem;
  }


  .signup-intent-header p {
    font-size: 0.76rem;
  }


  .signup-intent-grid {
    gap: 11px;
  }


  .signup-intent-card {
    min-height: 0;

    grid-template-columns:
      52px 1fr 28px;

    gap: 13px;

    padding:
      18px 15px;

    border-radius: 17px;
  }


  .signup-intent-card__icon {
    width: 52px;
    height: 52px;

    border-radius: 15px;
  }


  .signup-intent-card__icon svg {
    width: 25px;
    height: 25px;
  }


  .signup-intent-card__content {
    gap: 5px;
  }


  .signup-intent-card__content strong {
    font-size: 0.88rem;
  }


  .signup-intent-card__content small {
    font-size: 0.65rem;

    line-height: 1.45;
  }


  .signup-intent-card__arrow {
    width: 28px;
    height: 28px;

    font-size: 1rem;
  }


  .signup-intent-footer {
    margin-top: 20px;

    padding-top: 18px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (
  max-width: 380px
) {

  .signup-intent-card {
    grid-template-columns:
      46px 1fr;

    padding:
      16px 13px;
  }


  .signup-intent-card__icon {
    width: 46px;
    height: 46px;
  }


  .signup-intent-card__arrow {
    display: none;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
  prefers-reduced-motion:
  reduce
) {

  .signup-intent-card,
  .signup-intent-card__arrow {
    transition: none;
  }

}