/* CoLeader UniOn | page maintenance | noir & blanc uniquement */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--white);
  background: var(--black);
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

.page__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: min(100% - 2rem, 52rem);
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(55vw, 14rem);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: auto;
  height: 2.5rem;
  max-height: 2.5rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

@media (min-width: 640px) {
  .brand {
    max-width: 16rem;
  }

  .brand__logo {
    height: 3rem;
    max-height: 3rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--black);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.badge__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 2.5rem;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  border-bottom: 2px solid var(--white);
}

.hero__lead {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--white);
}

.hero__note {
  margin: 1rem auto 0;
  max-width: 30rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--white);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--white);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--black);
  color: var(--white);
}

.btn--ghost {
  background: var(--black);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
}

.panel {
  margin-top: auto;
  border: 1px solid var(--white);
  border-radius: 1.25rem;
  background: var(--black);
  overflow: hidden;
}

.panel__grid {
  display: grid;
}

@media (min-width: 760px) {
  .panel__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.panel__block {
  padding: 1.5rem 1.35rem;
}

@media (min-width: 760px) {
  .panel__block {
    padding: 1.75rem 1.6rem;
  }

  .panel__block + .panel__block {
    border-left: 1px solid var(--white);
  }
}

@media (max-width: 759px) {
  .panel__block + .panel__block {
    border-top: 1px solid var(--white);
  }
}

.panel__label {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.panel__block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.panel__block p {
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
  color: var(--white);
}

.meta {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.meta li {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.meta strong {
  color: var(--white);
  font-weight: 800;
}

.domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.domains li {
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--black);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
}

.contact-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  display: grid;
  gap: 0.1rem;
}

.contact-list span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.contact-list a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.social a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--white);
  padding-bottom: 0.1rem;
}

.social a:hover {
  background: var(--white);
  color: var(--black);
}

.foot {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 10;
  padding: 0.65rem 1rem;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip:focus {
  top: 1rem;
}
