:root {
  --bg: #0d0d10;
  --card: rgba(255,255,255,0.07);
  --card-strong: rgba(255,255,255,0.11);
  --text: #f5f5f6;
  --muted: #b9b9bf;
  --line: rgba(255,255,255,0.14);
  --ok: #52d273;
  --bad: #ff6b6b;
  --warn: #ffd166;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #24242a 0%, var(--bg) 55%);
}
.page { width: min(980px, calc(100% - 32px)); margin: 0 auto; padding: 54px 0 28px; }
.hero { text-align: center; }
.logo { width: min(190px, 46vw); height: auto; opacity: .92; margin-bottom: 18px; }
.eyebrow { margin: 0 0 8px; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; font-size: 13px; }
h1 { max-width: 760px; margin: 0 auto 56px; font-size: clamp(34px, 6vw, 66px); line-height: 1.02; letter-spacing: -0.055em; }
.lead { max-width: 720px; margin: 22px auto 30px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.search-card, .hosting, .faq-placeholder {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}
.search-card { max-width: 790px; margin: 0 auto; padding: 22px; text-align: left; }
label { display: block; margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.domain-row { display: grid; grid-template-columns: 1fr 140px 130px; gap: 10px; }
input, select, button { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 16px 15px; font: inherit; }
input, select { background: rgba(0,0,0,.32); color: var(--text); }
button { border: 0; color: #101014; background: #ffffff; font-weight: 800; cursor: pointer; transition: transform .15s ease, opacity .15s ease; }
button:hover { transform: translateY(-1px); }
button:disabled { opacity: .65; cursor: wait; transform: none; }
.hint { margin: 14px 2px 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.result { margin-top: 26px; padding: 20px; border-radius: 22px; border: 1px solid var(--line); background: var(--card-strong); }
.result h2 { margin: 0 0 12px; font-size: 24px; }
.result p { color: var(--muted); line-height: 1.55; margin: 0 0 14px; }
.status-ok { color: var(--ok); }
.status-bad { color: var(--bad); }
.status-warn { color: var(--warn); }
.meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.meta div { border: 1px solid var(--line); border-radius: 16px; padding: 13px; background: rgba(0,0,0,.18); color: var(--muted); overflow-wrap: anywhere; }
.meta strong { color: var(--text); }
.diagnostics { margin-top: 14px; color: var(--muted); font-size: 13px; }
.hosting, .faq-placeholder { max-width: 790px; margin: 28px auto 0; padding: 26px; }
.hosting h2, .faq-placeholder h2 { margin: 0 0 10px; font-size: 27px; }
.hosting p, .faq-placeholder p { color: var(--muted); line-height: 1.65; margin: 0 0 18px; }
.contact { display: inline-flex; text-decoration: none; color: #101014; background: #ffffff; border-radius: 999px; padding: 13px 18px; font-weight: 800; }
footer { color: var(--muted); text-align: center; padding: 10px 16px 34px; font-size: 14px; }
@media (max-width: 720px) {
  .domain-row { grid-template-columns: 1fr; }
  .meta { grid-template-columns: 1fr; }
  .page { padding-top: 30px; }
}
.meta .wide { grid-column: 1 / -1; }

.faq-list { display: grid; gap: 8px; margin-top: 14px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.16); overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; padding: 12px 14px; font-size: 15px; font-weight: 750; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "›"; color: var(--muted); font-size: 22px; line-height: 1; transform: rotate(90deg); transition: transform .16s ease; }
.faq-list details[open] summary::after { transform: rotate(-90deg); }
.faq-list p { margin: 0; padding: 0 14px 13px; font-size: 14px; line-height: 1.55; color: var(--muted); }
