:root {
  --ink: #18243b;
  --ink-2: #31405d;
  --muted: #6d7890;
  --blue: #5367d9;
  --blue-dark: #3d4fb6;
  --purple: #7c5ce5;
  --aqua: #55c8c5;
  --cream: #f7f7fb;
  --white: #fff;
  --line: #e5e8f1;
  --soft: #eef0ff;
  --success: #17866d;
  --danger: #b42318;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(38, 49, 91, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow-wide {
  max-width: 860px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 232, 241, 0.85);
  backdrop-filter: blur(15px);
}
.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.brand img {
  width: 42px;
  height: 42px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a,
.nav-button {
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-2);
  border: 0;
  background: none;
  cursor: pointer;
  padding: 9px 0;
}
.site-nav a:hover,
.nav-button:hover {
  color: var(--blue);
}
.site-nav a[href="/register"] {
  background: var(--ink);
  color: #fff;
  padding: 10px 17px;
  border-radius: 12px;
}
.site-nav form {
  display: inline-flex;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(124, 92, 229, 0.16),
      transparent 31%
    ),
    radial-gradient(
      circle at 5% 80%,
      rgba(85, 200, 197, 0.16),
      transparent 29%
    ),
    linear-gradient(180deg, #fafaff 0%, #fff 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(83, 103, 217, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 103, 217, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 75px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #dbe0ff;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 18px 0 24px;
}
.hero h1 span {
  color: var(--blue);
}
.lead {
  font-size: 1.17rem;
  color: var(--muted);
  max-width: 710px;
}
.lead-small {
  font-size: 1.08rem;
  color: var(--muted);
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 13px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(83, 103, 217, 0.23);
}
.button.primary:hover {
  background: var(--blue-dark);
}
.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.button.full {
  width: 100%;
}
.hero-checks {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 29px;
  color: var(--ink-2);
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8fbf6;
  color: var(--success);
  font-weight: 950;
  font-size: 0.75rem;
}
.timeline-preview {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(214, 219, 235, 0.9);
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 35px 90px rgba(52, 62, 110, 0.18);
  transform: rotate(1deg);
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.preview-top div {
  display: grid;
}
.preview-top small {
  color: var(--muted);
}
.preview-top strong {
  font-size: 1.1rem;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  background: #eafaf4;
  color: var(--success);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
}
.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25b18d;
  box-shadow: 0 0 0 4px rgba(37, 177, 141, 0.13);
}
.timeline-line {
  position: relative;
  display: grid;
  gap: 4px;
  padding-top: 13px;
}
.timeline-line:before {
  content: "";
  position: absolute;
  left: 66px;
  top: 38px;
  bottom: 39px;
  width: 2px;
  background: #e0e4ef;
}
.timeline-line article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 15px 13px;
  border-radius: 16px;
}
.timeline-line article:after {
  content: "";
  position: absolute;
  left: 61px;
  top: 27px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aeb6cb;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #d8ddea;
}
.timeline-line article.active {
  background: var(--soft);
}
.timeline-line article.active:after {
  background: var(--blue);
}
.timeline-line time {
  font-weight: 900;
  color: var(--blue);
}
.timeline-line div {
  display: grid;
}
.timeline-line span {
  color: var(--muted);
  font-size: 0.86rem;
}
.section {
  padding: 100px 0;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 44px;
}
.section-heading.centered {
  text-align: center;
  margin: 0 auto 48px;
}
.section-heading h2,
.split-grid h2,
.cta-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 12px 0;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.feature-card h3 {
  font-size: 1.24rem;
  margin: 16px 0 8px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
}
.feature-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}
.contrast-section {
  background: var(--cream);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}
.update-card {
  padding: 31px;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}
