/* Member dashboard — Day Strike Trading */

.dash-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 var(--s-5, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4, 24px);
  background: #0a0a0a;
  border-bottom: 1px solid var(--gold-line, rgba(201, 162, 74, 0.18));
}

.dash-nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.dash-nav-logo img {
  height: 70px;
  width: auto;
  max-height: 70px;
  object-fit: contain;
}

.dash-nav-end {
  display: flex;
  align-items: center;
  gap: var(--s-4, 24px);
}

.dash-nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  text-decoration: none;
  transition: color 200ms ease;
}

.dash-nav-link:hover,
.dash-nav-link--active {
  color: var(--gold-light, #e8c97a);
}

.dash-nav-link--muted {
  color: var(--fg-faint, rgba(245, 245, 244, 0.32));
}

.dash-nav-link--sign-out {
  margin-left: 4px;
  padding-left: clamp(16px, 2vw, 20px);
  border-left: 1px solid rgba(245, 245, 244, 0.1);
  color: rgba(245, 245, 244, 0.42);
}

.dash-nav-link--sign-out:hover {
  color: rgba(245, 245, 244, 0.88);
}

.dash-nav-link--sign-out[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.dash-nav-link--join {
  font-family: inherit;
  background: transparent;
  border: 1px solid rgba(201, 162, 74, 0.45);
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--gold-light, #e8c97a);
}

.dash-nav-link--join:hover {
  background: rgba(201, 162, 74, 0.1);
  border-color: var(--gold, #c9a24a);
}

.dash-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--s-6, 64px) var(--s-5, 40px) var(--s-7, 96px);
}

.dash-header {
  margin-bottom: var(--s-6, 64px);
}

.dash-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #c9a24a);
  margin-bottom: var(--s-3, 16px);
}

.dash-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--s-3, 16px);
}

.dash-sub {
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  font-size: 15px;
  max-width: 52ch;
}

.dash-sub strong {
  color: var(--fg, #f5f5f4);
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4, 24px);
  list-style: none;
}

.product-card {
  padding: var(--s-5, 40px);
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.product-card--active {
  border-color: var(--gold-line, rgba(201, 162, 74, 0.35));
  box-shadow: 0 0 48px rgba(201, 162, 74, 0.08);
}

.product-card--locked {
  opacity: 0.92;
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-4, 24px);
}

.product-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--fg-faint, rgba(245, 245, 244, 0.32));
}

.product-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong, rgba(245, 245, 244, 0.24));
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
}

.product-card--active .product-status {
  color: #0a0a0a;
  background: linear-gradient(135deg, #e8c97a, #c9a24a);
  border-color: transparent;
}

.product-name {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2, 8px);
}

.product-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light, #e8c97a);
  margin-bottom: var(--s-3, 16px);
}

.product-desc {
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

.product-note {
  font-size: 13px;
  color: var(--gold-light, #e8c97a);
  margin-top: var(--s-3, 16px);
  padding: var(--s-3, 16px);
  border-left: 2px solid var(--gold, #c9a24a);
  background: rgba(201, 162, 74, 0.06);
}

.product-actions {
  margin-top: var(--s-4, 24px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-width: 160px;
  font-family: var(--font-body, "Inter Tight", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  background: linear-gradient(135deg, #e8c97a 0%, #c9a24a 55%, #a8863a 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201, 162, 74, 0.35);
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 8px 32px rgba(201, 162, 74, 0.45);
}

.btn-gold--sm {
  padding: 12px 22px;
  min-width: 120px;
  font-size: 11px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg, #f5f5f4);
  border: 1px solid var(--line-strong, rgba(245, 245, 244, 0.24));
  border-radius: 999px;
  transition: border-color 200ms ease, color 200ms ease;
}

.btn-ghost:hover {
  border-color: var(--gold, #c9a24a);
  color: var(--gold-light, #e8c97a);
}

.product-price {
  font-weight: 500;
  opacity: 0.85;
}

/* Downloads */
.download-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3, 16px);
  margin-bottom: var(--s-5, 40px);
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4, 24px);
  padding: var(--s-4, 24px);
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 2px;
}

.download-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.download-detail {
  font-size: 13px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
}

/* Upsell banner */
.upsell-banner {
  padding: var(--s-5, 40px);
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(201, 162, 74, 0.12), transparent 55%),
    var(--bg-elevated, #131313);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.25));
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4, 24px);
}

.upsell-banner h3 {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: var(--s-2, 8px);
}

.upsell-banner p {
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  font-size: 14px;
  max-width: 40ch;
}

.upsell-banner--prominent {
  border-color: var(--gold, #c9a24a);
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.15);
}

.upsell-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light, #e8c97a);
  margin: 0 0 8px;
}

.upsell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3, 16px);
  align-items: center;
}

.btn-ghost--sm {
  padding: 12px 20px;
  font-size: 12px;
}

/* Options confirmation */
.confirm-panel {
  max-width: 560px;
  padding: var(--s-5, 40px);
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 2px;
}

.confirm-check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3, 16px);
  margin-bottom: var(--s-4, 24px);
  cursor: pointer;
  font-size: 14px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  line-height: 1.5;
}

