* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: #f3f3f3;
  background:
    radial-gradient(circle at top center, rgba(24, 74, 145, 0.45) 0%, rgba(4, 25, 66, 0) 38%),
    linear-gradient(180deg, #04173f 0%, #031231 100%);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 23vw;
  pointer-events: none;
  opacity: 0.45;
  background-repeat: no-repeat;
  background-size: contain;
}

body::before {
  left: 0;
  background-image:
    linear-gradient(60deg, transparent 0 42%, rgba(181, 141, 59, 0.65) 42.2%, transparent 42.5%),
    linear-gradient(38deg, transparent 0 55%, rgba(181, 141, 59, 0.45) 55.2%, transparent 55.5%);
}

body::after {
  right: 0;
  background-image:
    linear-gradient(-60deg, transparent 0 42%, rgba(181, 141, 59, 0.65) 42.2%, transparent 42.5%),
    linear-gradient(-38deg, transparent 0 55%, rgba(181, 141, 59, 0.45) 55.2%, transparent 55.5%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.hero {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 12px 16px 28px;
}

.logo {
  width: min(760px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.divider {
  width: 46%;
  max-width: 390px;
  height: 2px;
  margin: 10px auto 28px;
  background: linear-gradient(90deg, transparent, #e7c26b 20%, #f2d58d 50%, #e7c26b 80%, transparent);
}

.glow {
  box-shadow: 0 0 12px rgba(234, 194, 103, 0.4);
}

h1, h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

h1 {
  color: #dfbb64;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.1;
}

h2 {
  color: #dfbb64;
  font-size: clamp(1.7rem, 3.1vw, 3.4rem);
  line-height: 1.15;
  margin-top: 10px;
}

.short-divider {
  width: 70px;
  height: 2px;
  background: #dfbb64;
  margin: 24px auto 20px;
}

.short-divider.small {
  margin-top: 18px;
}

.body-text {
  max-width: 860px;
  margin: 0 auto;
  color: #f1f2f6;
  font-size: clamp(1rem, 1.55vw, 1.6rem);
  line-height: 1.5;
}

.body-text.fr {
  max-width: 930px;
}

.email-button {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 34px;
  border: 2px solid #d8ae52;
  border-radius: 999px;
  color: #d8ae52;
  text-decoration: none;
  font-size: clamp(1.05rem, 2vw, 1.85rem);
  letter-spacing: 0.02em;
  background: rgba(5, 24, 66, 0.72);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18) inset, 0 0 16px rgba(216, 174, 82, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.email-button:hover {
  transform: translateY(-1px);
  background: rgba(7, 31, 82, 0.95);
  box-shadow: 0 0 18px rgba(216, 174, 82, 0.28);
}

footer {
  margin-top: 28px;
  color: #dfbb64;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.8rem, 1vw, 1.05rem);
}

.sep {
  padding: 0 12px;
}

@media (max-width: 720px) {
  .page {
    padding: 28px 16px;
  }

  .hero {
    padding: 0 6px 18px;
  }

  .divider {
    width: 70%;
    margin-bottom: 22px;
  }

  h1 {
    letter-spacing: 0.05em;
  }

  h2 {
    letter-spacing: 0.05em;
  }

  .email-button {
    width: 100%;
    max-width: 420px;
  }

  footer {
    line-height: 1.7;
  }

  .sep {
    display: block;
    padding: 6px 0;
  }
}
