:root {
  --edit-black: #000;
  --edit-near-black: #151515;
  --edit-dark-grey: #303030;
  --edit-mid-grey: #737373;
  --edit-border: #dedede;
  --edit-light-grey: #f5f5f5;
  --edit-white: #fff;
  --edit-radius: 12px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--edit-near-black); background: var(--edit-light-grey); }
a { color: inherit; }
.edit-shell { min-height: 100vh; }
.edit-sidebar { width: 252px; min-height: 100vh; background: var(--edit-black); color: var(--edit-white); position: fixed; inset: 0 auto 0 0; padding: 28px 20px; }
.edit-brand { display: block; width: 140px; margin: 0 auto 36px; filter: invert(1); mix-blend-mode: screen; }
.edit-nav a { display: block; padding: 12px 14px; margin: 4px 0; border-radius: 8px; text-decoration: none; color: #d6d6d6; }
.edit-nav a:hover, .edit-nav a.active { background: #222; color: #fff; }
.edit-main { margin-left: 252px; min-height: 100vh; }
.edit-topbar { height: 72px; background: #fff; border-bottom: 1px solid var(--edit-border); display: flex; align-items: center; justify-content: space-between; padding: 0 32px; }
.edit-content { padding: 32px; max-width: 1500px; margin: 0 auto; }
.edit-card { background: #fff; border: 1px solid var(--edit-border); border-radius: var(--edit-radius); padding: 24px; }
.edit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.edit-stat { font-size: 30px; font-weight: 650; margin: 8px 0 2px; }
.edit-muted { color: var(--edit-mid-grey); }
.edit-button { background: #000; color: #fff; border: 1px solid #000; padding: 12px 18px; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.edit-button.secondary { background: #fff; color: #000; border-color: var(--edit-border); }
.edit-hero { background: #fff; min-height: 100vh; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 60px; padding: 80px max(6vw, 32px); }
.edit-hero h1 { font-size: clamp(44px, 6vw, 86px); letter-spacing: -.055em; line-height: .95; margin: 0 0 28px; }
.edit-hero p { font-size: 20px; color: var(--edit-mid-grey); line-height: 1.6; max-width: 680px; }
.edit-logo-large { width: min(100%, 500px); }
@media (max-width: 900px) {
  .edit-sidebar { display: none; }
  .edit-main { margin-left: 0; }
  .edit-grid { grid-template-columns: 1fr 1fr; }
  .edit-hero { grid-template-columns: 1fr; padding-top: 40px; }
}
@media (max-width: 560px) { .edit-grid { grid-template-columns: 1fr; } .edit-content { padding: 18px; } }
