*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  min-width: 32rem;
  font-family: 'Geist', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #000000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  background: #ffffff;
}

.page-main {
  width: 100%;
}

.header {
  width: min(125.6rem, calc(100% - 3.2rem));
  margin: 0 auto;
  padding-top: 1.6rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-wordmark {
  width: 8.0364rem;
  height: 1.3819rem;
}

@media (max-width: 76.7rem) {
  .header {
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.language-caret {
  width: 1.2rem;
  height: 1.2rem;
  filter: brightness(0) invert(1);
}

.language-options {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 5.4rem;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  border: 0.1rem solid #E2E8F0;
  border-radius: 0.4rem;
  background: #ffffff;
  backdrop-filter: blur(0.6rem);
}

.language-option {
  width: 100%;
  border: 0;
  border-radius: 0.4rem;
  background: transparent;
  color: #000;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
}

.language-option.is-active,
.language-option:hover,
.language-option:focus-visible {
  background: #F1F5F9;
  outline: none;
}

.hero {
  width: 100%;
  padding-bottom: 6rem;
  background-color: #141b2a;
  background-image: url('/dist/media/background/hero-background.webp');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.4rem;
}

.hero-heading-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.7rem;
  border: 0.1rem solid #cbd5e1;
  border-radius: 99.99rem;
  background: #eff6ff;
  color: #020617;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

.hero-title {
  width: min(80rem, 100%);
  margin: 0;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.15rem;
  text-shadow:
    0 0.2rem 0.4rem rgba(0, 0, 0, 0.06),
    0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);

  font-size: 6rem;
  line-height: 6rem;
  font-weight: 300;
}

.hero-title-strong {
  font-weight: 600;
}

.hero-launching {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-launching-text {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2rem;
  font-weight: 400;
}

.hero-form {
  width: 39.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.hero-form-block {
  width: min(39.4rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-input {
  width: 24.2rem;
  height: 3.2rem;
  border: 0.1rem solid #e5e5e5;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.4rem 1rem;
  color: #0a0a0a;
  font-size: 1.4rem;
  line-height: 2rem;
}

.hero-input::placeholder {
  color: #737373;
}

.hero-input:focus-visible {
  border-color: #334155;
  outline: none;
}

.hero-input.is-invalid {
  border-color: #dc2626;
}

.hero-button {
  width: 16.4rem;
  height: 3.2rem;
  border: 0;
  border-radius: 0.8rem;
  background: #189a46;
  color: #ffffff;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  cursor: pointer;
}

.hero-button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #107235;
}

.hero-button.is-disabled:hover,
.hero-button.is-disabled:focus-visible {
  background: #189a46;
}

.hero-button-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.hero-form-block:lang(fr) .hero-button {
  width: 21rem;
  white-space: nowrap;
}

.hero-form-block:lang(fr) .hero-input {
  width: 17.6rem;
}

.hero-success {
  margin: 0;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  text-align: center;
}

.hero-privacy {
  margin: 0;
  margin-top: -2rem;
  width: min(53.1rem, 100%);
  color: #F1F5F9;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-align: center;
}

.hero-privacy a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 102.4rem) {
  .hero {
    padding-bottom: 3.6rem;
    background-position: 56% top;
  }

  .hero-container {
    width: min(72rem, calc(100% - 3.2rem));
    gap: 3.6rem;
  }

  .hero-heading-group {
    gap: 2.4rem;
  }

  .hero-title {
    width: 100%;
    font-size: 4.8rem;
    line-height: 5.2rem;
    letter-spacing: -0.12rem;
  }

  .hero-title-break {
    display: block;
  }

  .hero-form {
    width: min(39.4rem, 100%);
  }

  .hero-form-block {
    width: min(39.4rem, 100%);
  }

  .hero-privacy {
    width: min(48rem, 100%);
  }
}

@media (max-width: 76.7rem) {
  .hero-title-break {
    display: none;
  }

  .hero {
    padding-bottom: 2.4rem;
    background-image: url('/dist/media/background/hero-mob-background.webp');
    background-position: 62% top;
  }

  .hero-container {
    width: 100%;
    padding: 0 1.6rem;
    gap: 2.4rem;
  }

  .hero-heading-group {
    gap: 2rem;
  }

  .hero-badge {
    padding: 0.8rem 1rem;
    border: 0;
    background: #e2e8f0;
    color: #000000;
  }

  .hero-title {
    width: 100%;
    letter-spacing: -0.12rem;
    font-size: 4.4rem;
    line-height: 4.8rem;
  }

  .hero-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .hero-form-block {
    width: 100%;
  }

  .hero-input,
  .hero-button,
  .hero-form-block:lang(fr) .hero-input,
  .hero-form-block:lang(fr) .hero-button {
    width: 100%;
    height: 4.4rem;
  }

  .hero-input {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .hero-input::placeholder {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .hero-button {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .hero-privacy {
    width: 100%;
    margin-top: -1rem;
  }
}

.accounting {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url('/dist/media/background/accounting.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5.6rem 0;
}

.accounting-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 104.6rem;
  margin: 0 auto;
}

.accounting-top,
.accounting-bottom {
  width: 100%;
  display: flex;
}

.accounting-top {
  justify-content: flex-start;
}

.accounting-bottom {
  margin-top: 5.6rem;
  justify-content: flex-end;
}

.accounting-copy {
  width: min(49.6rem, 100%);
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.accounting-bottom .accounting-copy {
  transition-delay: 120ms;
}

.accounting.is-visible .accounting-copy {
  opacity: 1;
  transform: translateY(0);
}

.accounting-title {
  max-width: 45rem;
  margin: 0;
  color: #020617;
  font-size: 4.8rem;
  line-height: 4.8rem;
  font-weight: 600;
}

.accounting-title span {
  color: #189a46;
}

.accounting-paragraphs {
  margin-top: 4.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accounting-paragraphs p {
  margin: 0;
  color: #475569;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.text-bold {
  font-weight: 800;
}

.accounting-paragraphs strong {
  font-weight: 800;
}

.accounting-divider {
  width: 100%;
  height: 0.1rem;
  background: radial-gradient(50% 100% at 50% 50%, #252e42 0%, #252e4200 100%);
}

.accounting-emphasis {
  color: #475569;
  font-weight: 700;
}

.accounting-final {
  color: #020617;
  font-weight: 600;
}

@media (max-width: 102.4rem) {
  .accounting {
    padding: 4.8rem 0;
    background-position: 65% center;
  }

  .accounting-copy {
    width: min(54rem, 100%);
  }

  .accounting-title {
    font-size: 4rem;
    line-height: 4.2rem;
  }
}

@media (max-width: 76.7rem) {
  .accounting {
    padding: 3.2rem 0;
    background-position: 72% center;
  }

  .accounting-container {
    width: 100%;
    padding: 0 1.6rem;
  }

  .accounting-top,
  .accounting-bottom {
    justify-content: flex-start;
  }

  .accounting-bottom {
    margin-top: 0rem;
  }

  .accounting-copy {
    width: 100%;
  }

  .accounting-title {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .accounting-paragraphs {
    margin-top: 1.6rem;
    gap: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accounting-copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.personal {
  width: 100%;
  padding: 5.6rem 0;
  background-color: #0f172a;
  background-image: url('/dist/media/background/personal.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.personal-container {
  width: 100%;
  max-width: 104.6rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.8rem;
}

.personal-copy {
  width: min(49.6rem, 100%);
  color: #eff0f6;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.personal-title {
  margin: 0;
  font-size: 4.8rem;
  line-height: 4.8rem;
  font-weight: 600;
  letter-spacing: 0;
}

.personal-quote {
  margin: 4.8rem 0 0;
  color: #FFF;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.4rem;
}

.personal-profile {
  width: 40.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 520ms ease 120ms,
    transform 520ms ease 120ms;
  will-change: opacity, transform;
}

.personal.is-visible .personal-copy,
.personal.is-visible .personal-profile {
  opacity: 1;
  transform: translateY(0);
}

.personal-avatar-wrap {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  overflow: hidden;
}

.personal-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.personal-name-row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.2rem;
}

.personal-name {
  margin: 0;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.06rem;
}

.personal-linkedin {
  width: 2.3rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.personal-linkedin img {
  width: 100%;
  height: 100%;
}

.personal-linkedin:hover,
.personal-linkedin:focus-visible {
  opacity: 0.9;
  transform: scale(1.08);
}

.personal-role {
  margin: 0;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
}

@media (max-width: 102.4rem) {
  .personal {
    padding: 4.8rem 0;
    background-position: 60% center;
  }

  .personal-container {
    width: min(120.4rem, calc(100% - 4.8rem));
    gap: 3.2rem;
  }

  .personal-title {
    font-size: 4rem;
    line-height: 4.2rem;
  }

  .personal-quote {
    margin-top: 3.2rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
  }
}

@media (max-width: 76.7rem) {
  .personal {
    padding: 3.2rem 0;
    background-position: center;
  }

  .personal-container {
    width: 100%;
    padding: 0 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
  }

  .personal-copy {
    width: 100%;
  }

  .personal-title {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .personal-quote {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .personal-profile {
    width: 100%;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .personal-copy,
  .personal-profile {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.business {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 5.6rem 0;
  background-color: #f5f5f5;
  background-image: url('/dist/media/background/business.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.business-container {
  width: 100%;
  max-width: 104.6rem;
  margin: 0 auto;
}

.business-top,
.business-bottom {
  width: 100%;
  display: flex;
}

.business-top {
  justify-content: flex-start;
}

.business-bottom {
  margin-top: 5.6rem;
  justify-content: flex-end;
}

.business-copy {
  width: min(49.6rem, 100%);
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.business-bottom .business-copy {
  transition-delay: 120ms;
}

.business.is-visible .business-copy {
  opacity: 1;
  transform: translateY(0);
}

.business-title {
  margin: 0;
  color: #020617;
  font-size: 4.8rem;
  line-height: 4.8rem;
  font-weight: 600;
}

.business-title span {
  color: #189a46;
}

.business-paragraphs {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.business-paragraphs p {
  margin: 0;
  color: #475569;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.business-paragraphs strong,
.business-emphasis {
  font-weight: 800;
  color: #475569;
}

.business-divider {
  width: 100%;
  height: 0.1rem;
  background: radial-gradient(50% 100% at 50% 50%, #252e42 0%, #252e4200 100%);
}

@media (max-width: 102.4rem) {
  .business {
    padding: 4.8rem 0;
    background-position: 62% center;
  }

  .business-copy {
    width: min(54rem, 100%);
  }

  .business-title {
    font-size: 4rem;
    line-height: 4.2rem;
  }
}

@media (max-width: 76.7rem) {
  .business {
    padding: 3.2rem 0;
    background-position: 70% center;
  }

  .business-container {
    width: 100%;
    padding: 0 1.6rem;
  }

  .business-top,
  .business-bottom {
    justify-content: flex-start;
  }

  .business-bottom {
    margin-top: 3.2rem;
  }

  .business-copy {
    width: 100%;
  }

  .business-title {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .business-paragraphs {
    margin-top: 1.6rem;
    gap: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.cta {
  position: relative;
  padding: 5.6rem 1.6rem;
  background: url('/dist/media/background/cta.webp') center / cover no-repeat;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(80rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  will-change: opacity, transform;
}

.cta.is-visible .cta-content {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  margin: 0;
  width: min(80rem, 100%);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.cta-title-strong {
  font-size: 4.8rem;
  line-height: 5.2rem;
  font-weight: 600;
}

.cta-title-light {
  font-size: 4.8rem;
  line-height: 5.2rem;
  font-weight: 300;
}

.cta .cta-waitlist {
  width: min(39.4rem, 100%);
}

.cta .hero-form {
  width: 39.4rem;
}

.cta .hero-input {
  color: #0a0a0a;
}

.cta-success {
  color: #ffffff;
}

.cta-note {
  margin: -2.4rem 0 0;
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-align: center;
}

@media (max-width: 102.4rem) {
  .cta-title-strong,
  .cta-title-light {
    font-size: 4.8rem;
    line-height: 5.2rem;
    letter-spacing: -0.12rem;
  }
}

@media (max-width: 76.7rem) {
  .cta {
    padding: 3.2rem 1.6rem;
  }

  .cta-content {
    width: 100%;
    gap: 2.4rem;
  }

  .cta-title-strong,
  .cta-title-light {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .cta .cta-waitlist {
    width: 100%;
  }

  .cta .hero-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .cta .hero-input,
  .cta .hero-button {
    width: 100%;
    height: 4.4rem;
  }

  .cta .hero-button {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .cta .hero-input {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .cta-note {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.footer {
  width: 100%;
  background: #0f172a;
  border-top: 0.1rem solid #374151;
  padding: 2.4rem 1.6rem;
}

.footer-container {
  width: min(125.6rem, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}

.footer-company,
.footer-address {
  margin: 0;
  color: #94a3b8;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
}

.footer-address {
  text-align: right;
}

@media (max-width: 76.7rem) {
  .footer {
    border-top: 0;
    padding: 1.6rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-company,
  .footer-address {
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-company {
    line-height: 1;
  }

  .footer-address {
    line-height: 1.6rem;
  }
}
/*$vite$:1*/