.update-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 850;
}
.update-card > p {
  color: #cbd2e2;
}
.mini-event {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mini-event span {
  color: #aebaf1;
  font-weight: 900;
}
.mini-event em {
  font-style: normal;
  background: #e2fbf2;
  color: #14775f;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
}
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}
.popular {
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card h3 {
  font-size: 1.25rem;
  margin: 0;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 18px 0;
}
.price strong {
  font-size: 2.55rem;
  letter-spacing: -0.055em;
}
.price span {
  color: var(--muted);
  margin-bottom: 8px;
}
.price-card ul {
  padding: 0;
  list-style: none;
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
  flex: 1;
}
.price-card li:before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  margin-right: 9px;
}
.faq-section {
  background: var(--cream);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 19px 22px;
}
.faq-list summary {
  font-weight: 850;
  cursor: pointer;
}
.faq-list p {
  color: var(--muted);
  margin-bottom: 4px;
}
.cta-section {
  padding: 0 0 100px;
  background: var(--cream);
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(120deg, var(--ink), #3d4778 68%, #515fc5);
}
.cta-card h2 {
  margin-bottom: 0;
}
.light-button {
  background: #fff;
  color: var(--ink);
}
.ghost-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.page-hero {
  padding: 100px 0 76px;
  background: linear-gradient(180deg, #f8f8ff, #fff);
}
.page-hero.compact {
  padding-bottom: 52px;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 900px;
}
.page-section {
  padding-top: 48px;
}
.soft-section {
  background: var(--cream);
}
.card-list {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag-grid span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-weight: 750;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}
.contact-panel {
  padding: 31px;
  border-radius: 25px;
  background: var(--ink);
  color: #fff;
}
.contact-panel p {
  color: #cbd2e2;
}
.contact-link {
  display: grid;
  text-decoration: none;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-link span {
  color: #aeb8d1;
  font-size: 0.8rem;
}
.contact-note {
  margin-top: 28px;
}
.form-card,
.auth-card,
.placeholder-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}
.form label span,
.form small {
  font-weight: 500;
  color: var(--muted);
}
.form input,
.form textarea {
  width: 100%;
  border: 1px solid #d8ddea;
  border-radius: 12px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.form input:focus,
.form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(83, 103, 217, 0.11);
}
.verification-box {
  padding: 17px;
  border: 1px solid #dfe3f5;
  border-radius: 15px;
  background: #f8f8ff;
}
.verification-box p {
  margin: 0 0 13px;
}
.verification-box span {
  color: var(--muted);
  font-size: 0.88rem;
}
.verification-actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: end;
}
.result,
.error {
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}
.auth-page {
  min-height: calc(100vh - 78px);
  padding: 62px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #333e72 50%, #5b59b9 100%);
}
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: center;
}
.auth-intro {
  color: #fff;
}
.auth-brand {
  color: #fff;
  margin-bottom: 75px;
}
.auth-intro h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 16px 0 22px;
}
.auth-intro > p {
  color: #d6dbee;
  font-size: 1.08rem;
  max-width: 560px;
}
.auth-quote {
  margin-top: 35px;
  padding: 20px;
  border-left: 3px solid var(--aqua);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0 14px 14px 0;
}
.light-list li {
  color: #fff;
}
.auth-card h2 {
  font-size: 2rem;
  margin: 8px 0;
}
.muted,
.auth-switch {
  color: var(--muted);
}
.auth-switch {
  text-align: center;
  margin: 20px 0 0;
}
.auth-switch a {
  color: var(--blue);
  font-weight: 850;
}
.verification-message {
  padding: 14px;
  border-radius: 12px;
  background: var(--soft);
}
.account-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 22px;
}
.profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 27px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
}
.profile-initial {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: grid;
  place-items: center;
  font-size: 0;
  color: transparent;
}
.profile-initial:first-letter {
  font-size: 1.6rem;
  color: #fff;
}
.profile-card small {
  color: #b8c0d3;
}
.profile-card h2,
.profile-card p {
  margin: 2px 0;
}
.placeholder-card h2 {
  margin-top: 10px;
}
.legal-page {
  padding-top: 44px;
}
.legal-shell {
  max-width: 820px;
}
.legal-shell h2 {
  font-size: 1.45rem;
  margin: 38px 0 8px;
}
.legal-shell p,
.legal-shell li {
  color: var(--ink-2);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #fbfbfe;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  padding: 50px 0 32px;
}
.footer-brand {
  margin-bottom: 13px;
}
.footer-grid p {
  color: var(--muted);
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 11px 30px;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .auth-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 50px;
  }
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .auth-brand {
    margin-bottom: 35px;
  }
  .auth-page {
    padding: 45px 0;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a,
  .nav-button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
  }
  .hero {
    padding: 70px 0 80px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
  .form-row,
  .verification-actions {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 32px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: start;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
  .timeline-preview {
    padding: 18px;
  }
  .timeline-line article {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }
  .timeline-line:before {
    left: 57px;
  }
  .timeline-line article:after {
    left: 52px;
  }
}

.verification-heading {
  margin: 0 0 16px;
}

.verification-heading strong,
.verification-heading span {
  display: block;
}

.verification-heading span {
  margin-top: 4px;
  color: var(--muted, #667085);
  font-size: 0.94rem;
}

.verification-result {
  margin: 14px 0 0;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.verification-result[data-state="info"] {
  color: #344054;
  background: #f2f4f7;
  border-color: #d0d5dd;
}

.verification-result[data-state="success"] {
  color: #067647;
  background: #ecfdf3;
  border-color: #abefc6;
}

.verification-result[data-state="warning"] {
  color: #93370d;
  background: #fffaeb;
  border-color: #fedf89;
}

.verification-result[data-state="error"] {
  color: #b42318;
  background: #fef3f2;
  border-color: #fecdca;
}

.result[data-state="success"] {
  color: #067647;
}

.result[data-state="error"] {
  color: #b42318;
}

.button.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.button.is-loading::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: button-spinner 0.65s linear infinite;
}

@keyframes button-spinner {
  to {
    transform: rotate(360deg);
  }
}
/* Keep form controls visually neutral even when their labels are bold. */
.form input,
.form textarea,
.form select {
  font-weight: 400;
}

/* Authenticated dashboard */
.dashboard-hero {
  padding: 64px 0 42px;
  background: linear-gradient(135deg, #f5f7ff 0%, #fff 60%, #f1f7ff 100%);
  border-bottom: 1px solid var(--line);
}
.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.dashboard-heading h1 {
  margin: 10px 0 10px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
}
.dashboard-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.dashboard-section { padding-top: 42px; }
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.dashboard-stat,
.dashboard-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(31, 42, 68, 0.07);
}
.dashboard-stat { padding: 24px; }
.dashboard-stat span,
.dashboard-stat small {
  display: block;
  color: var(--muted);
}
.dashboard-stat strong {
  display: block;
  margin: 8px 0;
  font-size: 2.2rem;
  line-height: 1;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 22px;
  margin-bottom: 22px;
}
.dashboard-panel { padding: 28px; }
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.panel-heading h2,
.dashboard-panel h2 { margin: 7px 0 10px; }
.panel-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf0ff;
  color: #4355c5;
  font-size: 0.78rem;
  font-weight: 800;
}
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.profile-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 18px;
  background: #5367d9;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}
.profile-panel form { width: 100%; margin-top: auto; padding-top: 22px; }
.recent-panel { margin-bottom: 20px; }
.empty-state {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #f8f9fc;
}
.empty-state-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #dcfae6;
  color: #067647;
  font-weight: 900;
}
.empty-state h3 { margin: 0 0 5px; }
.empty-state p { margin: 0; color: var(--muted); }
@media (max-width: 900px) {
  .dashboard-heading { align-items: flex-start; flex-direction: column; }
  .dashboard-stats, .dashboard-grid { grid-template-columns: 1fr; }
}
