/* ============================================================
   REV Platform — shared brand system
   Pulled from revyourlife.com + official REV logo assets.
   Every tool in the hub should link this file.
   ============================================================ */

:root {
  /* Brand */
  --rev-green:       #00945e;   /* primary — the mark, actions */
  --rev-green-dark:  #007a4d;
  --rev-green-soft:  #e6f4ee;
  --rev-navy:        #001a70;   /* deep royal blue (site) */
  --rev-navy-deep:   #00113f;
  --rev-azure:       #0093c9;   /* secondary accent (site) */
  --rev-slate:       #0f172a;   /* body ink */
  --rev-muted:       #64748b;
  --rev-surface:     #ffffff;
  --rev-bg:          #f4f6f8;
  --rev-border:      #e4e8ee;

  --rev-radius:      16px;
  --rev-shadow:      0 1px 2px rgba(15,23,42,.06), 0 8px 24px rgba(15,23,42,.06);
  --rev-shadow-lg:   0 12px 40px rgba(0,26,112,.16);
  --rev-font: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: var(--rev-font);
  color: var(--rev-slate);
  background: var(--rev-bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.01em; }

.rev-eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  font-size: 12px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--rev-font); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-primary { background: var(--rev-green); color: #fff; }
.btn-primary:hover { background: var(--rev-green-dark); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--rev-navy); border: 1px solid var(--rev-border); }
.btn-ghost:hover { border-color: var(--rev-green); color: var(--rev-green-dark); }

/* Card */
.card {
  background: var(--rev-surface);
  border: 1px solid var(--rev-border);
  border-radius: var(--rev-radius);
  box-shadow: var(--rev-shadow);
}

/* Pills */
.pill { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.08em; padding:5px 11px; border-radius:999px; }
.pill-open { background: var(--rev-green-soft); color: var(--rev-green-dark); }
.pill-soon { background: #eef1f5; color: var(--rev-muted); }
