:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --text: #f4f4f2;
  --muted: #9a9a96;
  --muted-strong: #b8b8b3;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.32);
  --button-bg: #f2f2ef;
  --button-text: #090909;
  --focus: #ffffff;
}

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

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.035), transparent 34rem),
    var(--bg);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(24px, 4vw, 56px);
}

.topline {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 28px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.hero {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vh, 92px) 0;
}

.hero-inner {
  width: 100%;
}

.domain {
  margin: 0;
  font-size: clamp(3.35rem, 10vw, 8.5rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.9;
  white-space: nowrap;
}

.domain .extension {
  color: var(--muted-strong);
  font-weight: 420;
  letter-spacing: -0.05em;
}

.rule {
  width: min(86px, 18vw);
  height: 1px;
  margin: clamp(28px, 5vw, 48px) auto;
  background: var(--line-strong);
}

.copy {
  margin: 0 auto;
  max-width: 650px;
}

.copy p {
  margin: 0;
}

.copy-fr {
  color: var(--text);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

.copy-en {
  margin-top: 10px !important;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.55;
}

.cta-wrap {
  margin-top: clamp(32px, 5vw, 46px);
  display: flex;
  justify-content: center;
}

.cta {
  min-width: min(100%, 280px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 16px 26px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.cta strong {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cta span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}

.cta:hover,
.cta:focus-visible {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.cta:focus-visible,
.previous-site a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.cta.is-disabled {
  cursor: default;
  opacity: 0.52;
  pointer-events: none;
}

.previous-site {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.previous-site p {
  margin: 0;
}

.previous-site a {
  display: inline-block;
  margin-top: 2px;
  color: var(--muted-strong);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.previous-site a:hover,
.previous-site a:focus-visible {
  color: var(--text);
}

@media (max-width: 640px) {
  .page {
    padding: 22px 20px 24px;
  }

  .hero {
    padding: 50px 0 58px;
  }

  .domain {
    font-size: clamp(2.95rem, 15vw, 4.8rem);
    letter-spacing: -0.06em;
  }

  .copy {
    max-width: 34rem;
  }

  .cta {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 390px) {
  .domain {
    font-size: 2.78rem;
  }
}

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

.domain-age {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
}

.domain-age span {
  display: block;
}

.domain-age span[lang="en"] {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.32);
}
