:root {
  color-scheme: dark;
  --bg: #061020;
  --bg-soft: #0a1730;
  --panel: rgba(14, 30, 58, 0.84);
  --panel-solid: #0e1e3a;
  --panel-hover: #14294c;
  --line: rgba(151, 178, 224, 0.14);
  --line-strong: rgba(151, 178, 224, 0.26);
  --text: #f5f8ff;
  --muted: #91a4c5;
  --blue: #5f8cff;
  --blue-bright: #7aa7ff;
  --cyan: #28d5df;
  --green: #41dfa0;
  --yellow: #f4c35a;
  --red: #ff7085;
  --purple: #ab82ff;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% -10%, rgba(62, 100, 219, 0.2), transparent 33%),
    linear-gradient(145deg, #061020 0%, #071327 50%, #071022 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, [role="button"] { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(122, 167, 255, 0.8); outline-offset: 2px; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; transform: translateY(-150%); background: white; color: #071225; padding: 10px 14px; border-radius: 9px; }
.skip-link:focus { transform: translateY(0); }
.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; }

.app-shell { display: grid; grid-template-columns: 258px minmax(0, 1fr); min-height: 100vh; }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 24px 18px; border-right: 1px solid var(--line); background: rgba(5, 14, 30, 0.9); backdrop-filter: blur(18px); display: flex; flex-direction: column; z-index: 30; }
.brand { display: flex; align-items: center; gap: 12px; padding: 0 8px 24px; border-bottom: 1px solid var(--line); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(103, 151, 255, .55); border-radius: 13px; background: linear-gradient(145deg, #294dba, #172b72); box-shadow: 0 10px 28px rgba(55, 103, 233, .25); font-weight: 800; letter-spacing: -1px; }
.brand strong, .brand span { display: block; }
.brand strong { font-size: 14px; }
.brand span { margin-top: 2px; color: var(--muted); font-size: 11px; }
#main-nav { display: grid; gap: 5px; padding-top: 22px; overflow-y: auto; }
.nav-button { width: 100%; padding: 10px 12px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; border: 0; border-radius: 11px; background: transparent; color: #9aacc9; text-align: left; cursor: pointer; transition: .2s ease; }
.nav-button:hover { color: var(--text); background: rgba(100, 140, 212, .09); }
.nav-button.active { color: white; background: linear-gradient(90deg, rgba(74, 116, 230, .26), rgba(51, 84, 171, .12)); box-shadow: inset 3px 0 var(--blue); }
.nav-icon { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; font-size: 10px; font-weight: 800; letter-spacing: -.3px; }
.nav-count { padding: 2px 7px; border-radius: 999px; background: rgba(111, 150, 232, .13); color: #b9c8e5; font-size: 10px; }
.sidebar-status { margin-top: auto; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(33, 58, 109, .38), rgba(13, 28, 55, .62)); }
.status-line { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.sidebar-status p, .sidebar-status small { color: var(--muted); }
.sidebar-status p { margin: 7px 0 12px; font-size: 11px; }
.sidebar-status small { display: block; margin-top: 7px; font-size: 10px; }
.progress { height: 5px; overflow: hidden; border-radius: 6px; background: rgba(255, 255, 255, .08); }
.progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }

.workspace { min-width: 0; }
.topbar { min-height: 89px; padding: 18px 28px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); background: rgba(6, 16, 33, .68); backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 20; }
.topbar-title { min-width: 170px; }
.eyebrow { color: #7196de; font-size: 9px; font-weight: 800; letter-spacing: 1.6px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 3px 0 0; font-size: 22px; letter-spacing: -.5px; }
h2 { margin-bottom: 0; font-size: 19px; }
h3 { margin-bottom: 6px; font-size: 14px; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.search-field { width: min(310px, 28vw); padding: 0 11px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 11px; background: rgba(12, 28, 54, .6); color: var(--muted); }
.search-field input { min-width: 0; height: 40px; flex: 1; border: 0; outline: 0; background: transparent; color: var(--text); }
.search-field kbd { padding: 2px 6px; border: 1px solid var(--line); border-radius: 5px; color: #7182a0; font-size: 10px; }
.source-badge { padding: 7px 10px; display: flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; white-space: nowrap; }
.source-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.source-badge.live span { background: var(--green); }
.button { min-height: 38px; padding: 9px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(23, 43, 78, .7); cursor: pointer; transition: .18s ease; font-weight: 650; font-size: 12px; }
.button:hover { transform: translateY(-1px); background: var(--panel-hover); }
.button.primary { border-color: rgba(114, 153, 255, .65); background: linear-gradient(135deg, #3267ef, #654ed8); box-shadow: 0 9px 24px rgba(55, 91, 218, .22); }
.button.primary:hover { background: linear-gradient(135deg, #4678f1, #745fe1); }
.button.danger { color: #ffc2cc; border-color: rgba(255, 112, 133, .35); background: rgba(177, 54, 74, .13); }
.button.success { color: #baf7dd; border-color: rgba(65, 223, 160, .35); background: rgba(43, 155, 112, .13); }
.button.ghost { background: transparent; }
.button span { opacity: .7; font-weight: 500; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: rgba(16, 33, 61, .7); cursor: pointer; font-size: 20px; }
.menu-toggle { display: none; }

#main-content { padding: 28px; }
.hero { margin-bottom: 20px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.hero h2 { margin: 4px 0 7px; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -1.1px; }
.hero p { max-width: 660px; margin-bottom: 0; color: var(--muted); }
.hero-actions, .filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.metric-card { position: relative; min-height: 135px; padding: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(19, 39, 74, .9), rgba(10, 24, 47, .84)); box-shadow: var(--shadow); }
.metric-card::after { content: ""; position: absolute; width: 90px; height: 90px; right: -30px; top: -35px; border-radius: 50%; background: var(--accent, var(--blue)); opacity: .11; filter: blur(1px); }
.metric-top { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 11px; }
.metric-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: color-mix(in srgb, var(--accent, var(--blue)) 18%, transparent); color: var(--accent, var(--blue)); font-weight: 800; font-size: 10px; }
.metric-value { margin: 13px 0 5px; font-size: 25px; font-weight: 780; letter-spacing: -.8px; }
.metric-foot { color: var(--muted); font-size: 10px; }
.metric-foot strong { color: var(--green); }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(290px, .8fr); gap: 18px; }
.grid-even { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(14, 30, 58, .88), rgba(9, 23, 46, .88)); box-shadow: var(--shadow); overflow: hidden; }
.panel-head { min-height: 62px; padding: 15px 18px; display: flex; justify-content: space-between; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.panel-head h3 { margin: 0; }
.panel-head p { margin: 3px 0 0; color: var(--muted); font-size: 10px; }
.panel-body { padding: 18px; }
.panel-link { padding: 4px 0; border: 0; background: transparent; color: var(--blue-bright); cursor: pointer; font-size: 11px; }
.chart { height: 235px; display: flex; align-items: end; gap: 14px; padding-top: 30px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to top, transparent 0 49px, rgba(151,178,224,.08) 50px); }
.bar-wrap { height: 100%; flex: 1; display: flex; flex-direction: column; justify-content: end; align-items: center; gap: 8px; color: var(--muted); font-size: 9px; }
.bar { width: min(34px, 70%); min-height: 4px; border-radius: 7px 7px 2px 2px; background: linear-gradient(to top, #3569ed, #39d3df); box-shadow: 0 0 18px rgba(67, 129, 241, .18); transition: .3s ease; }
.activity-list, .task-list, .timeline { display: grid; gap: 0; }
.activity-item, .task-item, .timeline-item { padding: 13px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 11px; border-bottom: 1px solid var(--line); }
.activity-item:last-child, .task-item:last-child, .timeline-item:last-child { border-bottom: 0; }
.activity-icon, .avatar { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; background: rgba(78, 120, 218, .16); color: #a9c2ff; font-weight: 800; font-size: 10px; }
.avatar { border-radius: 50%; }
.activity-item p, .task-item p, .timeline-item p { margin: 0; color: #dbe5f8; font-size: 11px; }
.activity-item small, .task-item small, .timeline-item small { color: var(--muted); font-size: 9px; }
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 999px; background: rgba(95, 140, 255, .13); color: #a8c0ff; font-size: 9px; font-weight: 750; white-space: nowrap; }
.badge.green { background: rgba(65, 223, 160, .12); color: #7af0bd; }
.badge.yellow { background: rgba(244, 195, 90, .12); color: #f6d581; }
.badge.red { background: rgba(255, 112, 133, .12); color: #ff9aab; }
.badge.purple { background: rgba(171, 130, 255, .13); color: #c2a8ff; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.data-table th { color: #7f94b7; font-size: 9px; letter-spacing: .8px; text-transform: uppercase; }
.data-table td { color: #dce5f7; font-size: 11px; }
.data-table tbody tr { cursor: pointer; transition: .15s ease; }
.data-table tbody tr:hover { background: rgba(78, 120, 218, .07); }
.table-wrap { overflow-x: auto; }
.person { display: flex; align-items: center; gap: 9px; }
.person strong { display: block; font-size: 11px; }
.person small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.select, .input { min-height: 38px; padding: 8px 11px; border: 1px solid var(--line-strong); border-radius: 10px; background: #0d1d39; color: var(--text); }
.input::placeholder { color: #7183a2; }

.kanban { display: grid; grid-template-columns: repeat(5, minmax(220px, 1fr)); gap: 13px; overflow-x: auto; padding-bottom: 10px; }
.kanban-column { min-height: 460px; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: rgba(7, 18, 38, .6); }
.kanban-head { margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 750; }
.kanban-head span { color: var(--muted); }
.kanban-card { margin-bottom: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, #122745, #0e203c); cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,.13); }
.kanban-card:hover { border-color: rgba(117, 157, 239, .35); transform: translateY(-1px); }
.kanban-card p { margin: 5px 0 10px; color: var(--muted); font-size: 10px; }
.card-foot { display: flex; justify-content: space-between; align-items: center; color: #91a8cf; font-size: 9px; }
.stage-line { width: 5px; height: 5px; margin-right: 5px; display: inline-block; border-radius: 50%; background: var(--accent, var(--blue)); }

.agent-grid { display: grid; grid-template-columns: repeat(3, minmax(230px, 1fr)); gap: 13px; }
.agent-card { padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, rgba(18, 38, 73, .84), rgba(10, 23, 45, .8)); cursor: pointer; }
.agent-card:hover { border-color: rgba(122, 167, 255, .4); }
.agent-card-head { display: flex; align-items: center; gap: 12px; }
.agent-card-head .avatar { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; font-size: 13px; font-weight: 700; }
.agent-card-head > div { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.agent-card-head strong { display: block; font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.agent-card-head small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.2; }
.agent-card-head .badge { margin-left: auto; flex-shrink: 0; }
.agent-card p { margin: 12px 0 10px; color: #a4b8db; font-size: 11px; line-height: 1.4; min-height: 32px; }
.agent-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 10px; }
.mini-stat { padding: 9px 12px; border-radius: 9px; background: rgba(4, 13, 29, .55); border: 1px solid rgba(255,255,255,.05); }
.mini-stat strong, .mini-stat span { display: block; }
.mini-stat strong { font-size: 14px; font-weight: 700; color: #41dfa0; }
.mini-stat span { color: var(--muted); font-size: 8.5px; font-weight: 600; letter-spacing: .5px; margin-top: 2px; }

.calendar { display: grid; grid-template-columns: 70px repeat(5, 1fr); min-width: 760px; }
.calendar > div { min-height: 57px; padding: 8px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.calendar .cal-head { min-height: 42px; color: var(--muted); font-size: 9px; text-align: center; }
.calendar .cal-time { color: #7185a7; font-size: 9px; }
.calendar-event { padding: 7px !important; border: 1px solid rgba(95, 140, 255, .3) !important; border-radius: 8px; background: rgba(56, 96, 197, .18); color: #c4d5ff; font-size: 8px; }
.calendar-event.green { border-color: rgba(65,223,160,.3) !important; background: rgba(38,151,105,.16); color: #b4f7d9; }

.approval-card { padding: 16px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); }
.approval-card:last-child { border-bottom: 0; }
.approval-card p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.approval-actions { display: flex; gap: 7px; }
.score-ring { width: 46px; height: 46px; display: grid; place-items: center; border: 4px solid rgba(74, 123, 231, .28); border-top-color: var(--blue); border-radius: 50%; font-size: 10px; font-weight: 800; }

.quality-score { font-size: 46px; font-weight: 800; letter-spacing: -2px; }
.quality-score small { font-size: 14px; color: var(--muted); letter-spacing: 0; }
.quality-bars { display: grid; gap: 13px; }
.quality-row { display: grid; grid-template-columns: 140px 1fr 38px; align-items: center; gap: 10px; font-size: 10px; }
.empty-state { padding: 60px 20px; text-align: center; color: var(--muted); }
.empty-state strong { display: block; margin-bottom: 5px; color: var(--text); }
.notice { margin: 0 0 18px; padding: 12px 16px; border: 1px solid rgba(95, 140, 255, .35); border-radius: 12px; background: rgba(95, 140, 255, .08); color: var(--muted); }

.drawer { position: fixed; z-index: 100; top: 0; right: 0; width: min(470px, 94vw); height: 100vh; transform: translateX(105%); background: #0a1830; border-left: 1px solid var(--line-strong); box-shadow: -30px 0 70px rgba(0,0,0,.42); transition: transform .25s ease; overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer-head, .modal-head { padding: 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.drawer-body, .modal-body { padding: 22px; }
.scrim { position: fixed; inset: 0; z-index: 90; background: rgba(1, 6, 16, .62); backdrop-filter: blur(3px); }
.detail-hero { margin: -22px -22px 20px; padding: 22px; background: linear-gradient(145deg, rgba(54, 96, 204, .2), rgba(17, 36, 75, .08)); }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0; }
.detail-box { padding: 12px; border: 1px solid var(--line); border-radius: 11px; }
.detail-box span, .field span { display: block; color: var(--muted); font-size: 9px; }
.detail-box strong { display: block; margin-top: 4px; font-size: 12px; }
.drawer-actions { display: flex; gap: 8px; margin: 18px 0; flex-wrap: wrap; }

dialog { width: min(540px, calc(100vw - 28px)); padding: 0; border: 1px solid var(--line-strong); border-radius: 18px; background: #0b1931; color: var(--text); box-shadow: 0 30px 100px rgba(0,0,0,.55); }
dialog::backdrop { background: rgba(1, 6, 16, .68); backdrop-filter: blur(4px); }
.modal-card { margin: 0; }
.modal-actions { padding: 16px 22px; display: flex; justify-content: flex-end; gap: 8px; border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field span { font-weight: 700; color: #9db0d0; }
textarea.input { min-height: 90px; resize: vertical; }
.toast-region { position: fixed; z-index: 200; right: 18px; bottom: 18px; display: grid; gap: 8px; }
.toast { min-width: 260px; max-width: 380px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 12px; background: #122747; box-shadow: var(--shadow); animation: toast-in .25s ease; font-size: 11px; }
.toast strong { display: block; margin-bottom: 2px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1180px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .source-badge { display: none; }
}
@media (max-width: 880px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; transform: translateX(-105%); width: 270px; transition: transform .22s ease; box-shadow: 30px 0 70px rgba(0,0,0,.42); }
  .sidebar.open { transform: translateX(0); }
  .menu-toggle { display: grid; }
  .topbar { padding: 13px 16px; }
  .search-field { display: none; }
  #main-content { padding: 20px 16px; }
  .grid-2, .grid-even { grid-template-columns: 1fr; }
  .hero { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 580px) {
  .topbar-title .eyebrow { display: none; }
  .topbar-title { min-width: 0; flex: 1; }
  .topbar-title h1 { font-size: 17px; }
  #run-cycle span { display: none; }
  .metrics-grid, .agent-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 120px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .approval-card { grid-template-columns: auto 1fr; }
  .approval-actions { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Landing Page Styles */
.landing-wrap { max-width: 1200px; margin: 0 auto; padding: 20px 16px 60px; }
.landing-hero { text-align: center; padding: 48px 20px 40px; background: radial-gradient(circle at 50% 30%, rgba(95, 140, 255, 0.15), transparent 70%); border-radius: 16px; margin-bottom: 32px; border: 1px solid rgba(255,255,255,0.06); }
.landing-hero h1 { font-size: 36px; font-weight: 800; line-height: 1.2; margin: 12px 0 16px; color: #ffffff; }
.landing-hero p { font-size: 16px; color: #b0c4de; max-width: 740px; margin: 0 auto 28px; line-height: 1.6; }
.landing-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing-hero-actions .button { font-size: 14px; padding: 12px 24px; }

.landing-section { margin-bottom: 48px; }
.landing-section-head { text-align: center; margin-bottom: 28px; }
.landing-section-head h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.landing-section-head p { font-size: 14px; color: var(--muted); max-width: 600px; margin: 0 auto; }

.product-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.product-showcase-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s; }
.product-showcase-card:hover { transform: translateY(-4px); border-color: rgba(95, 140, 255, 0.5); }
.product-showcase-card .icon-wrap { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.product-showcase-card h3 { font-size: 18px; margin-bottom: 8px; color: #fff; }
.product-showcase-card p { font-size: 13px; color: #a0b0cb; line-height: 1.5; margin-bottom: 16px; flex: 1; }
.product-features-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: #d0e0ff; }
.product-features-list li { display: flex; align-items: center; gap: 8px; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; text-align: center; position: relative; }
.pricing-card.featured { border-color: #41dfa0; box-shadow: 0 0 24px rgba(65, 223, 160, 0.15); }
.pricing-card h3 { font-size: 20px; margin-bottom: 6px; }
.pricing-card .price { font-size: 32px; font-weight: 800; color: #fff; margin: 14px 0 6px; }
.pricing-card .price small { font-size: 13px; color: var(--muted); font-weight: normal; }
.pricing-card ul { list-style: none; padding: 0; margin: 20px 0 24px; text-align: left; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: #c4d5ff; flex: 1; }
