/* ============================================================
   PRAXUS — investor updates (extends style.css)
   Same palette / type system as drinkpraxus.com.
   ============================================================ */

/* shorter hero for the gate + update header */
.hero-gate { min-height: 78svh; }

/* update pages start locked; track.js unhides #update or #gate */
[hidden] { display: none !important; }

/* ---------- update header ---------- */
.update-hero { min-height: 62svh; padding-bottom: 40px; }
.update-hero h1 { font-size: clamp(40px, 6.4vw, 84px); }
.update-date {
  font-family: "Space Grotesk", monospace, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- metric cards ---------- */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.metric {
  background: var(--surface);
  border: 1px solid rgba(234, 230, 226, 0.07);
  padding: clamp(20px, 2.4vw, 30px);
}
.metric-label {
  font-family: "Space Grotesk", monospace, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
}
.metric-value {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.metric-delta { font-size: 13.5px; color: var(--dim); margin-top: 6px; }
.metric-delta.up { color: var(--mint); }

/* ---------- update sections ---------- */
.update-section { padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(70px, 9vw, 120px); }
.update-list { list-style: none; margin-top: 34px; display: flex; flex-direction: column; }
.update-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 16.5px;
  max-width: 62ch;
}
.update-list li:last-child { border-bottom: 1px solid var(--line); }
.update-list strong { color: var(--white); font-weight: 650; }

/* the ask */
.ask-card {
  margin-top: 40px;
  padding: clamp(26px, 3.4vw, 40px);
  border-left: 2px solid var(--mint);
  background: rgba(181, 223, 211, 0.05);
  max-width: 62ch;
}
.ask-card h3 { font-size: 18px; margin-bottom: 12px; }
.ask-card p { font-size: 15.5px; color: var(--bone); }
.ask-card p + p { margin-top: 12px; }

/* signature */
.sig { margin-top: 48px; }
.sig .sig-name { font-weight: 700; color: var(--white); font-size: 17px; }
.sig .sig-role {
  font-family: "Space Grotesk", monospace, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-top: 4px;
}

/* confidential line */
.confidential {
  font-family: "Space Grotesk", monospace, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

@media (max-width: 900px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .metric-grid { grid-template-columns: 1fr; }
}
