@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f4f8fb;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  overflow-y: scroll;
  margin: 0;
  color: #092665;
  font-family: "Outfit", sans-serif;
  background: #f4f8fb;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.03em;
}

h1,
h2 {
  line-height: 100%;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.app-shell {
  min-height: 100vh;
}
.app-shell .screen {
  position: relative;
  display: none;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #cfeeff;
  isolation: isolate;
}
.app-shell .screen.is-active {
  display: block;
  animation: screenReveal 420ms ease both;
}
.app-shell .screen__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/background-right-top.png"), url("../img/background-left-bottom.png");
  background-repeat: no-repeat;
  background-position: right top, left bottom;
  background-size: min(48vw, 36rem), min(44vw, 34rem);
  opacity: 0.9;
}
.app-shell .screen__inner {
  margin-inline: auto;
}
.app-shell .screen__inner--intro {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 6vh, 4.5rem) 64px;
}
.app-shell .screen__inner--loading {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 6vh, 4rem) 64px;
}
.app-shell .screen__inner--results {
  padding: 64px 64px clamp(4rem, 8vw, 7rem) 64px;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
}
.app-shell .screen__inner--feed {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(1.2rem, 3vw, 2rem);
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
}
.app-shell .screen .brand {
  display: grid;
  width: max-content;
  grid-template-columns: auto auto;
  align-items: center;
  color: #082364;
  text-decoration: none;
  text-transform: uppercase;
}
.app-shell .screen .brand img {
  width: clamp(7.5rem, 14vw, 10rem);
  height: auto;
}
.app-shell .screen__inner--feed .feed-header {
  display: flex;
  width: min(100%, 74rem);
  margin-inline: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.app-shell .screen__inner--feed .feed-header a img {
  width: clamp(7.5rem, 14vw, 10rem);
  height: auto;
}
.app-shell .screen__inner--feed .feed-header h1 {
  width: min(100%, 14rem);
  color: #082364;
  font-size: 35px;
  font-weight: 700;
}
.app-shell .screen__inner--feed .feed-header h1 span {
  font-weight: 400;
}
.app-shell .screen__inner--feed .feed-header h1::first-line {
  font-weight: 800;
}
.app-shell .screen__inner--feed .insight-counter {
  display: grid;
  min-width: 8.1rem;
  justify-items: flex-end;
  padding: 22px;
  border-radius: 0.6rem;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(8, 35, 100, 0.12);
  text-align: center;
  gap: 10px;
}
.app-shell .screen__inner--feed .insight-counter--header, .app-shell .screen__inner--feed .insight-counter--footer {
  color: #082364;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.app-shell .screen__inner--feed .insight-counter--number {
  color: #082364;
  font-size: 65px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.app-shell .feed-carousel-wrap {
  --feed-blur-safe-area: 2rem;
  position: relative;
  width: 100vw;
  margin-inline: auto;
  overflow: hidden;
  padding: calc(60px + var(--feed-blur-safe-area)) var(--feed-blur-safe-area) var(--feed-blur-safe-area);
}
.app-shell .feed-carousel {
  margin: calc(var(--feed-blur-safe-area) * -1);
}
.app-shell .feed-carousel .owl-stage-outer {
  overflow: visible;
  padding: var(--feed-blur-safe-area);
}
.app-shell .feed-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.app-shell .feed-carousel .owl-item {
  display: flex;
  filter: blur(22.9px);
  transition: opacity 280ms ease, filter 280ms ease, transform 280ms ease;
}
.app-shell .feed-carousel .owl-item.active.center {
  z-index: 2;
  opacity: 1;
  filter: blur(0);
}
.app-shell .feed-carousel .owl-item.active:not(.center) {
  opacity: 0.34;
  filter: blur(22.9px);
}
.app-shell .feed-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
.app-shell .feed-carousel .owl-dot {
  width: 3.1rem;
  height: 0.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9) !important;
  transition: background-color 180ms ease, transform 180ms ease;
}
.app-shell .feed-carousel .owl-dot span {
  display: none !important;
}
.app-shell .feed-carousel .owl-dot.active {
  background: #082364 !important;
  transform: scaleX(1.05);
}
.app-shell .feed-slide {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: 1fr auto;
  align-content: center;
  padding: 64px 64px 32px 64px;
  border-radius: 22px;
  background: #ffffff;
}
.app-shell .feed-slide blockquote {
  margin: 0;
  color: #082364;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.18;
}
.app-shell .feed-slide footer {
  display: flex;
  margin-top: clamp(1.4rem, 4vw, 2.7rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 35, 100, 0.07);
  justify-content: space-between;
  gap: 1rem;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.04em;
}
.app-shell .feed-live-note {
  margin: 0;
  color: #082364;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.03em;
}
.app-shell .intro-copy {
  width: min(100%, 45rem);
  text-align: center;
}
.app-shell .intro-copy h1 {
  margin: 0;
  color: #082364;
  font-size: 60px;
}
.app-shell .intro-copy p {
  width: min(100%, 35rem);
  margin: clamp(1.5rem, 4vw, 2.4rem) auto 0;
  font-size: 24px;
}
.app-shell .analysis-form {
  display: grid;
  width: min(100%, 62rem);
  gap: 1.75rem;
}
.app-shell .analysis-form__label {
  justify-self: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.app-shell .analysis-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(8, 35, 100, 0.1);
}
.app-shell .analysis-card textarea {
  width: 100%;
  min-height: 7rem;
  resize: vertical;
  border: 0;
  border-bottom: 1px solid #d9e1eb;
  outline: 0;
  color: #666666;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.04em;
}
.app-shell .analysis-card textarea:focus {
  border-color: #31add0;
}
.app-shell .analysis-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #666666;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.04em;
}
.app-shell .button {
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: #31add0;
  color: #fff;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.app-shell .button:hover {
  background: rgb(40.1636363636, 146.1272727273, 176.0363636364);
}
.app-shell .button:focus-visible {
  outline: 3px solid rgba(49, 173, 208, 0.35);
  outline-offset: 3px;
}
.app-shell .button--primary {
  padding-inline: 1.65rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.04em;
}
.app-shell .button--large {
  width: min(100%, 21rem);
  min-height: 4rem;
  padding-inline: 1.6rem;
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.app-shell .resignation {
  color: red;
}
.app-shell .privacy-note {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.app-shell .loading-meter {
  width: min(100%, 28rem);
  height: 0.46rem;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
}
.app-shell .loading-meter__bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #31add0;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.app-shell .screen--loading h2 {
  margin: 0;
  color: #082364;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
}
.app-shell .results-header {
  width: min(100%, 55rem);
  margin: 0 auto clamp(2rem, 4vw, 2.8rem);
  text-align: center;
}
.app-shell .results-header p {
  margin: 0;
  padding: 40px 0 20px 0;
  font-size: 24px;
  font-weight: 700;
}
.app-shell .results-header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
}
.app-shell .insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.app-shell .insight-card {
  display: flex;
  min-height: 18.2rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(8, 35, 100, 0.1);
}
.app-shell .insight-card h2 {
  margin: 1rem 0 auto;
  color: #082364;
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.25;
  text-transform: uppercase;
}
.app-shell .insight-card p {
  margin: 2.25rem 0 0;
}
.app-shell .insight-card__badge {
  width: max-content;
  max-width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.app-shell .insight-card__badge--success {
  background: #dbffe8;
  color: #14823b;
}
.app-shell .insight-card__badge--danger {
  background: #fff0ee;
  color: #cd3c28;
}
.app-shell .insight-card__badge--info {
  background: #dff3ff;
  color: #0e5c8c;
}
.app-shell .screen--results.is-active .insight-card {
  opacity: 0;
  transform: translateY(10px);
  animation: resultFadeUp 520ms ease forwards;
}
.app-shell .screen--results.is-active .insight-card:nth-child(1) {
  animation-delay: 260ms;
}
.app-shell .screen--results.is-active .insight-card:nth-child(2) {
  animation-delay: 340ms;
}
.app-shell .screen--results.is-active .insight-card:nth-child(3) {
  animation-delay: 420ms;
}
.app-shell .verdict-card {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: 1rem;
  background: #082364;
  color: #fff;
}
.app-shell .verdict-card h2 {
  margin: 0 0 clamp(2.25rem, 5vw, 4rem);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.app-shell .verdict-card p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}
.app-shell .verdict-card p span {
  font-weight: 400;
}
.app-shell .report-signup {
  width: min(100%, 36rem);
  margin: clamp(3.5rem, 8vw, 5.2rem) auto 0;
  text-align: center;
}
.app-shell .report-signup h2 {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  color: #082364;
  font-size: 60px;
}
.app-shell .email-form {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
}
.app-shell .email-form label {
  font-size: 0.9rem;
  font-weight: 400;
}
.app-shell .email-form input {
  width: min(100%, 29rem);
  min-height: 3.6rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #092665;
  text-align: center;
  outline: 0;
  box-shadow: inset 0 0 0 1px transparent;
}
.app-shell .email-form input:focus {
  box-shadow: inset 0 0 0 2px #31add0;
}
.app-shell .email-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.app-shell .form-note {
  margin: -0.4rem 0 0;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  font-weight: 400;
}

@keyframes screenReveal {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.screen--results.is-active .brand--results,
.screen--results.is-active .results-header,
.screen--results.is-active .verdict-card,
.screen--results.is-active .report-signup {
  opacity: 0;
  transform: translateY(10px);
  animation: resultFadeUp 520ms ease forwards;
}
.screen--results.is-active .brand--results {
  animation-delay: 80ms;
}
.screen--results.is-active .results-header {
  animation-delay: 160ms;
}
.screen--results.is-active .verdict-card {
  animation-delay: 540ms;
}
.screen--results.is-active .report-signup {
  animation-delay: 680ms;
}

@keyframes resultFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/*# sourceMappingURL=styles.css.map */