.confirm-check input {
  margin-top: 4px;
  accent-color: var(--gold, #c9a24a);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.success-panel {
  padding: var(--s-5, 40px);
  border: 1px solid rgba(109, 240, 255, 0.25);
  background: rgba(109, 240, 255, 0.04);
  border-radius: 2px;
}

.success-panel h3 {
  color: var(--strike, #6df0ff);
  font-size: 18px;
  margin-bottom: var(--s-3, 16px);
}

.success-panel p {
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  font-size: 14px;
  line-height: 1.55;
}

.checkout-card--wide {
  max-width: 520px;
}

.checkout-card {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--s-6, 64px) var(--s-5, 40px);
  text-align: center;
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.25));
  border-radius: 2px;
}

.checkout-price {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-light, #e8c97a);
  margin: var(--s-4, 24px) 0;
}

.checkout-price-sub {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--fg-muted, rgba(245, 245, 244, 0.72));
  margin: -12px 0 var(--s-3, 16px);
}

.checkout-price-note {
  font-size: 14px;
  color: var(--gold-light, #e8c97a);
  margin: -8px 0 var(--s-4, 24px);
}

.checkout-subscription-terms {
  text-align: left;
  margin: var(--s-4, 24px) 0;
  padding: var(--s-4, 24px);
  background: rgba(201, 162, 74, 0.06);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.2));
  border-radius: 2px;
}

.checkout-sub-ack {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted, rgba(245, 245, 244, 0.72));
  cursor: pointer;
}

.checkout-sub-ack input {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkout-sub-ack a {
  color: var(--gold-light, #e8c97a);
}

.product-price-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.85;
}

.checkout-account {
  text-align: left;
  margin: var(--s-5, 40px) 0 0;
  padding-top: var(--s-4, 24px);
  border-top: 1px solid var(--line, rgba(245, 245, 244, 0.12));
}

.checkout-account-hint {
  font-size: 13px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.55));
  margin: 0 0 var(--s-4, 24px);
}

.pay-field .field-hint {
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg-muted, rgba(245, 245, 244, 0.48));
  font-weight: 400;
}

.checkout-login-prompt {
  font-size: 13px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin: 0;
}

.checkout-login-prompt a {
  color: var(--gold-light, #e8c97a);
}

.checkout-signed-in {
  font-size: 14px;
  color: var(--gold-light, #e8c97a);
  margin: var(--s-4, 24px) 0;
}

.dashboard-upsell {
  margin-bottom: var(--s-6, 64px);
  padding: var(--s-5, 40px);
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.12) 0%, rgba(201, 162, 74, 0.04) 100%);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.35));
  border-radius: 2px;
}

.dashboard-upsell-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4, 24px);
}

.dashboard-upsell-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 28px;
  font-weight: 300;
  margin: 8px 0;
}

.dashboard-upsell-desc {
  font-size: 15px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  max-width: 52ch;
  margin: 0;
}

.product-price-display {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light, #e8c97a);
  margin: 0 0 var(--s-3, 16px);
}

.product-price-display span {
  font-size: 16px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
}

.checkout-payment {
  text-align: left;
  margin: var(--s-5, 40px) 0 0;
  padding-top: var(--s-4, 24px);
  border-top: 1px solid var(--line, rgba(245, 245, 244, 0.12));
}

