/* chillrust.org/vip — the VIP pitch + the monthly funding thermometer.
   Layout only; every colour comes from site.css tokens so the Beginner focus
   theme repaints this page for free. */

.vip {
  max-width: 62rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

.vip-loading { color: var(--muted); padding: 3rem 0; text-align: center; }

/* ─── Hero ─────────────────────────────────────────────────────────── */

.vip-hero {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.vip-hero h1 {
  margin: 0 0 .35rem;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  letter-spacing: .02em;
}
.vip-tag {
  color: var(--gold);
  font-weight: 700;
}
.vip-price {
  margin: 0 0 .25rem;
  font-size: 1.15rem;
  color: var(--text);
}
.vip-price strong { color: var(--gold); }
.vip-sub { margin: 0; color: var(--muted); font-size: .92rem; }

/* ─── Perk cards ───────────────────────────────────────────────────── */

.vip-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.vip-perk {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.1rem 1.2rem;
}
.vip-perk h3 { margin: 0 0 .4rem; font-size: 1.02rem; color: var(--text); }
.vip-perk p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.vip-perk .vip-perk-big {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: .3rem;
}

/* ─── Funding thermometer ──────────────────────────────────────────── */

.vip-fund {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
  margin: 1.5rem 0;
}
.vip-fund h2 { margin: 0 0 .2rem; font-size: 1.15rem; }
.vip-fund-lead { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.vip-bar {
  position: relative;
  height: 1.6rem;
  background: var(--panel-inset);
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  overflow: hidden;
}
.vip-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 999px;
  /* Width is set inline from the live figure; the transition is only so a
     late-arriving fetch animates in rather than snapping. */
  transition: width .6s ease-out;
  min-width: 0;
}
.vip-bar-figures {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .55rem;
  font-size: .9rem;
}
.vip-raised { color: var(--text); font-weight: 700; }
.vip-goal { color: var(--muted); }
.vip-fund-note { margin: .9rem 0 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }

/* ─── Cost breakdown ───────────────────────────────────────────────── */

.vip-costs { margin: .9rem 0 0; padding: 0; list-style: none; }
.vip-costs li {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
  padding: .35rem 0 .35rem 1.1rem;
  position: relative;
}
.vip-costs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85em;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--gold);
}

/* ─── Call to action ───────────────────────────────────────────────── */

.vip-cta { text-align: center; margin: 1.75rem 0 0; }
.vip-btn {
  display: inline-block;
  background: var(--accent-fill);
  color: var(--accent-fill-ink);
  border: 1px solid var(--gold-deep);
  border-radius: 10px;
  padding: .8rem 1.9rem;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.vip-btn:hover { filter: brightness(1.08); }
.vip-cta-note { margin: .7rem 0 0; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.vip-owned {
  background: var(--panel);
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  padding: 1.1rem;
  color: var(--text);
  text-align: center;
}
.vip-owned strong { color: var(--gold); }

/* ─── Small print ──────────────────────────────────────────────────── */

.vip-fine { margin: 1.75rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.vip-fine a { color: var(--gold); }
