:root {
  color-scheme: light;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f6fb;
  color: #0b1f3a;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background-color: #f5f7fb;
  color: #0b1f3a;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: 100%;
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem) 0.75rem;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__logo {
  width: 138px;
  height: auto;
}

.site-header__contact {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b1f3a;
  text-decoration: none;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 20px rgba(12, 79, 146, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header__contact:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 26px rgba(12, 79, 146, 0.12);
  transform: translateY(-2px);
}

.page {
  flex: 1;
  padding: clamp(3.5rem, 7vw, 5.75rem) clamp(1.5rem, 6vw, 5rem) clamp(4rem, 6vw, 5rem);
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__content {
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c7494;
  background: rgba(125, 211, 252, 0.28);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.6rem, 4.4vw, 3.65rem);
  font-weight: 700;
  line-height: 1.08;
  color: #0b1f3a;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(15, 35, 66, 0.75);
  margin-bottom: 2.75rem;
  max-width: 520px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
}

.hero__badge img {
  height: 54px;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__badge:hover img {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(15, 23, 42, 0.45);
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__mockup {
  display: block;
  width: min(260px, 70%);
  height: auto;
}

.footer {
  color: #475569;
  text-align: center;
  padding: 1.75rem 1rem 2rem;
  font-size: 0.95rem;
}

.not-found {
  max-width: 560px;
  margin: clamp(3rem, 8vw, 6rem) auto 0;
  padding: clamp(2.5rem, 6vw, 3.5rem);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  box-shadow: 0 25px 60px -40px rgba(12, 79, 146, 0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.not-found__eyebrow {
  display: inline-flex;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c7494;
  background: rgba(125, 211, 252, 0.28);
  border-radius: 999px;
}

.not-found__title {
  font-size: clamp(2.1rem, 6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0b1f3a;
}

.not-found__subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(15, 35, 66, 0.7);
}

.not-found__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0d6efd, #0c8af2);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 35px -18px rgba(13, 110, 253, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.not-found__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px -18px rgba(13, 110, 253, 0.7);
}

.email-confirmed {
  max-width: 540px;
  margin: clamp(3rem, 8vw, 5.5rem) auto 0;
  padding: clamp(2.5rem, 6vw, 3.5rem);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: 0 28px 70px -48px rgba(12, 79, 146, 0.45);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.email-confirmed__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #31d27c, #0fb872);
  box-shadow: 0 18px 40px -22px rgba(15, 184, 114, 0.6);
}

.email-confirmed__eyebrow {
  display: inline-flex;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c7494;
  background: rgba(125, 211, 252, 0.3);
  border-radius: 999px;
}

.email-confirmed__title {
  font-size: clamp(2.2rem, 6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0b1f3a;
}

.email-confirmed__subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(15, 35, 66, 0.72);
}

.email-confirmed__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.email-confirmed__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0d6efd, #0c8af2);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 35px -18px rgba(13, 110, 253, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.email-confirmed__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px -18px rgba(13, 110, 253, 0.7);
}

.email-confirmed__secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0c7494;
  text-decoration: none;
  transition: color 0.25s ease;
}

.email-confirmed__secondary:hover {
  color: #095d76;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 1.25rem clamp(1.25rem, 7vw, 3rem) 0.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 2rem;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    max-width: 640px;
  }

  .hero__visual {
    margin-top: 2.5rem;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 3.25rem 1.25rem 2.75rem;
  }

  .site-header {
    padding: 1rem 1.25rem 0.25rem;
  }

  .site-header__logo {
    width: 120px;
  }

  .site-header__contact {
    font-size: 0.9rem;
    padding: 0.45rem 1.1rem;
  }

  .hero__title {
    font-size: clamp(2.15rem, 8vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .hero__badge img {
    height: 50px;
  }

  .hero__visual {
    margin-top: 2rem;
  }

  .hero__mockup {
    width: min(200px, 60%);
  }

  .not-found {
    margin: clamp(2rem, 10vw, 4rem) auto 0;
    padding: 2.25rem 1.75rem;
    border-radius: 24px;
  }

  .email-confirmed {
    margin: clamp(2.25rem, 12vw, 4.5rem) auto 0;
    padding: 2.4rem 1.75rem 2.65rem;
    border-radius: 24px;
    gap: 1.5rem;
  }

  .email-confirmed__subtitle {
    font-size: 1.02rem;
  }
}

.page--centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  padding: clamp(2.5rem, 6vw, 3.25rem);
  box-shadow: 0 25px 60px -40px rgba(12, 79, 146, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.auth-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-card__eyebrow {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c7494;
  background: rgba(125, 211, 252, 0.28);
  border-radius: 999px;
}

.auth-card__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0b1f3a;
}

.auth-card__subtitle {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(15, 35, 66, 0.75);
}

.auth-card__status {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.85);
  transition: background 0.3s ease, color 0.3s ease;
}

.auth-card__status[data-variant="success"] {
  background: rgba(36, 180, 126, 0.15);
  color: #047857;
}

.auth-card__status[data-variant="error"] {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.auth-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(15, 35, 66, 0.95);
}

.auth-form__input {
  border: 1px solid rgba(15, 35, 66, 0.12);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #0b1f3a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form__input:focus {
  outline: none;
  border-color: rgba(12, 116, 148, 0.7);
  box-shadow: 0 0 0 4px rgba(12, 116, 148, 0.12);
}

.auth-form__input--error {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.auth-form__error {
  min-height: 1.1em;
  font-size: 0.85rem;
  color: #b91c1c;
}

.auth-form__submit {
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd, #0c8af2);
  box-shadow: 0 16px 35px -18px rgba(13, 110, 253, 0.6);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.auth-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.auth-form__submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(13, 110, 253, 0.7);
}

.auth-form--completed {
  opacity: 0.4;
  pointer-events: none;
}

.auth-card__footnote {
  font-size: 0.9rem;
  color: rgba(15, 35, 66, 0.65);
}

.auth-card__link {
  color: #0c7494;
  font-weight: 600;
  text-decoration: none;
}

.auth-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
    justify-content: center;
  }

  .hero__mockup {
    width: min(320px, 80%);
  }

  .page--centered {
    align-items: flex-start;
    padding-top: clamp(2.5rem, 12vw, 3.5rem);
  }

  .auth-card {
    border-radius: 24px;
    padding: clamp(2rem, 8vw, 2.75rem);
    margin-top: clamp(1rem, 6vw, 2rem);
  }
}

@media (max-width: 480px) {
  .auth-card__title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .auth-card__subtitle {
    font-size: 0.98rem;
  }

  .auth-form__input {
    border-radius: 12px;
  }
}

.privacy-policy {
  max-width: 1100px;
  margin: 0 auto;
}

.privacy-policy__container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: clamp(2.5rem, 6vw, 4rem);
  box-shadow: 0 28px 70px -48px rgba(12, 79, 146, 0.45);
}

.privacy-policy__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0b1f3a;
  margin-bottom: 2.5rem;
  text-align: center;
}

.privacy-policy__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(15, 35, 66, 0.85);
}

.privacy-policy__content h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #0b1f3a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-policy__content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.privacy-policy__content ul {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy-policy__content li {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.privacy-policy__content a {
  color: #0c7494;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.privacy-policy__content a:hover {
  color: #095d76;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy__container {
    padding: clamp(2rem, 8vw, 3rem);
    border-radius: 24px;
  }

  .privacy-policy__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .privacy-policy__content h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-top: 1.5rem;
  }

  .privacy-policy__content p,
  .privacy-policy__content li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy__container {
    padding: clamp(1.5rem, 6vw, 2rem);
    border-radius: 20px;
  }

  .privacy-policy__content {
    gap: 1.25rem;
  }

  .privacy-policy__content ul {
    margin-left: 1.25rem;
  }
}