.checkout-payment-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin: 0 0 var(--s-3, 16px);
}

.pay-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s-3, 16px);
}

.pay-field span {
  font-size: 12px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
}

.pay-field input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body, "Inter Tight", sans-serif);
  font-size: 15px;
  color: var(--fg, #f5f5f4);
  background: var(--bg, #0a0a0a);
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 2px;
}

.pay-field input:focus {
  outline: none;
  border-color: var(--gold, #c9a24a);
}

.pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-3, 16px);
}

.checkout-payment-note {
  margin-top: var(--s-4, 24px);
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-muted, rgba(245, 245, 244, 0.5));
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3, 16px);
  align-items: center;
  margin-top: var(--s-5, 40px);
}

.product-card--featured {
  border-color: var(--gold, #c9a24a);
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.15);
}

.product-savings {
  font-size: 13px;
  color: var(--gold-light, #e8c97a);
  margin: 0 0 var(--s-3, 16px);
}

.auth-error {
  font-size: 13px;
  color: #f87171;
  text-align: center;
  margin-bottom: var(--s-3, 16px);
}

/* Member area tabs */
.member-tabs {
  display: flex;
  gap: var(--s-2, 8px);
  margin-bottom: var(--s-5, 40px);
  border-bottom: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  padding-bottom: var(--s-3, 16px);
}

.member-tab {
  padding: 12px 24px;
  font-family: var(--font-body, "Inter Tight", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.member-tab:hover {
  color: var(--fg, #f5f5f4);
}

.member-tab--active {
  color: #0a0a0a;
  background: linear-gradient(135deg, #e8c97a, #c9a24a);
  border-color: transparent;
}

.member-tab-panel {
  animation: fadeTab 400ms var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

@keyframes fadeTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dash-nav-link--active {
  color: var(--gold-light, #e8c97a) !important;
}

.auth-demo {
  margin-top: var(--s-4, 24px);
  padding: var(--s-3, 16px);
  font-size: 12px;
  color: var(--fg-faint, rgba(245, 245, 244, 0.32));
  line-height: 1.6;
  border-top: 1px solid var(--line, rgba(245, 245, 244, 0.12));
}

.auth-demo code {
  color: var(--gold-light, #e8c97a);
  font-size: 11px;
}

@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .download-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Day Strike Trading — Account Page
   APPEND THIS TO dashboard.css — do not replace existing styles
   ============================================================ */
.dashboard-email { color: #888; margin-bottom: 2rem; }
.dashboard-section { margin: 3rem 0; }
.dashboard-section h2 { font-size: 1.25rem; color: #fff; margin-bottom: 1rem; }
.dashboard-empty { color: #888; }
.sub-row { display: flex; justify-content: space-between; padding: 1rem; background: #111; border: 1px solid #222; border-radius: 8px; margin-bottom: 0.5rem; }
.sub-name { color: #fff; font-weight: 600; }
.sub-meta { display: flex; gap: 1rem; color: #888; font-size: 0.9rem; align-items: center; }
.sub-status { padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; text-transform: uppercase; }
.sub-status-active { background: #0f3f0f; color: #afa; }
.sub-status-past_due { background: #3f2f0f; color: #fc8; }
.sub-status-canceled { background: #3f0f0f; color: #f88; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .access-grid { grid-template-columns: 1fr; } }
.access-card { background: #111; border: 1px solid #222; border-radius: 8px; padding: 1.5rem; }
.access-card h3 { margin: 0 0 0.75rem; color: #fff; }
.access-status { display: inline-block; padding: 0.3rem 0.7rem; border-radius: 4px; font-size: 0.85rem; margin-bottom: 1rem; }
.access-active { background: #0f3f0f; color: #afa; }
.access-inactive { background: #2a2a2a; color: #888; }
.access-link, .access-cta { display: inline-block; padding: 0.6rem 1rem; border-radius: 6px; text-decoration: none; font-weight: 500; }
.access-link { background: #fff; color: #000; }
.access-cta { background: #1a1a1a; border: 1px solid #444; color: #fff; }

/* Ensure hidden panels never capture clicks */
[hidden] {
  display: none !important;
}

/* Member dashboard — Futures-first hub */
.dash-hub-main {
  max-width: 920px;
}

.dash-hub-header {
  margin-bottom: var(--s-5, 40px);
}

.dash-hub-header .dash-sub {
  max-width: 52ch;
}

/* Live Room + Schedule row */
.dash-liveroom-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  margin-bottom: var(--s-5, 40px);
  align-items: stretch;
}

/* Schedule panel */
.dash-schedule-panel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #0c0c0c;
  border: 1px solid rgba(201, 162, 74, 0.22);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease;
}

.dash-schedule-panel.is-loaded {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(201, 162, 74, 0.38);
}

/* Ambient glow pulse behind the card */
.dash-schedule-panel-pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 74, 0.14), transparent 70%);
  animation: sched-breathe 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sched-breathe {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.dash-schedule-panel-inner {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.dash-schedule-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* Pulsing dot */
.dash-schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8c97a;
  flex-shrink: 0;
  animation: sched-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.5);
}

@keyframes sched-dot {
  0%   { box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.55); }
  60%  { box-shadow: 0 0 0 7px rgba(201, 162, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 74, 0); }
}

.dash-schedule-live-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 244, 0.45);
}

.dash-schedule-panel-title {
  margin: 0 0 14px;
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f5f5f4;
}

.dash-schedule-panel-body {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 244, 0.68);
  white-space: pre-wrap;
  word-break: break-word;
}

.dash-schedule-panel-body:empty::before {
  content: 'Schedule will appear here once posted.';
  color: rgba(245, 245, 244, 0.28);
  font-style: italic;
}

.dash-schedule-panel-updated {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 245, 244, 0.07);
  font-size: 11px;
  color: rgba(245, 245, 244, 0.28);
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .dash-liveroom-row {
    grid-template-columns: 1fr;
  }

  .dash-schedule-panel {
    min-height: 180px;
  }
}

/* Dashboard schedule strip (old — retired) */
.dash-schedule-section { display: none; }

/* Futures — full-width primary */
.dash-futures-primary {
  margin-bottom: 0;
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 6px;
  background: linear-gradient(165deg, #161616 0%, #101010 55%, #0c0c0c 100%);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.dash-futures-primary--locked {
  border-color: rgba(201, 162, 74, 0.28);
}

.dash-futures-primary--locked:hover {
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.45);
}

.dash-futures-primary--active {
  border-color: rgba(201, 162, 74, 0.55);
  box-shadow: 0 0 72px rgba(201, 162, 74, 0.12);
}

.dash-futures-primary-inner {
  padding: clamp(32px, 5vw, 48px);
}

.dash-futures-primary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-4, 24px);
  margin-bottom: var(--s-5, 40px);
  padding-bottom: var(--s-4, 24px);
  border-bottom: 1px solid var(--line, rgba(245, 245, 244, 0.1));
}

.dash-futures-kicker {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--gold-light, #e8c97a);
  margin: 0 0 8px;
  line-height: 1.0;
}

.dash-futures-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.dash-futures-lead {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin: 0;
  max-width: 42ch;
}

.dash-futures-locked-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-5, 40px);
  margin-bottom: var(--s-5, 40px);
}

.dash-futures-active-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted, rgba(245, 245, 244, 0.68));
  margin: 0 0 var(--s-5, 40px);
  max-width: 58ch;
}

.dash-futures-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.dash-futures-primary-actions .btn-gold--lg {
  flex: 1 1 280px;
  min-width: 240px;
}

.btn-gold--lg {
  padding: 18px 36px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.btn-ghost--lg {
  padding: 16px 28px;
  font-size: 13px;
}

/* Futures + Options — horizontal pair */
.dash-verticals-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4, 24px);
  margin-bottom: var(--s-5, 40px);
}

.dash-vertical-card {
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 6px;
  background: linear-gradient(165deg, #161616 0%, #0e0e0e 100%);
  transition: border-color 300ms ease;
}

.dash-vertical-card[data-state="active"] {
  border-color: rgba(201, 162, 74, 0.45);
}

.dash-vertical-card-inner {
  padding: clamp(24px, 4vw, 36px);
}

.dash-vertical-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--s-4, 24px);
  padding-bottom: var(--s-4, 24px);
  border-bottom: 1px solid var(--line, rgba(245, 245, 244, 0.1));
}

.dash-vertical-card-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 8px;
  color: rgba(245, 245, 244, 0.65);
}

.dash-vertical-card-title--sm,
.dash-vertical-card-title--lg {
  font-size: clamp(15px, 1.8vw, 18px);
}

.dash-vertical-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Options — compact secondary */
.dash-options-secondary {
  border: 1px solid var(--line, rgba(245, 245, 244, 0.1));
  border-radius: 4px;
  background: var(--bg-elevated, #131313);
}

.dash-options-secondary--active {
  border-color: rgba(201, 162, 74, 0.3);
}

.dash-options-secondary-inner {
  padding: var(--s-4, 24px) var(--s-5, 40px);
}

@media (max-width: 680px) {
  .dash-verticals-row {
    grid-template-columns: 1fr;
  }
}

.dash-options-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-3, 16px);
  margin-bottom: var(--s-3, 16px);
}

.dash-options-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint, rgba(245, 245, 244, 0.38));
  margin: 0 0 8px;
}

.dash-options-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.dash-options-tagline {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.5));
  margin: 0;
}

