:root {
  --bg: #080912;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f7f7fb;
  --muted: #b9bad0;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ff4fb8;
  --accent2: #ffe45c;
  --accent3: #6ee7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

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 20% 0%, rgba(255, 79, 184, 0.32), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(110, 231, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 50% 100%, rgba(255, 228, 92, 0.13), transparent 32rem),
    linear-gradient(180deg, #111226 0%, #080912 72%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.hero {
  display: grid;
  gap: 18px;
  text-align: center;
  margin: 0 auto 34px;
  max-width: 880px;
}

.eyebrow {
  justify-self: center;
  width: fit-content;
  border: 1px solid var(--line);
  color: var(--accent2);
  background: rgba(255, 228, 92, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 11vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-wrap: balance;
}

.lead {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.5;
}

.result-wrap {
  margin: 28px auto;
}

.domain-card,
.panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 34px;
}

.domain-card {
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  position: relative;
}

.domain-card::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,79,184,.45), transparent 70%);
  pointer-events: none;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.pill,
.muted {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.pill {
  background: rgba(255, 79, 184, 0.16);
  color: #ffd4ed;
  font-weight: 850;
}

.muted {
  color: var(--muted);
  background: rgba(255,255,255,.05);
}

.domain-text {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  overflow-wrap: anywhere;
  text-shadow: 0 6px 28px rgba(0,0,0,.4);
}

.sentence {
  margin: 24px 0 0;
  max-width: 860px;
  color: #f2f2ff;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

button {
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  background: rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}

button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
}

button.primary {
  color: #151515;
  background: linear-gradient(135deg, var(--accent2), #fff1a3);
  border: 0;
}

.panel {
  padding: clamp(20px, 3vw, 32px);
  margin-top: 22px;
}

.panel h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.05em;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.example-list {
  display: grid;
  gap: 10px;
}

.example-list span {
  display: block;
  color: #dcecff;
  background: rgba(110, 231, 255, 0.08);
  border: 1px solid rgba(110, 231, 255, 0.18);
  border-radius: 16px;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.signup {
  display: grid;
  grid-template-columns: 1fr 260px auto;
  gap: 12px;
  margin-top: 18px;
}

input,
select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  outline: 0;
}

input::placeholder {
  color: #85869c;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  max-width: min(92vw, 760px);
  color: #111;
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
  transition: .18s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 22px, 1120px);
    padding-top: 32px;
  }

  .two-col,
  .signup {
    grid-template-columns: 1fr;
  }

  .actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .domain-card,
  .panel {
    border-radius: 24px;
  }

  .actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(48px, 18vw, 76px);
  }
}
