/* ===== FVCTN baseline ===== */
:root{
  --fv-max: 1100px;
  --fv-radius: 14px;
  --fv-shadow: 0 10px 30px rgba(0,0,0,.08);
  --fv-border: 1px solid rgba(0,0,0,.10);
  --fv-text: #1b1f23;
  --fv-muted: rgba(27,31,35,.72);
  --fv-bg: #ffffff;
}

.fv-container{
  max-width: var(--fv-max);
  margin: 0 auto;
  padding: 0 20px;
}

.fv-section{
  padding: 48px 0;
}

.fv-section__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.fv-link{
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.fv-eyebrow{
  margin: 0 0 10px 0;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--fv-muted);
}

/* ===== Hero ===== */
.fv-hero{
  padding: 56px 0 36px 0;
  background: var(--fv-bg);
}

.fv-hero h1{
  margin: 0 0 12px 0;
  line-height: 1.12;
}

.fv-lead{
  margin: 0 0 18px 0;
  font-size: 18px;
  color: var(--fv-muted);
  max-width: 62ch;
}

.fv-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px 0;
}

/* ===== Buttons ===== */
.fv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  border: var(--fv-border);
}

.fv-btn--primary{
  box-shadow: var(--fv-shadow);
}

.fv-btn--ghost{
  background: transparent;
}

/* ===== Cards / Grids ===== */
.fv-cardgrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fv-cardgrid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fv-card{
  display:block;
  padding: 16px 16px 14px 16px;
  border-radius: var(--fv-radius);
  border: var(--fv-border);
  text-decoration:none;
  box-shadow: none;
}

.fv-card h3{
  margin: 0 0 6px 0;
  font-size: 16px;
}

.fv-card p{
  margin: 0 0 10px 0;
  color: var(--fv-muted);
}

.fv-card__cta{
  font-weight: 700;
}

/* ===== Chips ===== */
.fv-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fv-chip{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  border: var(--fv-border);
  text-decoration:none;
  font-weight: 600;
}

/* ===== Callout ===== */
.fv-callout{
  padding: 18px;
  border-radius: var(--fv-radius);
  border: var(--fv-border);
  box-shadow: var(--fv-shadow);
}

.fv-callout h3{ margin: 0 0 8px 0; }
.fv-callout p{ color: var(--fv-muted); }

.fv-small{
  margin: 10px 0 0 0;
  font-size: 13px;
  color: var(--fv-muted);
}

.fv-steps{
  margin: 0;
  padding-left: 20px;
}
.fv-steps li{
  margin: 10px 0;
  color: var(--fv-text);
}
.fv-join-steps{
  padding-top: 12px;
}

.fv-involved{
  background: rgba(0,0,0,.03);
}
.fv-involved .fv-container{
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 860px){
  .fv-cardgrid{ grid-template-columns: 1fr; }
  .fv-cardgrid--3{ grid-template-columns: 1fr; }
  .fv-section__head{ flex-direction: column; align-items: flex-start; }
}
