*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #1d5949; --green-dark: #142a24; --mint: #e8f2ee;
  --orange: #e6b875; --muted: #6b7280; --border: #e5e7eb;
  --bg: #f6f4ed;
}
body { font-family: 'DM Sans', sans-serif; background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }
header {
  background: var(--green-dark); color: white; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: white; }
.brand-mark { width: 38px; height: 38px; background: var(--orange); color: var(--green-dark); border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand-sub { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.header-right a { color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; }
.header-right a:hover { color: white; }
main { flex: 1; padding: 48px 32px; max-width: 900px; margin: 0 auto; width: 100%; }
h1 { font-size: 30px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 6px; color: var(--green-dark); }
.sub { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.workspace-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.ws-card {
  background: white; border-radius: 16px; padding: 24px;
  text-decoration: none; color: inherit;
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.ws-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); border-color: transparent; transform: translateY(-2px); }
.ws-card.disabled { opacity: .6; cursor: default; pointer-events: none; }
.ws-top { display: flex; align-items: center; justify-content: space-between; }
.ws-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 20px; font-weight: 800; color: white; }
.ws-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 9px; border-radius: 99px; }
.live   .ws-badge { background: #dcfce7; color: #166534; }
.soon   .ws-badge { background: #fef3c7; color: #92400e; }
.ws-name { font-size: 16px; font-weight: 700; color: var(--green-dark); letter-spacing: -.02em; }
.ws-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.ws-arrow { font-size: 12px; font-weight: 600; color: var(--green); margin-top: auto; }
.ws-card.disabled .ws-arrow { color: var(--muted); }
.c-care .ws-icon   { background: #1d5949; }
.c-retail .ws-icon { background: #b45309; }
.c-ledger .ws-icon { background: #1e40af; }
.c-estate .ws-icon { background: #7c3aed; }
.c-studio .ws-icon { background: #be185d; }
footer { text-align: center; padding: 24px; font-size: 12px; color: var(--muted); }
footer a { color: var(--muted); }
@media (max-width: 600px) { main { padding: 28px 16px; } h1 { font-size: 22px; } }
