:root {
  --bg: #f4f1eb;
  --ink: #2d2d34;
  --muted: #62626b;
  --purple: #552878;
  --purple-dark: #3b1655;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(45, 45, 52, 0.12);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.intro {
  padding-inline: clamp(1rem, 3vw, 3rem);
}

.inline-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.partner-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 8px;
  padding-inline: clamp(1rem, 3vw, 3rem);
}

.partner-logos img {
  display: block;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
}

.logo-manufacture {
  width: clamp(120px, 13vw, 190px) !important;
}

.logo-cdc {
  width: clamp(85px, 13vw, 85px) !important;
}

.logo-france2030 {
  width: clamp(85px, 13vw, 85px) !important;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(85, 40, 120, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
}

.login-button.small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 0.94rem;
}

.login-button:hover,
.login-button:focus-visible {
  transform: translateY(-2px);
  background: var(--purple-dark);
}

.text-link {
  color: var(--purple);
  font-weight: 700;
}

.left-band {
  position: fixed;
  inset: 0 auto 0 0;
  width: clamp(1rem, 2.4vw, 1rem);
  background: var(--purple);
  z-index: 2;
}

.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 48px);
  padding-left: max(clamp(48px, 6vw, 72px), env(safe-area-inset-left));
}

.page-content {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 48px);
  padding-left: max(clamp(48px, 6vw, 72px), env(safe-area-inset-left));
}

.content-card {
  margin: 0 auto;
  max-width: 980px;
}

.content-card h1 {
  margin-top: 64px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.content-card h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.content-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}



.hero-card,
.content-card {
  width: min(1180px, 100%);
  padding: clamp(24px, 4vw, 54px);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 10%, rgba(71, 223, 157, 0.15), transparent 22%),
    radial-gradient(circle at 90% 90%, rgba(85, 40, 120, 0.12), transparent 28%),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
      display: flex;
      flex-direction: column;
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }

.topbar,
.simple-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 36px);
}

@media (max-width: 768px) {
  .partner-logos {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 8px;
  }

  .logo-manufacture {
    width: 32%;
  }

  .logo-cdc {
    width: 28%;
  }

  .logo-france2030 {
    width: 30%;
  }
}