.dash-vertical-badge--sm {
  font-size: 9px;
  padding: 5px 10px;
}

.dash-vertical-price--sm {
  font-size: 26px;
}

.dash-options-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--s-3, 16px);
}

.dash-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4, 24px);
  align-items: stretch;
}

.dash-vertical {
  position: relative;
  min-height: 480px;
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-radius: 4px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.dash-vertical--locked {
  border-color: var(--gold-line, rgba(201, 162, 74, 0.15));
}

.dash-vertical--locked:hover {
  border-color: rgba(201, 162, 74, 0.35);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.dash-vertical--active {
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 0 56px rgba(201, 162, 74, 0.1);
}

.dash-vertical-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--s-5, 40px);
}

.dash-vertical-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-4, 24px);
}

.dash-vertical-num {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-faint, rgba(245, 245, 244, 0.32));
}

.dash-vertical-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong, rgba(245, 245, 244, 0.24));
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
}

.dash-vertical-badge--active {
  color: #0a0a0a;
  background: linear-gradient(135deg, #e8c97a, #c9a24a);
  border-color: transparent;
}

.dash-vertical-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 var(--s-2, 8px);
}

.dash-vertical-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light, #e8c97a);
  margin: 0 0 var(--s-4, 24px);
}

.dash-vertical-price {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--fg, #f5f5f4);
  margin: 0 0 4px;
}

