﻿/* Reference-inspired PSX Advisor UI system */
@import url('../assets/design-system.css');
@import url('../assets/ui-upgrade.css');
:root {
  --canvas: #F7F9FC;
  --surface: #FFFFFF;
  --surface-2: #EEF2F8;
  --navy: #0B132B;
  --navy-soft: #1C2541;
  --navy-mute: #5A6378;
  --blue: #3A86FF;
  --blue-soft: #E6F0FF;
  --green: #00F5A0;
  --green-deep: #00B377;
  --red: #FF4D6D;
  --amber: #E8952A;
  --border: #E4E9F2;
  --shadow-sm: 0 1px 2px rgba(11,19,43,.05), 0 1px 3px rgba(11,19,43,.04);
  --shadow-md: 0 8px 24px rgba(11,19,43,.08);
  --radius: 14px;
  --radius-sm: 8px;
}

.value-flash { animation: value-flash .55s ease; }
@keyframes value-flash { 0% { color: var(--green-deep); } 100% { color: inherit; } }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--canvas);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; margin: 0; }

.sidebar {
  width: 256px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--psx-navy-950) 0%, var(--psx-navy-800) 100%);
  transition: width 0.25s ease;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-md);
}
.sidebar.collapsed { width: 0; overflow: hidden; }
.sidebar-link {
  display:flex; align-items:center; gap:12px;
  padding:12px 20px; margin:4px 8px;
  color: rgba(255,255,255,.74); border-radius:10px;
  font-size: 14px; font-weight: 500; text-decoration:none;
  transition: all .2s ease;
}
.sidebar-link:hover { background: rgba(255,255,255,.08); color: #ffffff; }
.sidebar-link.active {
  background: rgba(16, 185, 129, 0.18);
  color: var(--psx-emerald-400);
  border-left: 3px solid var(--psx-emerald-500);
  font-weight: 600;
}
.side-section {
  padding: 16px 14px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-sm);
}

.page-hero {
  background: linear-gradient(135deg, var(--psx-navy-900) 0%, var(--psx-navy-700) 55%, rgba(16, 185, 129, 0.15) 100%);
  color:#fff;
  border-radius:14px;
  padding:32px 40px;
  margin-bottom: 24px;
}
.page-hero p { color:#CFE3FF; margin-top: 8px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card { border-left: 4px solid var(--amber); }

.input-field,.select-field {
  width:100%;
  border:1px solid #CFD8E6;
  border-radius:10px;
  padding:11px 12px;
  font-size:14px;
  background:#fff;
  color:#13223A;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input-field:focus,.select-field:focus {
  outline:none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(58,134,255,.14);
}

.btn-primary,.btn-secondary,.btn-outline {
  border:none; border-radius:10px; padding:10px 18px;
  font-weight:600; font-size:14px; cursor:pointer;
  transition: all .2s ease;
}
.btn-primary { background: var(--blue); color:#fff; box-shadow: 0 8px 20px rgba(58,134,255,.32); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { background: #142641; color:#fff; }
.btn-secondary:hover { background:#0B132B; }
.btn-outline { border:1px solid var(--border); background:#fff; color:#1A2D4A; }
.btn-outline:hover { background: var(--surface-2); }

.badge {
  display:inline-flex; align-items:center; gap:4px;
  font-size:12px; font-weight:600; padding:4px 10px;
  border-radius:999px;
}
.badge-increase { background: rgba(0,245,160,.15); color: var(--green-deep); }
.badge-decrease { background: rgba(255,77,109,.12); color: var(--red); }
.badge-pending { background: #FFF8E1; color: #B26C00; }
.badge-completed { background: #E6F0FF; color: #285DA8; }

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table thead th {
  background: #F3F6FC;
  color: #4C5970;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.data-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color:#1F2D45;
}
.data-table tbody tr:hover { background: #F8FAFF; }

.chip {
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 14px; border-radius:20px;
  border:1px solid #CDD7E8; background:#fff; color:#60708A;
  font-size:13px; font-weight:600; cursor:pointer;
  transition: all .2s ease;
}
.chip.selected { background:#132B49; color:#fff; border-color:#132B49; }
.chip:hover:not(.selected) { border-color: var(--blue); color: var(--blue); }

#model-chips .chip,
#timeframe-chips .chip {
  background: #F3F6FB;
  color: #30435f;
  border-color: #d5dfef;
  font-weight: 700;
  min-width: 88px;
  justify-content: center;
  position: relative;
}
#model-chips .chip.selected {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(16, 42, 67, 0.18);
}
#model-chips .chip.chip-groq.selected {
  background: linear-gradient(135deg, #16a34a, #059669);
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.28);
}
#model-chips .chip.chip-openai.selected {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.28);
}
#model-chips .chip.chip-meta.selected {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border-color: #5b21b6;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.28);
}
#model-chips .chip.selected::after {
  content: "✓";
  margin-left: 4px;
  font-size: 11px;
  font-weight: 800;
}
#timeframe-chips .chip.selected {
  color: #fff;
  font-weight: 800;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(16, 42, 67, 0.15);
}
#timeframe-chips .chip[data-tf="1"].selected {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}
#timeframe-chips .chip[data-tf="2"].selected {
  background: linear-gradient(135deg, #E8952A, #D4841F);
  border-color: #B45309;
  box-shadow: 0 0 0 3px rgba(232, 149, 42, 0.25);
}
#timeframe-chips .chip[data-tf="3"].selected {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: #991b1b;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.22);
}
#timeframe-chips .chip.selected::after {
  content: "✓";
  margin-left: 4px;
  font-size: 11px;
}

