/* ================================================================
   Moffitt Cancer Center — Valet Operations System
   Shared stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #b30000;
  --red-dark:   #8f0000;
  --red-light:  #fdf2f2;
  --navy:       #1a1f36;
  --navy-light: #252b47;
  --bg:         #f0f2f7;
  --white:      #ffffff;
  --border:     #e3e6ef;
  --text:       #2d3748;
  --muted:      #718096;
  --green:      #276749;
  --green-bg:   #c6f6d5;
  --amber:      #744210;
  --amber-bg:   #fefcbf;
  --orange:     #7b341e;
  --orange-bg:  #feebc8;
  --danger:     #742a2a;
  --danger-bg:  #fed7d7;
  --radius:     8px;
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

/* ---- Top navigation bar ---- */
.navbar {
  background: var(--navy);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.navbar-brand .brand-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.navbar-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.navbar-links a {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}

.navbar-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.navbar-links a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.navbar-admin {
  margin-left: auto;
  background: var(--red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background .15s;
  white-space: nowrap;
}

.navbar-admin:hover { background: var(--red-dark); }

/* ---- Page wrapper ---- */
.page { max-width: 1320px; margin: 0 auto; padding: 28px 24px 48px; }

/* ---- Section title ---- */
.section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-body { padding: 20px; }

/* ---- Stat cards ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-card .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.stat-card .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-card.accent { border-top: 3px solid var(--red); }
.stat-card.green  { border-top: 3px solid #38a169; }
.stat-card.blue   { border-top: 3px solid #3182ce; }

/* ---- Two-column layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ---- Forms ---- */
.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
  letter-spacing: .3px;
}

.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(179,0,0,.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary   { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }

.btn-success   { background: #276749; color: #fff; }
.btn-success:hover { background: #1e4d35; }

.btn-info      { background: #2b6cb0; color: #fff; }
.btn-info:hover { background: #2c5282; }

.btn-warning   { background: #c05621; color: #fff; }
.btn-warning:hover { background: #9c4221; }

.btn-danger    { background: #c53030; color: #fff; }
.btn-danger:hover { background: #9b2c2c; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg); }

.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Alerts / flash messages ---- */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  border-left: 4px solid;
}
.alert-success { background: var(--green-bg); color: var(--green); border-color: #38a169; }
.alert-warning { background: var(--amber-bg); color: var(--amber); border-color: #d69e2e; }
.alert-danger  { background: var(--danger-bg); color: var(--danger); border-color: #fc8181; }

/* ---- Table ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

table.data-table thead th {
  background: #f7f8fc;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

table.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}

table.data-table tbody tr:last-child { border-bottom: none; }
table.data-table tbody tr:hover { background: #fafbff; }

table.data-table td {
  padding: 10px 14px;
  vertical-align: middle;
}

.ticket-badge {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  letter-spacing: .5px;
}

/* ---- Status & damage pills ---- */
.pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
}

.pill-active   { background: #c6f6d5; color: #276749; }
.pill-inactive { background: #edf2f7; color: #718096; }

.pill-none     { background: #c6f6d5; color: #276749; }
.pill-minor    { background: #fefcbf; color: #744210; }
.pill-moderate { background: var(--orange-bg); color: var(--orange); }
.pill-severe   { background: var(--danger-bg); color: var(--danger); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
}

.pagination a .btn,
.pagination .btn { min-width: 36px; justify-content: center; }

.pagination .current-page {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--red-light);
  border: 1px solid #f5c6c6;
}

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 1080px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 { font-size: 15px; font-weight: 600; }

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
}
.modal-close:hover { background: var(--bg); color: var(--text); }

.modal-body { padding: 20px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-img {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-img img {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: contain;
  background: #000;
}

/* ---- Runner history ---- */
.runner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.runner-row:last-child { border-bottom: none; }

.runner-name { font-weight: 600; font-size: 14px; }
.runner-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---- Login page ---- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(179,0,0,.22), transparent 24%),
    radial-gradient(circle at bottom right, rgba(26,31,54,.2), transparent 26%),
    linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .12);
}

.login-card-interactive {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(340px, 1.05fr);
  overflow: hidden;
}

.login-side {
  padding: 40px 34px;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #fff;
}

.login-main {
  padding: 40px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.login-heading h1 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.login-heading p {
  margin-top: 10px;
  margin-bottom: 22px;
  color: var(--muted);
}

.login-logo {
  margin-bottom: 28px;
}

.login-logo-left {
  text-align: left;
}

.login-logo .logo-mark {
  display: inline-block;
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 12px;
  margin-bottom: 12px;
}

.login-logo h2 { font-size: 18px; font-weight: 700; color: var(--text); }
.login-logo p  { font-size: 13px; color: var(--muted); margin-top: 4px; }
.login-logo-left h2,
.login-logo-left p { color: #fff; }
.login-logo-left p { color: rgba(255,255,255,.72); max-width: 300px; line-height: 1.7; }

.login-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-trust-item {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.84);
  line-height: 1.55;
}

.password-toggle {
  background: transparent;
  border: none;
  color: #b30000;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.password-hints {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.login-submit[disabled] {
  opacity: .75;
  cursor: wait;
}

@media (max-width: 820px) {
  .login-card-interactive {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .login-side,
  .login-main {
    padding: 28px 22px;
  }
  .password-hints {
    flex-direction: column;
  }
}

/* ---- Role badges ---- */
.role-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.role-admin  { background: #fed7d7; color: #c53030; }
.role-runner { background: #bee3f8; color: #2b6cb0; }

/* ---- Navbar user section ---- */
.navbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar-username {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}

/* ---- Utility ---- */
.mt-4  { margin-top: 16px; }
.mb-4  { margin-bottom: 16px; }
.text-muted { color: var(--muted); }
.text-right { text-align: right; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.w-full { width: 100%; }
.empty-state { text-align: center; padding: 48px 0; color: var(--muted); font-size: 14px; }

/* ---- Intake + ticket metadata ---- */
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fafc;
  font-size: 12px;
  color: var(--text);
}

.meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #edf2f7;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
}

.mini-badge-alert {
  background: #fee2e2;
  color: #b91c1c;
}

/* ---- Public landing ---- */
.landing-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(179, 0, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #09111f 0%, #0f172a 34%, #eef2f8 34%, #eef2f8 100%);
}

.landing-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px 88px;
  color: #fff;
}

.landing-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 64px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: start;
}

.landing-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.landing-copy {
  max-width: 700px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
}

.landing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.landing-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.landing-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(8px);
}

.landing-panel-title {
  margin-bottom: 16px;
  color: #fda4af;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-stat + .landing-stat {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.landing-stat-label {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.landing-stat-value {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.55;
}

.landing-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 32px;
}

.landing-section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.74));
  border-top: 1px solid rgba(148, 163, 184, .18);
  border-bottom: 1px solid rgba(148, 163, 184, .18);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.landing-card,
.faq-item {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.landing-card h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.landing-card p,
.faq-item p {
  color: #475569;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
  font-weight: 600;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.demo-shell {
  margin-top: 10px;
}

.demo-browser {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 24px;
  background: #e2e8f0;
  box-shadow: 0 26px 60px rgba(15, 23, 42, .12);
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #cbd5e1;
}

.demo-dots {
  display: flex;
  gap: 8px;
}

.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .25);
}

.demo-url {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: #475569;
  font-size: 12px;
}

.demo-app {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 620px;
  background: #f8fafc;
}

.demo-sidebar {
  padding: 22px 16px;
  background: #111827;
  color: rgba(255,255,255,.72);
}

.demo-brand {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.demo-nav-item {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.demo-nav-item + .demo-nav-item {
  margin-top: 6px;
}

.demo-nav-item-active {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.demo-main {
  padding: 24px;
}

.demo-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.demo-main-top h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.demo-kicker {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.demo-user-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.demo-stat-card,
.demo-card {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.demo-stat-card {
  padding: 18px;
}

.demo-stat-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-stat-value {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 700;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}

.demo-card {
  padding: 18px;
}

.demo-card-wide {
  grid-column: 1 / -1;
}

.demo-card-title {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
}

.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, .06);
}

.demo-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.demo-meta {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
}

.demo-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.demo-tag-alert {
  background: #fee2e2;
  color: #b91c1c;
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
}

.demo-dot-green {
  background: #22c55e;
}

.demo-dot-amber {
  background: #f59e0b;
}

.demo-claim-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.demo-claim-box {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .06);
}

.demo-claim-box-wide {
  grid-column: 1 / -1;
}

.demo-field-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-field-value {
  margin-top: 8px;
  color: #0f172a;
  line-height: 1.6;
  font-size: 14px;
}

.claim-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.claim-checklist-item {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  color: #334155;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .landing-grid { grid-template-columns: 1fr; }
  .landing-topbar { flex-direction: column; align-items: flex-start; }
  .demo-app,
  .demo-grid,
  .demo-stats,
  .demo-claim-layout { grid-template-columns: 1fr; }
  .demo-sidebar { display: none; }
  .demo-main-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .landing-title { font-size: 34px; }
  .landing-copy { font-size: 16px; }
}
