/* ============================================================
   Hallucinate — styles.css
   ============================================================ */

:root {
  --bg:            #0a0a10;
  --bg-elev:      #12121b;
  --bg-card:      #181822;
  --bg-card-2:    #1d1d28;
  --border:       #2a2a38;
  --border-soft:  #20202c;

  --purple:       #6B2D9C;
  --purple-soft:  #8B4FBE;
  --teal:         #25C9A0;
  --teal-soft:    #5CE0BC;
  --lime:         #5DEB54;
  --lime-soft:    #8AF184;

  --text:         #ECEAF5;
  --text-soft:    #B5B2C5;
  --text-muted:   #7E7B92;

  --serif:        'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius:       12px;
  --radius-lg:    18px;
  --shadow-card:  0 1px 0 rgba(255,255,255,0.03), 0 18px 40px -22px rgba(0,0,0,0.7);
  --maxw:         1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* radial accent behind hero */
body::before {
  content: '';
  position: fixed;
  top: -200px; left: 50%;
  width: 1200px; height: 700px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107,45,156,0.18), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(37,201,160,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }

a {
  color: var(--teal-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
a:hover { color: var(--lime-soft); border-bottom-color: var(--lime-soft); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,16,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); border: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.brand-logo { width: 36px; height: 36px; }
.brand-name { line-height: 1; }
.site-nav {
  display: flex; gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--text-soft);
  border: none;
}
.site-nav a:hover { color: var(--teal-soft); }
@media (max-width: 760px) {
  .site-nav { display: none; }
}

/* ============== HERO ============== */
.hero {
  padding: clamp(56px, 10vw, 120px) 0 clamp(48px, 7vw, 80px);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.95;
  margin: 0 0 18px;
  background: linear-gradient(120deg, #fff 0%, #BFA9DC 50%, #5DEB54 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-soft);
  margin: 0 auto 28px;
  max-width: 740px;
}
.hero-lede {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--text-soft);
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .12s, background .15s, border-color .15s, color .15s;
}
.btn:hover { transform: translateY(-1px); border-bottom-color: transparent; }
.btn-primary {
  background: var(--teal);
  color: #06241c;
}
.btn-primary:hover { background: var(--teal-soft); color: #06241c; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--purple-soft); color: var(--purple-soft); }

/* ============== SECTIONS ============== */
.section {
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 1px solid var(--border-soft);
}
.section-alt { background: var(--bg-elev); }
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--text);
}
.section-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-soft);
  margin: 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head .section-kicker { margin-top: 6px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}
.prose p { margin: 0 0 16px; color: var(--text-soft); font-size: 16.5px; }
.prose strong { color: var(--text); }

.callout {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(107,45,156,0.12), rgba(37,201,160,0.08));
  border: 1px solid rgba(107,45,156,0.35);
}
.callout h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lime-soft);
}
.callout p { margin: 0; color: var(--text-soft); }

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.art-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .2s, border-color .2s;
}
.art-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple-soft);
}
.art-media {
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}
.art-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.art-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.art-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  flex-wrap: wrap;
}
.art-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  margin: 0;
  line-height: 1.1;
}
.art-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid;
}
.tier-friend      { color: #B5B2C5; border-color: #3A3A4A; background: #1d1d28; }
.tier-benefactor  { color: #5CE0BC; border-color: rgba(37,201,160,0.4); background: rgba(37,201,160,0.06); }
.tier-champion    { color: #BFA9DC; border-color: rgba(139,79,190,0.45); background: rgba(107,45,156,0.10); }
.tier-founder     { color: #8AF184; border-color: rgba(93,235,84,0.45); background: rgba(93,235,84,0.08); }
.tier-preview     { color: #BFA9DC; border-color: rgba(139,79,190,0.45); background: rgba(107,45,156,0.10); }

.art-style {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0;
}
.art-placard {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 4px 0 0;
}
.archive-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-muted);
  font-size: 14px;
}
.preview-note {
  max-width: 800px;
  margin: -16px auto 36px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px dashed var(--purple-soft);
  background: rgba(107,45,156,0.06);
  color: var(--text-soft);
  font-size: 15px;
  text-align: center;
}
.preview-note strong { color: var(--lime-soft); }

/* ============== STEPS ============== */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  counter-reset: stepcount;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.step h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
}
.step p { margin: 0; color: var(--text-soft); font-size: 15.5px; }

/* ============== PRICING ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px;
}
.price-card-founder {
  border-color: rgba(93,235,84,0.4);
  background: linear-gradient(180deg, rgba(93,235,84,0.06), var(--bg-card) 60%);
}
.price-tier {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--teal-soft);
  margin: 0 0 4px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}
.price-amount span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 6px;
}
.price-desc {
  font-size: 14.5px;
  color: var(--text-soft);
  margin: 8px 0 0;
}
.pricing-note {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
}

/* ============== POLICIES ============== */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 30px;
}
.policy-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 14px;
  color: var(--text);
}
.policy-card p { margin: 0 0 12px; color: var(--text-soft); }
.policy-card p:last-child { margin-bottom: 0; }
.policy-card ul {
  margin: 0; padding-left: 20px;
  color: var(--text-soft);
}
.policy-card ul li { margin-bottom: 8px; }

/* ============== CONTACT ============== */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 32px;
}
.contact-list { margin: 0; }
.contact-list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-list > div:first-child { padding-top: 0; }
.contact-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-list dd { margin: 0; color: var(--text); }
@media (max-width: 540px) {
  .contact-list > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ============== FOOTER ============== */
.site-footer {
  background: #07070c;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 56px 0 40px;
}
.footer-brand {
  display: flex; gap: 14px; align-items: center;
}
.footer-logo { width: 40px; height: 40px; }
.footer-name {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0; line-height: 1;
}
.footer-meta { margin: 4px 0 0; color: var(--text-muted); font-size: 13px; }
.footer-block p { margin: 0; font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 0 10px !important;
  font-weight: 600;
}
.footer-block a { color: var(--text-soft); }
.footer-block a:hover { color: var(--teal-soft); }
.footer-bottom {
  padding: 22px 0 32px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom p { margin: 4px 0; }
.footer-disclosure { font-size: 12px; }
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
}

/* ============== LEGAL PAGES ============== */
.legal-page {
  padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 96px);
}
.legal-page .container { max-width: 820px; }
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  margin: 0 0 8px;
}
.legal-page .updated {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 36px;
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 36px 0 12px;
  color: var(--lime-soft);
}
.legal-page h3 {
  font-size: 17px;
  margin: 22px 0 8px;
  color: var(--text);
}
.legal-page p, .legal-page li {
  color: var(--text-soft);
  font-size: 16px;
}
.legal-page ul, .legal-page ol { padding-left: 22px; }
.legal-page li { margin-bottom: 8px; }
.legal-page .draft-banner {
  margin: 24px 0 32px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px dashed var(--purple-soft);
  background: rgba(107,45,156,0.08);
  color: var(--text);
  font-size: 14px;
}

/* selection */
::selection { background: var(--purple); color: #fff; }