.dash-vertical-price span {
  font-size: 16px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.55));
}

.dash-vertical-price-sub {
  font-size: 14px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.55));
  margin: 0 0 var(--s-3, 16px);
}

.dash-vertical-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted, rgba(245, 245, 244, 0.65));
  margin: 0 0 var(--s-3, 16px);
  flex: 1;
}

.dash-vertical-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4, 24px);
}

.dash-vertical-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.6));
  line-height: 1.45;
}

.dash-vertical-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c9a24a);
}

.dash-vertical-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: auto;
}

.dash-vertical-actions .btn-gold,
.dash-vertical-actions .btn-ghost {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.dash-upgrade-nudge {
  margin-bottom: var(--s-4, 24px);
  padding: var(--s-3, 16px) var(--s-4, 20px);
  background: rgba(201, 162, 74, 0.08);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: 4px;
}

.dash-upgrade-nudge-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted, rgba(245, 245, 244, 0.72));
  margin: 0 0 12px;
}

.dash-upgrade-nudge-text strong {
  color: var(--gold-light, #e8c97a);
  font-weight: 500;
}

.dash-upgrade-nudge .btn-ghost {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Dashboard — live schedule strip */
.dash-schedule-section {
  margin: var(--s-5, 40px) 0 0;
  padding: 28px 32px;
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--line, rgba(245, 245, 244, 0.12));
  border-left: 2px solid rgba(201, 162, 74, 0.45);
  border-radius: 2px;
}

.dash-schedule-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint, rgba(245, 245, 244, 0.38));
}

