:root { color-scheme: light; font-family: Inter, "Segoe UI", system-ui, sans-serif; color: #22231f; background: #f4f3ed; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
button, a { font: inherit; }
#app { width: min(1040px, calc(100% - 32px)); margin: 0 auto; padding: 36px 0 64px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 760; font-size: 19px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: #7658c9; }
.profile { color: #66665e; font-size: 14px; }
.hero, .panel { background: #fff; border: 1px solid #deddd5; border-radius: 20px; padding: clamp(22px, 4vw, 36px); box-shadow: 0 12px 34px rgba(35, 34, 28, .05); }
.hero { max-width: 680px; margin: 9vh auto 0; }
.eyebrow { color: #7658c9; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1 { font-size: clamp(32px, 6vw, 54px); line-height: 1.04; margin: 10px 0 14px; }
h2 { margin: 0; font-size: 22px; }
p { color: #66665e; line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
button, .button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 11px 18px; background: #7658c9; color: #fff; text-decoration: none; font-weight: 700; cursor: pointer; }
.secondary { color: #34332e; background: #eeece4; }
button:disabled { opacity: .6; cursor: wait; }
.dashboard { display: grid; grid-template-columns: 270px 1fr; gap: 20px; }
.calendar-list { display: grid; gap: 10px; margin-top: 20px; }
.calendar-row { display: grid; grid-template-columns: 10px 1fr; gap: 10px; align-items: start; padding: 10px 0; }
.swatch { width: 10px; height: 10px; margin-top: 5px; border-radius: 50%; background: #7658c9; }
.calendar-row strong { display: block; font-size: 14px; }
.calendar-row span { color: #77766e; font-size: 12px; }
.agenda-head { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.sync { color: #77766e; font-size: 12px; margin-top: 5px; }
.events { display: grid; gap: 12px; margin-top: 26px; }
.event { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid #ebe9e1; }
.event time { color: #7658c9; font-size: 13px; font-weight: 750; }
.event strong { display: block; }
.event p { margin: 4px 0 0; font-size: 13px; }
.empty { margin-top: 24px; padding: 26px; border: 1px dashed #ccc9bd; border-radius: 14px; text-align: center; color: #77766e; }
.notice { padding: 12px 14px; background: #f1edff; border-radius: 12px; color: #584394; font-size: 13px; }
.sign-in-note { margin: 22px 0 0; color: #88857b; font-size: 12px; }
.error { color: #a33a31; }
@media (max-width: 760px) { .dashboard { grid-template-columns: 1fr; } .event { grid-template-columns: 88px 1fr; } }
