.header__login-link {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #3E5898;
  background-color: rgba(251, 251, 251, 0.95);
  border: 2px solid #3E5898;
  border-radius: 2px;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.header__login-link:hover {
  background-color: #3E5898;
  color: #FBFBFB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .header__login-link {
    top: 16px;
    right: 16px;
    padding: 8px 20px;
    font-size: 14px;
  }
}.hero {
  width: 100%;
  background: linear-gradient(135deg, #1D2D54 0%, #2C3C63 100%);
  color: #FBFBFB;
  padding: 80px 24px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: 400px;
  }
}
.hero__content {
  max-width: 900px;
  text-align: center;
}
.hero__logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .hero__logo {
    max-width: 260px;
    margin-bottom: 24px;
  }
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__button {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 200ms ease-in-out;
}
@media (max-width: 768px) {
  .hero__button {
    padding: 14px 32px;
    font-size: 16px;
  }
}
.hero__button--primary {
  background-color: #5873B5;
  color: #FBFBFB;
}
.hero__button--primary:hover {
  background-color: #809BDC;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.hero__button--primary:active {
  transform: translateY(0);
}
.hero__trust-bar {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero__trust-bar {
    flex-direction: column;
    gap: 8px;
  }
}
.hero__trust-item {
  font-size: 14px;
  font-weight: 600;
  color: #FBFBFB;
}
@media (max-width: 768px) {
  .hero__trust-item {
    font-size: 12px;
  }
}
.hero__separator {
  color: #809BDC;
  font-weight: bold;
}
@media (max-width: 768px) {
  .hero__separator {
    display: none;
  }
}.features {
  width: 100%;
  padding: 80px 24px;
  background-color: #FBFBFB;
}
@media (max-width: 768px) {
  .features {
    padding: 60px 24px;
  }
}
.features__content {
  max-width: 1200px;
  margin: 0 auto;
}
.features__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1D2D54;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 28px;
  }
}
.features__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  color: #606060;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .features__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  background-color: #FBFBFB;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  padding: 40px;
  transition: all 300ms ease-in-out;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #A5B8E9;
}
.feature-card__icon {
  width: 40px;
  height: 40px;
  color: #3E5898;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.feature-card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1D2D54;
}
.feature-card__description {
  font-size: 16px;
  line-height: 1.6;
  color: #606060;
}.how-it-works {
  width: 100%;
  padding: 80px 24px;
  background-color: #1D2D54;
  color: #FBFBFB;
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 24px;
  }
}
.how-it-works__content {
  max-width: 1200px;
  margin: 0 auto;
}
.how-it-works__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .how-it-works__title {
    font-size: 28px;
  }
}
.how-it-works__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .how-it-works__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.step-card {
  text-align: center;
  padding: 40px;
}
.step-card__number {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: #5873B5;
  color: #FBFBFB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  font-family: "Signika Negative", sans-serif;
}
.step-card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .step-card__title {
    font-size: 18px;
  }
}
.step-card__description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}.join-panel {
  width: 100%;
  padding: 80px 24px;
  background: linear-gradient(180deg, #FBFBFB 0%, #EDF2FA 100%);
}
@media (max-width: 768px) {
  .join-panel {
    padding: 60px 24px;
  }
}
.join-panel__content {
  max-width: 1200px;
  margin: 0 auto;
}
.join-panel__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1D2D54;
}
@media (max-width: 768px) {
  .join-panel__title {
    font-size: 28px;
  }
}
.join-panel__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  color: #606060;
}
@media (max-width: 768px) {
  .join-panel__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.join-panel__selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .join-panel__selector {
    grid-template-columns: 1fr;
  }
}
.join-panel__form-container {
  margin-top: 40px;
  animation: fadeIn 300ms ease-in-out;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.join-panel__form-iframe {
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  background-color: #FBFBFB;
}
.panel-type-card {
  background-color: #FBFBFB;
  border: 2px solid #E7E7E7;
  border-radius: 4px;
  padding: 40px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  text-align: center;
}
.panel-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #809BDC;
}
.panel-type-card--selected {
  border-color: #3E5898;
  border-width: 3px;
  background-color: #EDF2FA;
  transform: scale(1.02);
}
.panel-type-card--selected:hover {
  transform: scale(1.02);
}
.panel-type-card__icon {
  width: 48px;
  height: 48px;
  color: #3E5898;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.panel-type-card__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1D2D54;
}
@media (max-width: 768px) {
  .panel-type-card__title {
    font-size: 22px;
  }
}
.panel-type-card__description {
  font-size: 16px;
  color: #606060;
  line-height: 1.6;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.footer {
  width: 100%;
  padding: 40px 24px;
  background-color: #1D2D54;
  color: #FBFBFB;
  margin-top: auto;
}
.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    text-align: center;
  }
}
.footer__copyright {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__link {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FBFBFB;
  text-decoration: none;
}
.footer__link:hover {
  color: #A5B8E9;
  text-decoration: underline;
}
.footer__separator {
  font-size: 14px;
  color: #809BDC;
}
.footer__regulatory {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid #809BDC;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  text-align: center;
  color: #FBFBFB;
  opacity: 0.9;
}.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@supports (min-height: 100dvh) {
  .app {
    min-height: 100dvh;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  color: #37373C;
  background-color: #FBFBFB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Signika Negative", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

a {
  color: #3E5898;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}

a:hover {
  color: #5873B5;
}

button {
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 200ms ease-in-out;
}

#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}