/* ============================================================
   ANCRAGE CONSEIL™ — PAGE D'ATTENTE
   Layout : logo gauche · contenu droite · centré verticalement
   Dégradé : #00185E (haut gauche) → #0826FF (bas droite)
   Police : Inter · Or : #A67C20
   ============================================================ */

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

:root {
  --navy:    #00185E;
  --blue:    #0826FF;
  --gold:    #A67C20;
  --white:   #FFFFFF;
  --white80: rgba(255,255,255,0.80);
  --white55: rgba(255,255,255,0.55);
  --white20: rgba(255,255,255,0.20);
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  /*min-height: 100vh;*/
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   LAYOUT DEUX COLONNES
   ============================================================ */

.page {
  width: 100%;
  max-width: 960px;
  min-height: 100vh;
  padding: 60px 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* COLONNE GAUCHE : LOGO */
.col-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 56px;
}

.logo {
  width: 375px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* SÉPARATEUR VERTICAL */
.separator {
  width: 1px;
  height: 320px;
  background: var(--white20);
  flex-shrink: 0;
  margin-right: 56px;
}

/* COLONNE DROITE : CONTENU */
.col-right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */

.headline {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.headline sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 600;
}

.description {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 400;
  color: var(--white80);
  line-height: 1.8;
  margin-bottom: 4px;
  max-width: 460px;
}

.geo {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   COMPTE À REBOURS
   ============================================================ */

.countdown-wrap {
  margin: 28px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white55);
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 56px;
}

.cd-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.cd-unit {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white55);
}

.cd-sep {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--white20);
  line-height: 1;
  margin-top: 3px;
}

/* ============================================================
   DIVIDER & CONTACT
   ============================================================ */

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--white55);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.email-link {
  display: inline-block;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-bottom: 28px;
}

.email-link:hover,
.email-link:focus {
  color: var(--gold);
  border-color: var(--white);
  outline: none;
}

.email-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================================
   PIED DE PAGE
   ============================================================ */

.footer {
  font-size: 11px;
  font-weight: 400;
  color: var(--white20);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE MOBILE : empilement vertical
   ============================================================ */

@media (max-width: 700px) {
  .page {
    flex-direction: column;
    padding: 48px 28px 28px;
    /*min-height: 100vh;*/
    height: 100vh;
    max-height: 100vh;
    gap: 0;
  }

  .col-left {
    padding-right: 0;
    padding-bottom: 32px;
    justify-content: center;
  }

  .logo {
    width: 70%;
  }

  .separator {
    display: none;
  }

  .col-right {
    align-items: center;
    text-align: center;
    margin-right: 0;
  }

  .description {
    max-width: 100%;
  }

  .countdown-wrap {
    align-items: center;
  }

  .divider {
    align-self: center;
  }
}

@media (max-width: 380px) {
  .logo {
    width: 160px;
  }

  .cd-block {
    min-width: 44px;
  }

  .cd-num {
    font-size: 26px;
  }
}

/* Accessibilité : respect de reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
