:root {
  --navy-950: #0e2236;
  --navy-900: #0a2942;
  --navy-700: #38566e;
  --blue-600: #0ba7d6;
  --cyan-500: #21d4c2;
  --cyan-200: #a9f2ee;
  --sky-100: #eaf9fb;
  --white: #ffffff;
  --line: rgba(6, 38, 64, 0.13);
  --muted: #5b7083;
  --success: #087a67;
  --error: #b42318;
  --shadow: 0 28px 80px rgba(3, 23, 43, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--navy-950);
  background:
    radial-gradient(circle at 8% 15%, rgba(8, 207, 208, 0.16), transparent 28rem),
    radial-gradient(circle at 94% 82%, rgba(8, 127, 218, 0.13), transparent 31rem),
    linear-gradient(145deg, #ffffff 0%, #f7fcfd 48%, #eef8fb 100%);
  font-family: Montserrat, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 0.75rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

.ambient-drop {
  position: fixed;
  z-index: -1;
  width: 18rem;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(8, 127, 218, 0.11);
  border-radius: 60% 40% 62% 38% / 65% 45% 55% 35%;
  transform: rotate(34deg);
  animation: float 12s ease-in-out infinite alternate;
}

.ambient-drop--one {
  top: 9%;
  right: -8rem;
  background: linear-gradient(145deg, rgba(8, 207, 208, 0.09), rgba(255, 255, 255, 0.2));
}

.ambient-drop--two {
  bottom: -10rem;
  left: -7rem;
  width: 23rem;
  background: linear-gradient(145deg, rgba(8, 127, 218, 0.05), rgba(8, 207, 208, 0.08));
  animation-delay: -5s;
}

.site-header,
.content,
.site-footer {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(1.35rem, 3vw, 2.4rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(10rem, 16vw, 13.25rem);
  border-radius: 0.6rem;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.38rem 0.82rem 0.38rem 0.42rem;
  color: var(--navy-700);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(3, 23, 43, 0.05);
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.language-switch span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.language-switch:hover {
  border-color: rgba(8, 127, 218, 0.35);
  box-shadow: 0 14px 34px rgba(3, 23, 43, 0.09);
  transform: translateY(-1px);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(22rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
  flex: 1;
  padding-block: clamp(2.5rem, 7vh, 6.5rem);
}

.hero {
  max-width: 44rem;
}

.eyebrow,
.card-kicker {
  margin: 0 0 1.15rem;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.15rem, 7.1vw, 6.65rem);
  font-weight: 750;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.hero h1 > span:not(.separator) {
  display: block;
}

.hero h1 > span:last-child {
  color: var(--blue-600);
}

.separator {
  display: block;
  width: max-content;
  margin: 0.25em 0 0.2em;
  color: var(--cyan-500);
  font-size: 0.48em;
  line-height: 1;
}

.hero-description {
  max-width: 38rem;
  margin: clamp(1.55rem, 3.6vw, 2.5rem) 0 0;
  color: var(--navy-700);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-line span {
  padding-right: 0.7rem;
  border-right: 1px solid var(--line);
}

.contact-line a {
  color: var(--navy-950);
  font-weight: 750;
  text-decoration-color: var(--cyan-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
}

.signup-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.65rem, 4vw, 2.65rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signup-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.34rem;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}

.signup-card::after {
  position: absolute;
  z-index: -1;
  right: -6rem;
  bottom: -7rem;
  width: 14rem;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(8, 207, 208, 0.15), transparent 68%);
}

.signup-card h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.card-copy {
  margin: 1.05rem 0 1.65rem;
  color: var(--navy-700);
  line-height: 1.65;
}

.signup-form {
  display: grid;
  gap: 1rem;
}

.field-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 750;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.email-row input {
  min-width: 0;
  min-height: 3.35rem;
  padding: 0 1rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(6, 38, 64, 0.18);
  border-radius: 0.88rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.email-row input::placeholder {
  color: #8394a1;
}

.email-row input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8, 127, 218, 0.12);
}

.submit-button {
  min-height: 3.35rem;
  padding: 0 1.25rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), #0a4770);
  border: 0;
  border-radius: 0.88rem;
  box-shadow: 0 12px 28px rgba(3, 23, 43, 0.18);
  cursor: pointer;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.submit-button:hover:not(:disabled) {
  box-shadow: 0 16px 32px rgba(3, 23, 43, 0.24);
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.consent-label {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--navy-700);
  font-size: 0.79rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-label input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.13rem 0 0;
  accent-color: var(--blue-600);
}

.privacy-note {
  margin: -0.2rem 0 0 1.85rem;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.48;
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.noscript-note {
  margin-top: 1rem;
  color: var(--navy-700);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem 1.7rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid rgba(8, 127, 218, 0.45);
  outline-offset: 3px;
}

@keyframes float {
  from {
    transform: rotate(31deg) translate3d(0, -0.5rem, 0);
  }
  to {
    transform: rotate(37deg) translate3d(0, 0.8rem, 0);
  }
}

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3rem;
    padding-block: 3.5rem 5rem;
  }

  .hero {
    max-width: 48rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.5rem, 11.5vw, 6.5rem);
  }

  .signup-card {
    width: min(100%, 39rem);
  }
}

@media (max-width: 600px) {
  .site-header,
  .content,
  .site-footer {
    width: min(100% - 2rem, 1180px);
  }

  .site-header {
    padding-block: 1rem;
  }

  .brand {
    width: 9.4rem;
  }

  .language-switch {
    min-height: 2.45rem;
    padding-right: 0.7rem;
    font-size: 0.82rem;
  }

  .language-switch span {
    width: 1.72rem;
    height: 1.72rem;
    font-size: 0.62rem;
  }

  .content {
    gap: 2.5rem;
    padding-block: 2.7rem 4rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 15vw, 4.85rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .signup-card {
    padding: 1.5rem;
    border-radius: 1.35rem;
  }

  .email-row {
    grid-template-columns: 1fr;
  }

  .submit-button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

