:root {
  --ink: #1a1625;
  --ink-2: #3d3553;
  --muted: #817891;
  --line: #e9e3f4;
  --bg: #fdfbff;
  --white: #ffffff;
  --violet: #7c5cfc;
  --violet-2: #5b3fd8;
  --violet-soft: #f0ebff;
  --orange: #ff8c5a;
  --orange-soft: #fff0e8;
  --green: #3fcf8e;
  --green-soft: #e8fbf3;
  --danger: #b42318;
  --danger-soft: #fff1f0;
  --success: #177245;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 8px 26px rgba(70, 45, 150, .08);
  --shadow: 0 24px 70px rgba(70, 45, 150, .14);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Onest, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(124, 92, 252, .14), transparent 36vw),
    radial-gradient(circle at 100% 6%, rgba(255, 140, 90, .13), transparent 28vw),
    radial-gradient(circle at 62% 100%, rgba(63, 207, 142, .08), transparent 28vw),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(124,92,252,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(124,92,252,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

body.authenticated [data-public-section],
body.authenticated [data-auth-section] { display: none !important; }
body.authenticated [data-dashboard-section] { display: block !important; }

body:not(.authenticated) [data-dashboard-section] { display: none !important; }
.hidden { display: none !important; }

button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img, svg { max-width: 100%; }
code { background: var(--violet-soft); color: var(--violet-2); padding: 2px 7px; border-radius: 7px; font-size: .92em; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-large { padding: 82px 0 104px; }
.tinted { background: linear-gradient(180deg, transparent 0%, rgba(240, 235, 255, .55) 50%, transparent 100%); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 300;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.toast {
  position: fixed;
  left: 50%;
  top: 86px;
  z-index: 500;
  transform: translate(-50%, -18px);
  max-width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 750;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--violet-2); }

h1, h2, h3 { font-family: Unbounded, Onest, sans-serif; line-height: 1.08; letter-spacing: -.04em; margin: 0; }
h1 { font-size: clamp(36px, 5vw, 64px); max-width: 800px; }
h2 { font-size: clamp(28px, 3.6vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
p { color: var(--ink-2); line-height: 1.65; margin: 0; }
.lead { font-size: clamp(17px, 1.55vw, 20px); max-width: 620px; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 750;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  box-shadow: 0 16px 34px rgba(91, 63, 216, .30);
}
.btn-primary:hover { box-shadow: 0 20px 46px rgba(91, 63, 216, .40); }
.btn-secondary {
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--violet-soft); color: var(--violet-2); border-color: rgba(124, 92, 252, .35); }
.btn-danger { color: var(--danger); background: var(--danger-soft); border-color: rgba(180,35,24,.18); }
.small-btn { min-height: 42px; padding: 0 18px; }
.btn[disabled] { opacity: .68; cursor: wait; transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(233, 227, 244, .82);
  background: rgba(253, 251, 255, .86);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: Unbounded, Onest, sans-serif; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--violet-soft), var(--orange-soft)); box-shadow: var(--shadow-sm); }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { text-decoration: none; color: var(--muted); font-weight: 650; font-size: 14px; }
.desktop-nav a:hover { color: var(--violet-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 14px; background: white; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 99px; margin: 5px 0; transition: .2s; }
.mobile-menu { display: none; position: fixed; left: 0; right: 0; top: 74px; z-index: 180; background: rgba(253,251,255,.96); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: grid; gap: 12px; padding: 18px 0 22px; }
.mobile-menu a { text-decoration: none; color: var(--ink-2); font-weight: 700; padding: 8px 0; }
.mobile-menu button { width: 100%; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--violet-2); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
.eyebrow span { width: 28px; height: 2px; background: var(--violet); border-radius: 999px; }
.eyebrow.plain { color: var(--muted); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 64px; align-items: center; }
.hero-copy { display: grid; gap: 24px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.phone-demo { position: relative; min-height: 620px; display: grid; place-items: center; }
.phone-glow { position: absolute; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle, rgba(124,92,252,.23), transparent 68%); filter: blur(10px); }
.phone-shell { position: relative; width: 310px; border: 10px solid var(--ink); border-radius: 42px; background: var(--ink); box-shadow: 0 30px 80px rgba(26,22,37,.26); }
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 92px; height: 23px; border-radius: 0 0 16px 16px; background: var(--ink); z-index: 3; }
.phone-screen { min-height: 560px; overflow: hidden; border-radius: 31px; background: linear-gradient(180deg, #fff, #f8f3ff); padding: 18px; }
.phone-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; margin: 2px 6px 28px; }
.phone-content { display: grid; gap: 14px; }
.phone-content h2 { font-size: 25px; }
.phone-muted { color: var(--muted); font-size: 13px; }
.search-pill { border-radius: 999px; background: var(--violet-soft); color: var(--violet-2); padding: 13px 14px; font-weight: 800; }
.walker-mini { display: grid; grid-template-columns: 1fr auto; gap: 5px 10px; padding: 14px; border-radius: 18px; background: white; border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.walker-mini span { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }
.walker-mini strong { color: var(--violet-2); font-size: 13px; }
.walker-mini.peach { background: #fff7f2; }
.walker-mini.green { background: #f1fff8; }
.floating-card { position: absolute; right: -16px; bottom: 92px; width: 230px; padding: 16px; border-radius: 22px; background: white; border: 1.5px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 5px; }
.floating-card span { color: var(--muted); font-size: 13px; line-height: 1.4; }

.section-head { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 36px; align-items: end; margin-bottom: 32px; }
.section-head h2 { margin-top: 10px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.82); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.card.compact { padding: 23px; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 17px; background: var(--violet-soft); margin-bottom: 18px; }
.card-icon.orange { background: var(--orange-soft); }
.card-icon.green { background: var(--green-soft); }
.card h3 { margin-bottom: 12px; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.split-copy h2 { margin: 10px 0 18px; }
.role-panels { display: grid; gap: 16px; }
.role-panel { padding: 28px; border-radius: var(--radius); border: 1.5px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,235,255,.74)); }
.walker-panel { background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,240,232,.82)); }
.role-panel ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.role-panel li { display: flex; gap: 10px; color: var(--ink-2); font-weight: 650; line-height: 1.5; }
.role-panel li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--violet); color: white; font-size: 12px; font-weight: 900; margin-top: 1px; }
.walker-panel li::before { background: var(--orange); }


.section-intro { padding: 54px 0 36px; }
.intro-shell {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  padding: 56px 58px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.90), rgba(248,244,255,.82));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
}
.intro-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253,251,255,.94) 0%, rgba(253,251,255,.86) 42%, rgba(253,251,255,.45) 76%, rgba(253,251,255,.16) 100%);
  z-index: -1;
}
.intro-copy { position: relative; z-index: 2; max-width: 760px; }
.intro-copy h1 { color: var(--ink); max-width: 720px; }