.dash-schedule-title {
  margin: 0 0 10px;
  font-family: var(--font-body, "Inter Tight", sans-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg, #f5f5f4);
}

.dash-schedule-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  white-space: pre-wrap;
}

.dash-schedule-body:empty::before {
  content: 'Schedule will be posted soon.';
  color: var(--fg-faint, rgba(245, 245, 244, 0.38));
}

.dash-schedule-updated {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--fg-faint, rgba(245, 245, 244, 0.35));
}

.dash-hub-footer {
  margin-top: var(--s-5, 40px);
  font-size: 13px;
  color: var(--fg-faint, rgba(245, 245, 244, 0.4));
  text-align: center;
}

.dash-hub-footer a {
  color: var(--gold-light, #e8c97a);
}

.dash-support {
  margin-top: var(--s-5, 40px);
  padding-top: var(--s-4, 24px);
  border-top: 1px solid var(--gold-line, rgba(201, 162, 74, 0.18));
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  text-align: center;
}

.dash-support a {
  color: var(--gold-light, #e8c97a);
  text-decoration: none;
}

.dash-support a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .dash-futures-primary-head {
    flex-direction: column;
  }

  .dash-futures-locked-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4, 24px);
  }

  .dash-futures-primary-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-futures-primary-actions .btn-gold--lg,
  .dash-futures-primary-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .dash-hub-grid {
    grid-template-columns: 1fr;
  }

  .dash-vertical {
    min-height: auto;
  }
}

.dash-welcome {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--s-6, 64px) var(--s-5, 40px);
  text-align: center;
}

.dash-welcome h2 {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 var(--s-3, 16px);
}

.dash-welcome > p {
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin: 0 0 var(--s-5, 40px);
  font-size: 16px;
}

.dash-quick-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3, 16px);
  align-items: center;
}

.dash-quick-links .btn-gold,
.dash-quick-links .btn-ghost {
  min-width: 280px;
  text-align: center;
}

.options-ack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4, 24px);
  text-align: left;
}

.options-ack-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--s-3, 16px);
  color: var(--fg-muted, rgba(245, 245, 244, 0.72));
  font-size: 14px;
  line-height: 1.55;
}

.options-ack-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-light, #e8c97a);
}

.options-ack-note {
  font-size: 13px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.55));
  line-height: 1.55;
  margin: 0;
}

.options-ack-block {
  max-width: 640px;
}

.options-ack-list a {
  color: #e8c97a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.options-ack-list a:hover { color: #f5d98a; }

/* Account page — upgrade & product offers */
.account-main {
  padding-top: var(--s-5, 40px);
}

.account-email {
  font-size: 15px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
}

.account-upgrade-hero {
  margin-bottom: var(--s-6, 64px);
  padding: var(--s-5, 40px);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.22));
  border-radius: 4px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201, 162, 74, 0.14), transparent 62%),
    var(--bg-elevated, #131313);
}

.account-upgrade-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #c9a24a);
  margin: 0 0 var(--s-3, 16px);
}

.account-upgrade-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--s-3, 16px);
  max-width: 22ch;
}

.account-upgrade-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted, rgba(245, 245, 244, 0.68));
  max-width: 58ch;
  margin: 0;
}

.account-upgrade-lead strong {
  color: var(--gold-light, #e8c97a);
  font-weight: 500;
}

.account-section {
  margin-bottom: var(--s-6, 64px);
}

.account-section-head {
  margin-bottom: var(--s-5, 40px);
}

.account-section-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 var(--s-2, 8px);
}

.account-section-sub {
  font-size: 15px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin: 0;
  max-width: 52ch;
}

.account-product-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-product-grid .product-card {
  min-height: 420px;
  border-color: var(--gold-line, rgba(201, 162, 74, 0.18));
}

.account-product-grid .product-card--featured {
  border-color: rgba(201, 162, 74, 0.38);
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201, 162, 74, 0.1), transparent 55%),
    var(--bg-elevated, #131313);
}

.account-product-grid .product-card--locked {
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.06);
}

.account-product-grid .product-card--locked:hover {
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 162, 74, 0.08);
}

.account-product-grid .product-card--active {
  border-color: rgba(201, 162, 74, 0.5);
  box-shadow: 0 0 56px rgba(201, 162, 74, 0.12);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: var(--s-3, 16px) 0 0;
}

