:root {
  color-scheme: light;
  --bg-1: rgb(255, 255, 255);
  --bg-2: #f4faf5;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(40, 167, 69, 0.24);
  --text: #1f2b22;
  --muted: #4f6a57;
  --accent: rgb(40, 167, 69);
  --accent-2: rgb(40, 167, 69);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(40, 167, 69, 0.15), transparent 50%),
    radial-gradient(900px 500px at -10% 100%, rgba(40, 167, 69, 0.1), transparent 45%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(920px, calc(100% - 32px));
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(40, 167, 69, 0.08);
  text-align: center;
  overflow: hidden;
}

.logo {
  max-width: 300px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgb(40, 167, 69);
}

h1 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.25;
  font-weight: 800;
  max-width: 100%;
}

#domainName {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.15;
  margin-bottom: 4px;
}

.subtitle {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}

.lead {
  margin: 16px auto 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.65;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 13px 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.note {
  margin: 20px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .card {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .logo {
    max-width: 220px;
    max-height: 70px;
    margin-bottom: 18px;
  }
}
