:root {
  --bg: #0b0b10;
  --bg-soft: #13131c;
  --surface: #181826;
  --surface-2: #1f1f30;
  --border: #2a2a3d;
  --text: #ecebf5;
  --muted: #a9a7c0;
  --faint: #76748f;
  --accent: #a78bfa;
  --accent-2: #7c5cff;
  --accent-soft: rgba(167, 139, 250, 0.14);
  --green: #6ee7a8;
  --radius: 16px;
  --maxw: 1080px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.1; margin: 0; }

a { color: inherit; text-decoration: none; }

.grad {
  background: linear-gradient(120deg, var(--accent) 0%, #c4b5fd 50%, #8b6dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: #0b0b10;
  box-shadow: 0 8px 24px -8px rgba(124, 92, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(124, 92, 255, 0.8); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: #fff; background: var(--accent-soft); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 16, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; }
.brand-mark { color: var(--accent); font-size: 20px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a:not(.btn) { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links > a:not(.btn):hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(124, 92, 255, 0.22) 0%, transparent 70%),
    radial-gradient(40% 40% at 80% 10%, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.eyebrow.center { display: inline-block; }
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.lede {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
}
.lede strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; color: var(--faint); font-size: 14px; }

/* Hero card */
.hero-card {
  max-width: 460px;
  margin: 64px auto 0;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow);
}
.hc-head { display: flex; align-items: center; gap: 14px; }
.hc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: #0b0b10;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.hc-name { font-weight: 700; }
.verified { color: var(--accent); font-size: 13px; }
.hc-role { font-size: 13px; color: var(--faint); }
.hc-status {
  margin-left: auto;
  font-size: 12px; font-weight: 600;
  color: var(--green);
  background: rgba(110, 231, 168, 0.12);
  padding: 5px 10px; border-radius: 999px;
}
.hc-bio { margin: 18px 0; color: var(--muted); font-style: italic; }
.hc-prices { display: flex; gap: 10px; margin-bottom: 18px; }
.price-chip {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.price-chip span { display: block; font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.05em; }
.price-chip strong { font-size: 20px; }
.hc-cta { width: 100%; }

/* ---------- Sections ---------- */
.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section-sub { color: var(--muted); max-width: 620px; margin: 16px auto 0; }
.center { text-align: center; }

.band { padding: 88px 0; border-top: 1px solid var(--border); }
.band .section-title { text-align: center; margin-bottom: 48px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- How ---------- */
.how { padding: 96px 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.how .eyebrow.center, .how .section-title.center { display: block; }
.how .section-title { margin: 12px 0 56px; }
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  display: grid;
  gap: 14px;
}
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.step-num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 17px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(167, 139, 250, 0.3);
}
.step h3 { font-size: 19px; margin-bottom: 4px; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing { padding: 96px 0; border-top: 1px solid var(--border); }
.pricing .eyebrow.center, .pricing .section-title.center { display: block; }
.pricing .section-title { margin-top: 12px; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.tier-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.12), var(--surface));
  box-shadow: 0 18px 50px -24px rgba(124, 92, 255, 0.6);
}
.tier-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.tier h3 { font-size: 24px; margin-bottom: 12px; font-family: "Fraunces", serif; font-weight: 600; }
.tier-desc { color: var(--muted); font-size: 15px; margin: 0 0 18px; min-height: 66px; }
.tier-pay { font-size: 14px; font-weight: 600; color: var(--text); padding-top: 14px; border-top: 1px solid var(--border); margin: 0; }
.pricing-foot { max-width: 640px; margin: 40px auto 0; text-align: center; color: var(--faint); font-size: 15px; }
.pricing-foot strong { color: var(--text); }

/* ---------- Recipients ---------- */
.recipients { padding: 96px 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.recipients-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.recipients .section-title { margin: 12px 0 24px; }
.ticks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--muted); }
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.ticks strong { color: var(--text); }
.payout {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.payout-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.payout-row span { color: var(--muted); }
.payout-row strong { color: var(--green); font-size: 18px; }
.payout-divider { height: 1px; background: var(--border); margin: 6px 0; }
.payout-total span { color: var(--text); font-weight: 600; }
.payout-total strong { font-size: 26px; }

/* ---------- CTA ---------- */
.cta { padding: 110px 0; text-align: center; border-top: 1px solid var(--border);
  background: radial-gradient(60% 80% at 50% 0%, rgba(124, 92, 255, 0.18), transparent 70%); }
.cta h2 { font-family: "Fraunces", serif; font-size: clamp(30px, 5vw, 50px); font-weight: 600; letter-spacing: -0.01em; }
.cta p { color: var(--muted); margin: 20px auto 32px; max-width: 520px; font-size: 18px; }
.cta-fine { color: var(--faint); font-size: 14px; margin-top: 20px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer-brand { font-weight: 700; display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-legal { color: var(--faint); font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links > a:not(.btn) { display: none; }
  .cards, .tiers { grid-template-columns: 1fr; }
  .recipients-inner { grid-template-columns: 1fr; gap: 36px; }
  .step { padding: 20px; gap: 16px; }
}
@media (max-width: 520px) {
  .nav-links .btn-ghost { display: none; }
  .hero { padding: 60px 0 72px; }
  .hc-prices { flex-wrap: wrap; }
}