.progress-bar-wrap { background:#E5ECF7; border-radius:999px; height:8px; overflow:hidden; }
.progress-bar { height:100%; background:linear-gradient(90deg,#2F5597,#3A86FF,#00D28B); border-radius:999px; transition:width .3s ease; }

.spinner {
  width:40px; height:40px; border-radius:50%;
  border:4px solid #E4E9F2; border-top-color:#3A86FF;
  animation: spin .8s linear infinite; margin:0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.accordion-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  background:#F7FAFF;
  border:1px solid var(--border);
  border-radius:10px;
  color:#1B365C;
  font-weight:600;
  cursor:pointer;
}
.accordion-body {
  display:none;
  border:1px solid var(--border);
  border-top:none;
  border-radius:0 0 10px 10px;
  padding:14px;
  color:#42516A;
  line-height:1.65;
}
.accordion-body.open { display:block; }
.accordion-arrow { transition: transform .2s ease; }
.accordion-arrow.open { transform: rotate(180deg); }

.radio-tile {
  border:1px solid #CDD7E8;
  border-radius:10px;
  background:#fff;
  color:#3D4F6A;
  font-weight:600;
  padding:10px 12px;
  transition:all .2s ease;
}
.radio-tile.active {
  border-color:#FFB347;
  color:#A35F00;
  background:#FFF5E7;
}

.kmi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(88px,1fr)); gap:10px; }
.kmi-tile { padding:12px 8px; border-radius:8px; text-align:center; cursor:pointer; transition:transform .15s, box-shadow .15s; min-width:80px; }
.kmi-tile:hover { transform:scale(1.06); box-shadow:0 4px 12px rgba(0,0,0,.16); }
.kmi-tile .symbol { display:block; font-weight:700; font-size:13px; color:#fff; }
.kmi-tile .change { display:block; font-size:11px; color:rgba(255,255,255,.9); margin-top:2px; }

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align:center;
  padding: 14px 18px;
  font-size: 12px;
  color: #8A96AB;
  margin-top: auto;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .4s ease forwards; }

@media (max-width: 1024px) {
  .sidebar { position: fixed; z-index: 60; }
  .sidebar.collapsed { transform: translateX(-100%); width: 256px; }
}

/* Dashboard premium layout blocks */
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.work-head h1 {
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  color: #0E2240;
  font-weight: 700;
}
.work-head p { color: #60708A; margin-top: 4px; }

.controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #596980;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .controls { grid-template-columns: 1fr 1fr; }
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.kpi .label {
  font-size: .78rem;
  color: #5C6B82;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}
.kpi .value {
  margin-top: 6px;
  font-size: 2.45rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0F2443;
}
.kpi .delta { margin-top: 5px; font-size: .9rem; font-weight: 600; }
.delta.up { color: #00B377; }
.delta.down { color: #FF4D6D; }
.kpi.featured {
  background: #0B1637;
  color: #fff;
  border-color: transparent;
}
.kpi.featured .label { color: rgba(255,255,255,.62); }
.kpi.featured .value { color: #00F5A0; }

.panel-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}
.chip-group {
  display: flex;
  gap: 6px;
  background: #EDF2FA;
  padding: 4px;
  border-radius: 10px;
}
.chip-group .chip {
  padding: 6px 12px;
  border-radius: 8px;
  background: transparent;
}
.chip-group .chip.active {
  background: #fff;
  color: #0E2240;
  box-shadow: var(--shadow-sm);
}

.reco {
  text-align: center;
  padding-top: 8px;
}
.reco .badge {
  padding: 8px 18px;
  border-radius: 999px;
  background: #00F5A0;
  color: #07253B;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  box-shadow: 0 10px 24px rgba(0,245,160,.28);
}
.reco .badge.sell {
  background: #FF4D6D;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,77,109,.24);
}
.reco .badge.hold {
  background: #EEF2F8;
  color: #2E3C55;
  box-shadow: none;
}
.reco h2 {
  margin-top: 16px;
  font-size: 3.05rem;
  color: #0F2443;
}
.reco p {
  color: #5D6B80;
  margin: 8px auto 0;
  max-width: 420px;
}
.confidence { margin-top: 16px; }
.confidence .bar {
  height: 8px;
  background: #E8EDF6;
  border-radius: 999px;
  overflow: hidden;
}
.confidence .bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg,#3A86FF,#00F5A0);
  transition: width .8s ease;
}
.confidence .row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: #5A6378;
  margin-top: 6px;
  font-weight: 700;
}

.tag {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 700;
}
.tag.green { background: rgba(0,245,160,.15); color: #00B377; }
.tag.red { background: rgba(255,77,109,.12); color: #FF4D6D; }
.tag.blue { background: #E8F0FF; color: #3A86FF; }

.lstm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lstm-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: #FAFCFF;
}
.lstm-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #5C6B82;
  font-weight: 700;
}
.lstm-card h4 {
  margin-top: 6px;
  font-size: 1.6rem;
  color: #0F2443;
  font-family: 'Poppins', sans-serif;
}
.lstm-sub {
  margin-top: 6px;
  font-size: .85rem;
  color: #66758D;
}
.lstm-explain {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #FFFFFF;
  padding: 14px 16px;
}
.lstm-explain h4 {
  font-size: 1rem;
  color: #132A4B;
}
.lstm-explain p {
  margin-top: 8px;
  color: #55657E;
}
.lstm-feature-list {
  margin-top: 8px;
  padding-left: 18px;
  color: #3F4F67;
  font-size: .9rem;
}
.lstm-feature-list li { margin-bottom: 4px; }

.sent-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.market-banner-strip {
  background: linear-gradient(90deg, #F5F9FF 0%, #FFFFFF 50%, #F5FFF9 100%);
}

#daily-banners-wrap .badge {
  font-size: 12px;
}
.sent {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sent:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sent .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #E8F0FF;
  color: #3A86FF;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.sent h4 { margin: 0 0 4px; color: #0F2443; font-size: 1rem; }
.sent p { margin: 0; color: #5D6B80; font-size: .9rem; }
.sent .src { display: inline-block; margin-top: 8px; font-size: .8rem; color: #6B7891; }

@media (max-width: 1200px) {
  .panel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .lstm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .sent-grid { grid-template-columns: 1fr; }
}

/* Skeleton loaders — instant layout while sections hydrate */
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #EEF2F8 25%, #E4E9F2 50%, #EEF2F8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}
.skeleton-line.h-6 { height: 24px; }
.skeleton-line.h-7 { height: 28px; }
.skeleton-line.w-16 { width: 4rem; }
.skeleton-line.w-20 { width: 5rem; }
.skeleton-line.w-24 { width: 6rem; }
.skeleton-line.w-40 { width: 10rem; }
.skeleton-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 72px;
}
.skeleton-kpi { min-height: 88px; }
.skeleton-table { display: grid; gap: 10px; }
.skeleton-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.skeleton-head .skeleton-line { opacity: 0.7; }
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Landing page */
.landing-body { background: #0D2137; color: #E8F0F8; font-family: Inter, sans-serif; margin: 0; }
.landing-nav { position: sticky; top: 0; z-index: 50; background: rgba(13,33,55,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.landing-nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.landing-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-family: Poppins, sans-serif; text-decoration: none; }
.landing-logo { background: #E8952A; color: #0D2137; padding: 4px 8px; border-radius: 6px; font-size: 12px; }
.landing-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.landing-links a { color: #C5D5E8; text-decoration: none; font-size: 14px; transition: color .2s; }
.landing-links a:hover { color: #fff; }
.landing-cta-sm { padding: 8px 16px !important; font-size: 13px !important; }
.landing-hero { max-width: 1200px; margin: 0 auto; padding: 64px 24px 48px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.landing-eyebrow { color: #E8952A; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 12px; }
.landing-hero h1 { font-family: Poppins, sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin: 0 0 16px; color: #fff; }
.landing-subtitle { font-size: 1.15rem; color: #C5D5E8; margin: 0 0 12px; }
.landing-lead { color: #94A3B8; line-height: 1.7; max-width: 540px; margin: 0 0 28px; }
.landing-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.landing-btn-light { border-color: rgba(255,255,255,0.3) !important; color: #fff !important; }
.landing-hero-visual { display: grid; gap: 16px; }
.landing-stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; text-align: center; animation: fadeInUp .6s ease both; }
.landing-stat-card.accent { border-color: #E8952A; background: rgba(232,149,42,0.12); }
.landing-stat-card span { display: block; font-size: 2rem; font-weight: 700; color: #fff; font-family: Poppins, sans-serif; }
.landing-stat-card small { color: #94A3B8; font-size: 12px; }
.landing-section { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.landing-section-alt { background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); max-width: 100%; }
.landing-section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.landing-section-title { font-family: Poppins, sans-serif; font-size: 1.75rem; color: #fff; margin: 0 0 32px; text-align: center; }
.landing-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.landing-feature-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px; transition: transform .2s, border-color .2s; }
.landing-feature-card:hover { transform: translateY(-4px); border-color: #2A5298; }
.landing-feature-card h3 { color: #fff; font-family: Poppins, sans-serif; font-size: 1rem; margin: 0 0 8px; }
.landing-feature-card p { color: #94A3B8; font-size: 14px; line-height: 1.6; margin: 0; }
.landing-workflow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.workflow-step { background: #1B3A5C; border: 1px solid #2A5298; padding: 12px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #E8F0F8; }
.workflow-arrow { color: #E8952A; font-weight: 700; }
.landing-eng-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.landing-eng-item { background: rgba(42,82,152,0.2); border: 1px solid rgba(42,82,152,0.4); padding: 14px 16px; border-radius: 8px; font-size: 14px; color: #C5D5E8; }
.landing-stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; text-align: center; }
.landing-stat-block span { display: block; font-size: 2.25rem; font-weight: 800; color: #E8952A; font-family: Poppins, sans-serif; }
.landing-stat-block label { font-size: 13px; color: #94A3B8; }
.landing-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 32px; }
.landing-team-card { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 24px; border: 1px solid rgba(255,255,255,0.08); }
.landing-team-card h3 { color: #fff; font-family: Poppins, sans-serif; margin: 0 0 10px; font-size: 1rem; }
.landing-team-card p { color: #94A3B8; font-size: 14px; line-height: 1.6; margin: 0; }
.landing-final-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.landing-footer { text-align: center; padding: 32px 24px; color: #64748B; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.06); }
.engineering-card { min-height: 100px; }
.pi-reason-table td { vertical-align: top; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) { .landing-hero { grid-template-columns: 1fr; } .landing-links { gap: 12px; } }