.section-form { padding-top: 34px; }
.auth-grid { display: grid; grid-template-columns: minmax(0, 720px); justify-content: center; gap: 38px; align-items: start; padding: 52px; border: 1.5px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(240,235,255,.98), rgba(255,248,244,.86) 55%, rgba(232,251,243,.86)); box-shadow: var(--shadow); }
.auth-copy h2 { margin: 10px 0 18px; }
.note-card { margin-top: 28px; display: grid; gap: 8px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.74); border: 1.5px solid var(--line); }
.note-card strong { font-family: Unbounded, Onest, sans-serif; font-size: 14px; }
.note-card span { color: var(--muted); line-height: 1.5; font-size: 14px; }
.form-card { background: var(--white); border: 1.5px solid var(--line); border-radius: 30px; padding: 26px; box-shadow: var(--shadow-sm); }
.form-switch { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 6px; border-radius: 999px; background: var(--violet-soft); margin-bottom: 24px; }
.role-tab { border: 0; border-radius: 999px; min-height: 44px; background: transparent; color: var(--muted); font-weight: 800; transition: .18s; }
.role-tab.active { background: var(--white); color: var(--violet-2); box-shadow: 0 6px 18px rgba(91,63,216,.12); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field span, .check-field span { color: var(--muted); font-size: 12px; line-height: 1.35; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 15px; background: var(--bg); color: var(--ink); outline: none; transition: .18s; }
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,92,252,.13); background: white; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); background: var(--danger-soft); }
.check-field { margin-top: 16px; display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.check-field input { width: 18px; height: 18px; accent-color: var(--violet); margin-top: 1px; }
.check-field span { text-transform: none; letter-spacing: 0; font-weight: 650; color: var(--ink-2); }
.submit-btn { width: 100%; margin-top: 20px; border: 0; }
.form-status { min-height: 22px; margin-top: 14px; font-weight: 750; font-size: 14px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.form-status.demo, .form-status.info { color: var(--violet-2); }
.auth-link { display: block; margin: 14px auto 0; color: var(--violet-2); font-weight: 800; }
.reset-copy { display: grid; gap: 10px; margin-bottom: 18px; }
.reset-copy h3 { font-size: 24px; }
.reset-copy p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.dashboard-section { padding: 48px 0 88px; }
.dashboard-shell { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 24px; align-items: start; }
.dashboard-sidebar { position: sticky; top: 92px; border: 1.5px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-sm); padding: 18px; }
.dashboard-user { display: flex; gap: 12px; align-items: center; padding: 10px; margin-bottom: 12px; }
.avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px; background: var(--violet-soft); }
.dashboard-user strong { display: block; line-height: 1.25; }
.dashboard-user span:last-child { color: var(--muted); font-size: 13px; }
.dashboard-nav { display: grid; gap: 8px; }
.dashboard-nav button { width: 100%; min-height: 44px; border: 0; border-radius: 16px; background: transparent; text-align: left; padding: 0 14px; color: var(--ink-2); font-weight: 750; }
.dashboard-nav button.active { background: var(--violet-soft); color: var(--violet-2); }
.logout-btn { width: 100%; margin-top: 14px; }
.dashboard-content { min-width: 0; border: 1.5px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.84); box-shadow: var(--shadow); padding: 30px; }
.dashboard-topline { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 22px; }
.dashboard-topline h2 { margin-top: 8px; }
.refresh-btn { min-height: 44px; padding: 0 18px; }
.dashboard-panel { display: none; }
.dashboard-panel.active { display: block; }
.dashboard-alert { display: none; margin-bottom: 18px; padding: 13px 16px; border-radius: 16px; font-weight: 700; }
.dashboard-alert.show { display: block; }
.dashboard-alert.success { color: var(--success); background: var(--green-soft); }
.dashboard-alert.error { color: var(--danger); background: var(--danger-soft); }
.dashboard-alert.info { color: var(--violet-2); background: var(--violet-soft); }
.panel-grid { display: grid; gap: 18px; }
.panel-card { border: 1.5px solid var(--line); border-radius: 24px; background: var(--white); padding: 22px; box-shadow: var(--shadow-sm); }
.panel-card h3 { margin-bottom: 12px; font-size: 23px; }
.panel-card + .panel-card { margin-top: 16px; }
.dashboard-form { display: grid; gap: 14px; }
.dashboard-form .form-grid { margin-top: 4px; }
.list { display: grid; gap: 14px; }
.list-empty { padding: 22px; border: 1.5px dashed var(--line); border-radius: 20px; color: var(--muted); background: rgba(240,235,255,.25); }
.item-card { display: grid; gap: 12px; border: 1.5px solid var(--line); border-radius: 22px; padding: 18px; background: var(--bg); }
.item-head { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.item-title { display: grid; gap: 5px; }
.item-title strong { font-size: 18px; }
.item-title span { color: var(--muted); font-size: 13px; }
.badge { display: inline-flex; align-items: center; min-height: 28px; border-radius: 999px; padding: 0 10px; font-size: 12px; font-weight: 800; white-space: nowrap; background: var(--violet-soft); color: var(--violet-2); }
.badge.open { background: var(--green-soft); color: var(--success); }
.badge.assigned { background: var(--violet-soft); color: var(--violet-2); }
.badge.completed { background: #eef1f6; color: #4d5768; }
.badge.cancelled { background: var(--danger-soft); color: var(--danger); }
.meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.meta-grid div { padding: 10px 12px; border-radius: 14px; background: white; border: 1px solid var(--line); }
.meta-grid span { display: block; color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.item-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.inline-form { display: grid; gap: 10px; margin-top: 8px; }
.message-thread { display: grid; gap: 10px; max-height: 320px; overflow: auto; padding-right: 4px; }
.message { max-width: 78%; padding: 12px 14px; border-radius: 18px; background: var(--violet-soft); color: var(--ink-2); }
.message.own { justify-self: end; background: var(--green-soft); }
.message small { display: block; color: var(--muted); margin-top: 4px; }
.message-picker { margin-bottom: 14px; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-brand .brand-mark { width: 36px; height: 36px; border-radius: 13px; }
.site-footer p { color: var(--muted); font-size: 13px; margin-top: 8px; }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-links a, .link-button { border: 0; background: transparent; padding: 0; color: var(--muted); text-decoration: none; font-weight: 650; font-size: 14px; }
.footer-links a:hover, .link-button:hover { color: var(--violet-2); }

.privacy-dialog { width: min(620px, calc(100% - 32px)); border: 1.5px solid var(--line); border-radius: 26px; padding: 30px; box-shadow: var(--shadow); }
.privacy-dialog::backdrop { background: rgba(26,22,37,.36); backdrop-filter: blur(4px); }
.privacy-dialog h2 { font-size: 26px; margin-bottom: 14px; }
.privacy-dialog p + p { margin-top: 12px; }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; border-radius: 999px; border: 0; background: var(--violet-soft); color: var(--violet-2); font-size: 24px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .58s ease, transform .58s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 360px; gap: 42px; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .floating-card { right: -6px; }
  .dashboard-shell { grid-template-columns: 235px minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .section-intro { padding: 34px 0 24px; }
  .intro-shell { min-height: 340px; padding: 42px 34px 168px; }
  .intro-copy { max-width: 100%; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .section { padding: 70px 0; }
  .desktop-nav, .nav-actions .small-btn { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { justify-items: center; }
  .lead { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .phone-demo { min-height: 545px; }
  .phone-shell { width: 286px; }
  .phone-screen { min-height: 520px; }
  .section-head { display: grid; gap: 18px; align-items: start; }
  .cards.three { grid-template-columns: 1fr; }
  .split-grid, .auth-grid { grid-template-columns: 1fr; }
  .auth-grid { padding: 34px; }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .dashboard-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-intro { padding: 24px 0 18px; }
  .intro-shell { min-height: 300px; padding: 28px 22px 148px; border-radius: 28px; }
  .intro-copy h1 { max-width: 100%; }
  .container { width: calc(100% - 28px); }
  .section-large { padding: 48px 0 70px; }
  .section { padding: 62px 0; }
  h1 { font-size: clamp(34px, 12vw, 48px); }
  h2 { font-size: clamp(27px, 9vw, 38px); }
  .btn { width: 100%; padding-inline: 18px; }
  .hero-buttons { width: 100%; }
  .phone-demo { min-height: auto; padding-top: 12px; }
  .phone-glow, .floating-card { display: none; }
  .phone-shell { width: min(280px, 100%); }
  .phone-screen { min-height: 505px; }
  .cards.four { grid-template-columns: 1fr; }
  .card, .role-panel { padding: 24px; }
  .auth-grid { padding: 22px; border-radius: 28px; }
  .form-card { padding: 18px; border-radius: 24px; }
  .form-switch { grid-template-columns: 1fr; border-radius: 22px; }
  .form-grid, .meta-grid { grid-template-columns: 1fr; }
  .dashboard-content { padding: 20px; border-radius: 26px; }
  .dashboard-topline { display: grid; }
  .dashboard-nav { grid-template-columns: 1fr; }
  .item-head { display: grid; }
  .item-actions .btn { width: 100%; }
  .message { max-width: 92%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .mobile-menu { top: 74px; }
}
