@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --background: #0b0f0e;
  --surface: rgba(19, 25, 23, 0.82);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f4f7f5;
  --muted: #98a39e;
  --accent: #8df5b2;
  --accent-strong: #54e88b;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--background);
  background-size: 44px 44px;
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, transparent 30%, rgba(4, 7, 6, 0.6) 100%);
  content: "";
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
}

.ambient-one {
  top: -16rem;
  right: -8rem;
  background: #5df09a;
}

.ambient-two {
  bottom: -20rem;
  left: -10rem;
  background: #38876c;
}

main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 32px 20px;
}

.status-card {
  width: min(100%, 680px);
  padding: clamp(30px, 6vw, 60px);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.status-card::before {
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141, 245, 178, 0.55), transparent);
  content: "";
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(44px, 8vw, 72px);
  padding: 8px 13px;
  border: 1px solid rgba(141, 245, 178, 0.16);
  border-radius: 999px;
  color: #baf9d0;
  background: rgba(84, 232, 139, 0.07);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(84, 232, 139, 0.1), 0 0 15px var(--accent-strong);
  animation: pulse 2.3s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: clamp(2.7rem, 8vw, 5.15rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 span {
  color: var(--accent);
}

.intro {
  max-width: 500px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.7;
}

.domain-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.domain-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(141, 245, 178, 0.17);
  border-radius: 12px;
  background: rgba(141, 245, 178, 0.08);
  place-items: center;
}

.domain-icon span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}

.domain-icon span::before,
.domain-icon span::after {
  position: absolute;
  content: "";
}

.domain-icon span::before {
  top: 6px;
  left: -1.5px;
  width: 16px;
  border-top: 1.5px solid var(--accent);
}

.domain-icon span::after {
  top: -1.5px;
  left: 5px;
  width: 4px;
  height: 16px;
  border-right: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
  border-radius: 50%;
}

.domain-label {
  display: block;
  margin-bottom: 3px;
  color: #6f7b76;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.domain-row strong {
  display: block;
  overflow: hidden;
  font-size: clamp(0.9rem, 3vw, 1.02rem);
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.check {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #07150c;
  background: var(--accent-strong);
  box-shadow: 0 0 24px rgba(84, 232, 139, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  place-items: center;
}

.divider {
  height: 1px;
  margin: 36px 0 20px;
  background: var(--border);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #68736e;
  font-size: 0.73rem;
}

.secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.secure i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-strong);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.75); opacity: 0.72; }
}

@media (max-width: 520px) {
  .status-card {
    border-radius: 22px;
  }

  .status-pill {
    margin-bottom: 42px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}
