:root {
  --bg: #0d0e14;
  --bg-soft: #141726;
  --panel: rgba(20, 23, 38, 0.9);
  --panel-strong: #171a2b;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef2ff;
  --muted: #b8c0dd;
  --soft: #8d96b8;
  --accent: #ffb84d;
  --accent-2: #ff7b72;
  --accent-3: #7cc7ff;
  --success: #83e6b1;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 184, 77, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 199, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #0b0d15, #101321 55%, #0d0e14);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 44px;
}

.site-header,
.site-footer,
.panel {
  backdrop-filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  color: var(--soft);
  margin-top: 2px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.top-nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: 180ms ease;
}
.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  outline: none;
}

.panel {
  background: linear-gradient(180deg, rgba(24, 27, 44, 0.92), rgba(16, 18, 30, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  padding: 34px;
}
.hero-copy h1,
.section-heading h2,
.content-grid h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  max-width: 12ch;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}
.lede,
.content-grid p,
.notes-grid p,
.mini-steps p,
.section-heading p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}
.button {
  appearance: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  border-radius: 14px;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  outline: none;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #24140d;
  border-color: transparent;
  font-weight: 700;
}
.button-ghost {
  background: rgba(124, 199, 255, 0.08);
}
.button-subtle {
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.hero-points li {
  color: var(--muted);
  position: relative;
  padding-left: 22px;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(255,184,77,0.12);
}

.hero-card {
  align-self: stretch;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  margin-bottom: 12px;
}
.badge {
  font-size: 0.78rem;
  color: #171826;
  background: var(--success);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.example-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.example-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.example-list span { font-weight: 700; }
.example-list em {
  font-style: normal;
  color: var(--soft);
  white-space: nowrap;
}

.ad-wrap {
  min-height: 120px;
  display: grid;
  place-items: center;
  margin: 20px 0;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.12);
  color: var(--soft);
}

.tool-panel,
.content-grid,
.notes-panel {
  margin-top: 20px;
  padding: 28px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}
.controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}
.controls label {
  display: grid;
  gap: 8px;
}
.controls span {
  color: var(--muted);
  font-size: 0.95rem;
}
.controls select,
.controls input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #101321;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}
.controls select:focus,
.controls input:focus {
  outline: 2px solid rgba(124, 199, 255, 0.25);
  border-color: rgba(124, 199, 255, 0.4);
}
.seed-input { grid-column: span 1; }
.control-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.results-head {
  margin: 26px 0 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}
.results-head h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}
.muted,
.status {
  color: var(--soft);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.result-card {
  position: relative;
  text-align: left;
  padding: 16px;
  min-height: 122px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.result-card:hover,
.result-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 184, 77, 0.45);
  background: linear-gradient(180deg, rgba(255,184,77,0.10), rgba(255,255,255,0.04));
  outline: none;
}
.result-domain {
  display: block;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.result-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.82rem;
}
.status {
  min-height: 24px;
  margin-top: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 24px;
}
.mini-steps {
  display: grid;
  gap: 14px;
}
.mini-steps article,
.notes-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.mini-steps h3,
.notes-grid h3 {
  margin: 0 0 8px;
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px 4px 10px;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a,
.legal-back {
  color: var(--muted);
}
.footer-links a:hover,
.legal-back:hover { color: var(--text); }

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 26px 0 50px;
}
.legal-card {
  padding: 28px;
}
.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-placeholder {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.14);
  color: var(--soft);
  background: rgba(255,255,255,0.03);
}

@media (max-width: 920px) {
  .hero,
  .content-grid,
  .controls,
  .notes-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .site-header,
  .site-footer,
  .results-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero { padding: 24px; }
  .tool-panel,
  .content-grid,
  .notes-panel,
  .legal-card { padding: 22px; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 20px, 1160px); }
  .top-nav { gap: 4px; }
  .top-nav a { padding: 8px 10px; }
  .hero-copy h1 { max-width: 100%; }
  .button,
  .controls select,
  .controls input { width: 100%; }
  .control-actions { width: 100%; }
  .control-actions .button { flex: 1 1 100%; }
}



/* Factory-injected deployment helpers. The AI owns the site design above this block. */
.ad-unit {
  width: min(100%, 720px);
  min-height: 120px;
  margin: 24px auto;
  display: block;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 40px auto;
}