.product-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.65));
  line-height: 1.45;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c9a24a);
}

.product-actions--stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.product-actions--stacked .btn-gold,
.product-actions--stacked .btn-ghost {
  width: 100%;
  text-align: center;
}

.account-subs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-billing-panel {
  margin-bottom: var(--s-5, 40px);
  padding: var(--s-4, 24px) var(--s-5, 40px);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.28));
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.08), rgba(201, 162, 74, 0.02)),
    var(--bg-elevated, #131313);
}

.account-billing-panel-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #e8e8e8;
  margin: 0 0 0.5rem;
}

.account-billing-panel-desc {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.account-settings-link {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #1a1a1a;
  font-size: 0.85rem;
}

.account-settings-link a {
  color: var(--strike, #c9a24a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-settings-link a:hover {
  color: #e8c97a;
}

.account-bundle {
  margin-top: var(--s-5, 40px);
}

.account-bundle-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4, 24px);
  padding: var(--s-5, 40px);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.28));
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.1), rgba(201, 162, 74, 0.02)),
    var(--bg-elevated, #131313);
}

.account-bundle-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 8px;
}

.account-bundle-desc {
  font-size: 14px;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin: 0;
  max-width: 40ch;
}

.account-bundle-side {
  text-align: right;
}

@media (max-width: 720px) {
  .product-grid,
  .account-product-grid {
    grid-template-columns: 1fr;
  }

  .account-bundle-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-bundle-side {
    text-align: left;
    width: 100%;
  }

  .account-bundle-side .btn-gold {
    width: 100%;
    text-align: center;
  }
}

/* Admin console */
.admin-gate {
  max-width: 420px;
  margin: 0 auto;
}

.admin-gate .auth-card {
  text-align: left;
}

.admin-panel {
  display: none;
}

.admin-panel.is-visible {
  display: block;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3, 16px);
  margin-bottom: var(--s-5, 40px);
}

.admin-stat {
  padding: var(--s-4, 24px);
  background: var(--bg-elevated, #131313);
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.18));
  border-radius: 4px;
}

.admin-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin-bottom: 8px;
}

.admin-stat-value {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light, #e8c97a);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-4, 24px);
  margin-bottom: var(--s-4, 24px);
}

.admin-add-form {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr auto;
  gap: 12px;
  align-items: end;
  flex: 1;
  min-width: 280px;
}

.admin-add-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.62));
  margin-bottom: 6px;
}

.admin-add-form input,
.admin-add-form select,
.admin-add-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-strong, rgba(245, 245, 244, 0.24));
  border-radius: 4px;
  color: var(--fg, #f5f5f4);
  font-family: var(--font-body, "Inter Tight", sans-serif);
  font-size: 14px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gold-line, rgba(201, 162, 74, 0.18));
  border-radius: 4px;
  background: var(--bg-elevated, #131313);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line, rgba(245, 245, 244, 0.12));
}

.admin-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted, rgba(245, 245, 244, 0.55));
  background: rgba(0, 0, 0, 0.25);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table td {
  color: var(--fg-muted, rgba(245, 245, 244, 0.75));
  vertical-align: top;
}

.admin-table .cell-email {
  color: var(--fg, #f5f5f4);
  font-weight: 500;
}

.admin-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-badge--active {
  background: rgba(34, 120, 60, 0.25);
  color: #9fdf9f;
  border: 1px solid rgba(34, 120, 60, 0.4);
}

.admin-badge--canceled {
  background: rgba(120, 40, 40, 0.25);
  color: #f0a0a0;
  border: 1px solid rgba(120, 40, 40, 0.4);
}

.admin-btn-delete {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0a0a0;
  background: transparent;
  border: 1px solid rgba(200, 80, 80, 0.45);
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body, "Inter Tight", sans-serif);
}

.admin-btn-delete:hover {
  background: rgba(200, 80, 80, 0.15);
}

.admin-btn-delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-hint {
  font-size: 12px;
  color: var(--fg-faint, rgba(245, 245, 244, 0.4));
  margin-top: var(--s-3, 16px);
}

@media (max-width: 900px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-add-form {
    grid-template-columns: 1fr;
  }
}
