:root {
  --bg: #180f26;
  --bg-soft: #25153b;
  --panel: rgba(255,255,255,0.07);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #fff7fc;
  --muted: #decde2;
  --line: rgba(255,255,255,0.11);
  --accent: #ff8ed1;
  --accent-2: #d6a9ff;
  --accent-3: #ff62b3;
  --shadow: 0 30px 80px rgba(0,0,0,0.42);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214,169,255,0.18), transparent 24%),
    radial-gradient(circle at 14% 16%, rgba(255,98,179,0.16), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(255,174,219,0.12), transparent 18%),
    linear-gradient(180deg, #140b21 0%, #201133 52%, #180f26 100%);
  font-family: Inter, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.65; color: var(--muted); }
h1, h2, h3 { margin: 0 0 12px; color: var(--text); }
h1, h2 { font-family: Inter, system-ui, sans-serif; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.1rem; }

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

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(24, 15, 38, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: 0 0 auto;
}
.brand-wording {
  display: grid;
  gap: 2px;
}
.brand-wording strong {
  font-size: 1rem;
}
.brand-wording small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.nav a:hover { color: var(--text); }

.hero {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #ffb8df;
  margin-bottom: 14px;
  font-weight: 800;
}
.lead { font-size: 1.08rem; max-width: 62ch; }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 180ms ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #2b1230; box-shadow: 0 12px 28px rgba(255,142,209,0.28); }
.button-secondary { background: transparent; border-color: var(--line); }

.glass-card, .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 26px; }
.hero-card--visual {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}
.hero-banner-art {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.stat-grid { display: grid; gap: 18px; }
.stat-grid--hero {
  gap: 14px;
}
.hero-copy .lead { margin-bottom: 0; }
.stat-label { display: block; color: #ffb8df; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.trust-row, .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.trust-row li, .pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--text);
}
.trust-row li:nth-child(odd) {
  border-color: rgba(255,142,209,0.28);
}
.trust-row li:nth-child(even) {
  border-color: rgba(214,169,255,0.26);
}

.section { padding: 44px 0; }
.section-head { max-width: 760px; margin-bottom: 24px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card { padding: 22px; }
.card.muted { background: rgba(255,255,255,0.04); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.listing-preview { padding: 16px; display: grid; gap: 12px; }
.listing-preview__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
}
.listing-preview__item a { color: var(--accent-2); font-weight: 700; }
.dark-band {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,142,209,0.10), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 32px;
}
.section .lead {
  max-width: 58ch;
}
.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
}
.monetisation-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,0.04);
}
.monetisation-grid {
  align-items: stretch;
}
.monetisation-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.monetisation-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,142,209,0.12);
  border: 1px solid rgba(255,142,209,0.24);
  color: #ffb8df;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.text-link {
  margin-top: auto;
  color: var(--accent-2);
  font-weight: 700;
}
.founder-offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}
.offer-card {
  padding: 24px;
}
.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.price-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.price-card--featured {
  background: linear-gradient(180deg, rgba(216,177,132,0.16), rgba(255,255,255,0.05));
  border-color: rgba(216,177,132,0.25);
}
.footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }

.toolbar {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  margin-bottom: 18px;
}
.results-summary {
  margin-bottom: 16px;
  color: var(--accent-2);
  font-weight: 600;
}

.search-input, .filter-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.page-hero {
  padding: 56px 0 22px;
}
.page-hero--stacked {
  max-width: 780px;
}
.hero-actions--compact {
  margin-top: 22px;
}
.trust-row--compact {
  margin-top: 18px;
}
.notice-soft {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}
.page-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}
.sidebar, .content-panel {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.filter-group { margin-bottom: 22px; }
.filter-group h3 { margin-bottom: 10px; }
.check-list, .link-list {
  display: grid;
  gap: 10px;
}
.check-list label, .link-list a {
  display: block;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.listing-card {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.listing-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.listing-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffe7c4;
  background: rgba(216,177,132,0.14);
  border: 1px solid rgba(216,177,132,0.28);
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.tag {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(24,224,255,0.12);
  color: var(--accent-2);
  border: 1px solid rgba(24,224,255,0.18);
  font-size: 0.9rem;
}
.inline-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.inline-links a { color: var(--accent-2); font-weight: 600; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field, textarea, select, input {
  width: 100%;
  font: inherit;
}
.field label { display: block; margin-bottom: 8px; color: var(--text); font-weight: 600; }
input, select, textarea {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}
textarea { min-height: 160px; resize: vertical; }
input::placeholder, textarea::placeholder {
  color: rgba(245, 251, 255, 0.48);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-note {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
}
.form-note p {
  margin: 0;
}
.form-status {
  min-height: 24px;
  font-weight: 600;
  color: var(--muted);
}
.form-status[data-state="success"] {
  color: var(--accent-2);
}
.form-status[data-state="error"] {
  color: #ff9fc6;
}
.admin-output {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
}
.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(24,224,255,0.1);
  border: 1px solid rgba(24,224,255,0.18);
  color: var(--text);
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.resource-card {
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.article-cta {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(24,224,255,0.22);
  background: linear-gradient(180deg, rgba(24,224,255,0.12), rgba(255,255,255,0.04));
}
.article-cta--tight {
  margin-bottom: 22px;
}
.article-cta p:last-child {
  margin-bottom: 0;
}
.listing-hero-art {
  padding: 0;
  background: linear-gradient(135deg, rgba(24,224,255,0.22), rgba(255,255,255,0.05));
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.listing-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sales-note {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(53,246,200,0.22);
  background: linear-gradient(180deg, rgba(53,246,200,0.10), rgba(255,255,255,0.03));
}
.onboarding-band,
.beginner-band {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(53,246,200,0.08), rgba(255,255,255,0.03));
}
.onboarding-grid {
  align-items: stretch;
}
.onboarding-card {
  padding: 24px;
}
.starter-checklist {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(24,224,255,0.2);
  background: rgba(255,255,255,0.04);
}
.starter-checklist strong {
  display: block;
  color: var(--text);
}
.stack-14 { margin-top: 14px; }
.stack-16 { margin-top: 16px; }
.stack-18 { margin-top: 18px; }
.stack-20 { margin-top: 20px; }
.stack-22 { margin-top: 22px; }
.stack-28 { margin-top: 28px; }
.field--full { grid-column: 1 / -1; }
.small { font-size: 0.95rem; }

@media (max-width: 960px) {
  .hero, .split, .cta-panel, .page-grid, .footer, .feature-grid, .resource-grid, .listing-grid, .form-grid, .toolbar, .founder-offer, .pricing-strip {
    grid-template-columns: 1fr;
  }
  .topbar { position: static; flex-direction: column; align-items: flex-start; }
}
