/* ========================================================
   ADVISOR MOBILE — Complete Design System (styles.css)
   Extracted from mobile reference screen (freezed_design.html)
   ======================================================== */

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

/* ── Design Tokens ── */
:root {
  --bg: #f6f6f4;
  --bg-gradient: linear-gradient(180deg, #f6f6f4 0%, #efeeea 100%);
  --dark: #0a0f1c;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --surface: rgba(255,255,255,0.65);
  --surface-solid: #ffffff;
  --border: rgba(10,15,28,0.06);
  --border-strong: rgba(10,15,28,0.1);
  --green: #059669;
  --red: #dc2626;
  --purple: #7c3aed;
  --cyan: #0891b2;
  --pink: #ec4899;
  --amber: #f59e0b;
  --blue: #1e40af;
  --font-body: 'Geist', sans-serif;
  --font-display: 'Instrument Serif', serif;
  --font-mono: 'Geist Mono', monospace;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 22px;
  --radius-3xl: 24px;
  --radius-4xl: 26px;
  --radius-pill: 999px;
  --radius-device: 46px;
  --shadow-card: 0 1px 2px rgba(10,15,28,0.03);
  --shadow-device: 0 40px 100px rgba(15,23,42,0.28), 0 12px 30px rgba(15,23,42,0.14), inset 0 0 0 1px rgba(255,255,255,0.6);
  --shadow-fab: 0 4px 14px rgba(249,115,22,0.5);
  --shadow-focus: 0 20px 40px rgba(10,15,28,0.25);
  --glass: rgba(255,255,255,0.65);
  --glass-blur: blur(20px);
  --glass-border: 1px solid rgba(10,15,28,0.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: radial-gradient(ellipse at top, #eef2f7 0%, #dfe4ec 50%, #cfd5df 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  color: var(--dark);
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ── Device Frame ── */
.device {
  width: 390px;
  min-height: 844px;
  background: var(--bg);
  border-radius: var(--radius-device);
  box-shadow: var(--shadow-device);
  overflow: hidden;
  border: 10px solid var(--dark);
  position: relative;
  display: flex;
  flex-direction: column;
}
.notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px; background: var(--dark); border-radius: 20px; z-index: 20;
}
.status-bar {
  padding: 14px 30px 6px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--dark);
  flex-shrink: 0;
}
.status-icons { display: flex; gap: 6px; align-items: center; }

.bg-canvas {
  background: var(--bg-gradient);
  flex: 1;
  overflow: hidden;
  position: relative;
}
.device-content {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 100px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.device-content::-webkit-scrollbar { display: none; }
.device-content.no-tab-bar { padding-bottom: 20px; }
.device-content.login-mode { padding-bottom: 0; }

/* ── Hero / Top Row ── */
.hero {
  padding: 12px 22px 24px;
  position: relative;
}
.top-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em;
}
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 11px; font-weight: 600;
  box-shadow: 0 2px 6px rgba(10,15,28,0.25);
}
.top-actions { display: flex; gap: 8px; align-items: center; }
.pill-btn {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  transition: transform 0.15s ease;
}
.pill-btn:active { transform: scale(0.92); }
.pill-btn svg, .pill-btn .icon svg { width: 17px; height: 17px; stroke: var(--dark); stroke-width: 1.6; }
.notif-badge {
  position: absolute; top: -3px; right: -3px;
  background: var(--accent); color: white; font-size: 9px; font-weight: 600;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg); padding: 0 4px;
}
.avatar-pill {
  height: 36px; padding: 3px 12px 3px 3px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.7); backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  transition: transform 0.15s ease;
}
.avatar-pill:active { transform: scale(0.95); }
.avatar-pill .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.avatar-pill .txt { font-size: 12.5px; font-weight: 500; }

/* ── Greeting ── */
.greeting {
  font-family: var(--font-display);
  font-size: 40px; line-height: 1.05; letter-spacing: -0.02em; color: var(--dark);
  margin-bottom: 6px; font-weight: 400;
}
.greeting em { font-style: italic; color: var(--muted); }
.subgreeting {
  font-size: 13px; color: var(--muted); font-weight: 400; margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.subgreeting .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-light); }
.subgreeting .day {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Focus Card ── */
.focus-card {
  background: linear-gradient(160deg, var(--dark) 0%, #1e293b 100%);
  border-radius: var(--radius-3xl);
  padding: 20px;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-focus);
  animation: focusEntry 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.focus-card::before {
  content: '';
  position: absolute; top: -40%; right: -20%; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(249,115,22,0.35) 0%, transparent 60%);
  filter: blur(20px);
}
.focus-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: #fbbf24;
  background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.28);
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 14px;
  position: relative; z-index: 1;
}
.focus-tag .pulse {
  width: 5px; height: 5px; border-radius: 50%; background: #fbbf24;
  box-shadow: 0 0 0 0 rgba(251,191,36,0.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(251,191,36,0.7); }
  100% { box-shadow: 0 0 0 8px rgba(251,191,36,0); }
}
.focus-title {
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 4px;
  position: relative; z-index: 1;
}
.focus-meta {
  font-size: 12.5px; color: rgba(246,246,244,0.6); margin-bottom: 18px;
  position: relative; z-index: 1;
}
.focus-row { display: flex; gap: 8px; position: relative; z-index: 1; }
.focus-btn {
  flex: 1; height: 42px; border-radius: var(--radius-md); border: none; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: transform 0.15s ease;
}
.focus-btn:active { transform: scale(0.95); }
.focus-btn.primary { background: var(--bg); color: var(--dark); }
.focus-btn.ghost {
  background: rgba(246,246,244,0.08); color: var(--bg);
  border: 1px solid rgba(246,246,244,0.14);
}
.focus-btn svg, .focus-btn .icon svg { width: 14px; height: 14px; }
.focus-attendees {
  display: flex; margin-top: 16px; position: relative; z-index: 1;
  align-items: center; gap: 10px;
}
.att-stack { display: flex; }
.att {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid #1e293b; margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 600; color: white;
}
.att:first-child { margin-left: 0; }
.att.att-a, .att.a { background: var(--purple); }
.att.att-b, .att.b { background: var(--cyan); }
.att.att-c, .att.c { background: var(--pink); }
.att-txt { font-size: 11.5px; color: rgba(246,246,244,0.6); }

/* ── Content Area ── */
.content { padding: 0 22px; }

/* ── Section Headers ── */
.section-hdr {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 28px 0 14px;
}
.section-hdr h3 {
  font-size: 12px; font-weight: 500; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.section-hdr .link {
  font-size: 12.5px; color: var(--dark); font-weight: 500; text-decoration: none; cursor: pointer;
}

/* ── Metric Cards ── */
.metric-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
.metric-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
.metric-card .label {
  font-size: 11px; color: var(--muted); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.metric-card .val {
  font-family: var(--font-display); font-size: 34px; line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.metric-card .sub {
  font-size: 11.5px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.trend-up { color: var(--green); font-weight: 500; }
.trend-down { color: var(--red); font-weight: 500; }
.metric-card.dark {
  background: linear-gradient(160deg, #ffffff 0%, #f1efe9 100%);
  display: flex; flex-direction: column; justify-content: space-between;
}
.risk-row { display: flex; gap: 4px; margin-top: 10px; height: 4px; }
.risk-bar { flex: 1; border-radius: 2px; background: #e5e7eb; }
.risk-bar.on { background: var(--accent); }
.risk-bar.red { background: var(--red); }

/* ── Alerts Card ── */
.alerts-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.alert-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-bottom: 1px solid rgba(10,15,28,0.05);
  cursor: pointer;
  transition: background 0.15s ease;
}
.alert-row:last-child { border-bottom: none; }
.alert-row:active { background: rgba(10,15,28,0.03); }
.alert-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.alert-icon.red { background: rgba(220,38,38,0.1); color: var(--red); }
.alert-icon.amber { background: rgba(249,115,22,0.12); color: var(--accent-dark); }
.alert-icon.blue { background: rgba(30,64,175,0.1); color: var(--blue); }
.alert-icon.green { background: rgba(5,150,105,0.1); color: var(--green); }
.alert-icon.purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.alert-icon svg, .alert-icon .icon svg { width: 15px; height: 15px; }
.alert-body { flex: 1; min-width: 0; }
.alert-title { font-size: 13.5px; font-weight: 500; color: var(--dark); margin-bottom: 2px; letter-spacing: -0.01em; }
.alert-meta { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alert-chev svg, .alert-chev .icon svg { width: 14px; height: 14px; stroke: var(--muted-light); }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 8px; }
.tl-item {
  display: flex; gap: 14px; padding-bottom: 18px; position: relative; cursor: pointer;
  transition: opacity 0.2s;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: 58px; top: 42px; bottom: -6px;
  width: 1px; background: linear-gradient(to bottom, rgba(10,15,28,0.15), transparent);
}
.tl-item:last-child::before { display: none; }
.tl-item:active { opacity: 0.7; }
.tl-time {
  min-width: 44px; padding-top: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); text-align: right;
}
.tl-time strong { display: block; font-size: 13px; color: var(--dark); font-weight: 500; margin-bottom: 2px; }
.tl-dot {
  width: 12px; height: 12px; border-radius: 50%; background: white;
  border: 2px solid var(--dark); margin-top: 10px; position: relative; z-index: 2; flex-shrink: 0;
}
.tl-dot.now { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(249,115,22,0.18); }
.tl-dot.later { background: white; border-color: #cbd5e1; }
.tl-card {
  flex: 1; background: rgba(255,255,255,0.7); backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(10,15,28,0.05); border-radius: var(--radius-lg);
  padding: 12px 14px;
}
.tl-card .tt { font-size: 13.5px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em; margin-bottom: 4px; }
.tl-card .mm { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }
.tl-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.mini-tag {
  font-size: 10px; padding: 2px 7px; border-radius: var(--radius-pill); font-weight: 500;
  font-family: var(--font-mono); letter-spacing: 0.04em;
}
.mini-tag.zoom { background: rgba(45,140,255,0.1); color: #1d4ed8; }
.mini-tag.risk { background: rgba(220,38,38,0.1); color: var(--red); }
.mini-tag.lead { background: rgba(5,150,105,0.1); color: #047857; }
.mini-tag.prep { background: rgba(249,115,22,0.12); color: #b45309; }

/* ── Client Tiles (horizontal scroll) ── */
.clients-row {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
  margin: 0 -22px; padding-left: 22px; padding-right: 22px;
  scrollbar-width: none;
}
.clients-row::-webkit-scrollbar { display: none; }
.client-tile {
  min-width: 180px; background: rgba(255,255,255,0.7); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-xl); padding: 16px;
  cursor: pointer; transition: transform 0.15s ease;
  flex-shrink: 0;
}
.client-tile:active { transform: scale(0.96); }
.client-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.client-av {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 500; font-size: 12px;
}
.client-av.p1 { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.client-av.p2 { background: linear-gradient(135deg, #0891b2, #164e63); }
.client-av.p3 { background: linear-gradient(135deg, #ec4899, #9d174d); }
.client-nm { font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; }
.client-sm { font-size: 11px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.client-status { font-size: 11.5px; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.client-progress {
  height: 5px; background: rgba(10,15,28,0.06); border-radius: 3px; overflow: hidden;
}
.client-progress span {
  display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 3px;
}
.client-progress.green span { background: linear-gradient(90deg, #10b981, var(--green)); }
.client-progress.red span { background: linear-gradient(90deg, #ef4444, var(--red)); }
.client-progress-label {
  display: flex; justify-content: space-between; font-size: 10px;
  color: var(--muted-light); font-family: var(--font-mono); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Feed Card ── */
.feed-card {
  background: rgba(255,255,255,0.7); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-2xl);
  padding: 4px 16px;
}
.feed-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(10,15,28,0.05);
  align-items: center; cursor: pointer;
  transition: opacity 0.15s;
}
.feed-item:last-child { border-bottom: none; }
.feed-item:active { opacity: 0.7; }
.feed-src {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; flex-shrink: 0;
}
.feed-src.slack { background: #4a154b; color: #ecb22e; }
.feed-src.wa { background: #25d366; color: white; }
.feed-src.gmail { background: #ea4335; color: white; }
.feed-src.zoom { background: #2d8cff; color: white; }
.feed-body { flex: 1; min-width: 0; }
.feed-t { font-size: 12.5px; color: var(--dark); letter-spacing: -0.005em; margin-bottom: 2px; line-height: 1.35; }
.feed-t b { font-weight: 600; }
.feed-m { font-size: 10.5px; color: var(--muted-light); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Bottom Tab Bar ── */
.tab-bar {
  position: absolute; bottom: 14px; left: 22px; right: 22px;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(30px);
  border-radius: var(--radius-4xl);
  padding: 8px;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 20px 50px rgba(10,15,28,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
}
.nav-tab {
  flex: 1; height: 44px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: rgba(246,246,244,0.55); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.2s ease;
}
.nav-tab svg, .nav-tab .icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; }
.nav-tab.active {
  background: rgba(246,246,244,0.14);
  color: #f6f6f4;
}
.nav-tab:active { transform: scale(0.9); }
.nav-fab {
  width: 44px; height: 44px; border-radius: 18px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--shadow-fab);
  cursor: pointer; transition: transform 0.15s ease;
}
.nav-fab:active { transform: scale(0.9); }
.nav-fab svg, .nav-fab .icon svg { width: 20px; height: 20px; stroke: white; stroke-width: 2; }
.tab-badge {
  position: absolute; top: 2px; right: 8px;
  background: var(--accent); color: white; font-size: 9px; font-weight: 600;
  min-width: 14px; height: 14px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* ── Action Sheet ── */
.action-sheet-overlay {
  position: absolute; inset: 0; z-index: 200;
  display: flex; flex-direction: column; justify-content: flex-end;
  pointer-events: none; opacity: 0;
  transition: opacity 0.25s ease;
}
.action-sheet-overlay.visible { pointer-events: auto; opacity: 1; }
.action-sheet-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,15,28,0.4);
  backdrop-filter: blur(4px);
}
.action-sheet {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(30px);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  padding: 12px 22px 30px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.action-sheet-overlay.visible .action-sheet { transform: translateY(0); }
.action-sheet-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(10,15,28,0.15);
  margin: 0 auto 16px;
}
.action-sheet-item {
  display: flex; gap: 14px; align-items: center; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.15s;
}
.action-sheet-item:last-of-type { border-bottom: none; }
.action-sheet-item:active { opacity: 0.6; }
.action-sheet-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.action-sheet-text { flex: 1; }
.action-sheet-title { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.action-sheet-sub { font-size: 12px; color: var(--muted); }
.action-sheet-cancel {
  text-align: center; padding: 14px; margin-top: 8px;
  font-size: 15px; font-weight: 500; color: var(--muted);
  cursor: pointer; border-radius: var(--radius-md);
}
.action-sheet-cancel:active { background: rgba(10,15,28,0.04); }

/* ── Login Screen ── */
.login-screen {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 700px; padding: 40px 30px;
}
.login-brand { text-align: center; margin-bottom: 48px; }
.login-brand-mark {
  width: 56px; height: 56px; border-radius: 18px; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-size: 22px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(10,15,28,0.3);
}
.login-brand-text {
  font-family: var(--font-display); font-size: 36px;
  letter-spacing: -0.02em; color: var(--dark);
}
.login-subtitle {
  font-size: 13px; color: var(--muted); margin-top: 4px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
}
.login-prompt {
  font-size: 14px; color: var(--muted); margin-bottom: 20px;
}
.login-cards { width: 100%; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.login-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--radius-xl);
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s ease;
}
.login-card:active { transform: scale(0.97); }
.login-card.selected { border-color: var(--accent); background: rgba(249,115,22,0.06); }
.login-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px; font-weight: 600;
}
.login-info { flex: 1; }
.login-name { font-size: 15px; font-weight: 500; color: var(--dark); }
.login-role { font-size: 12px; color: var(--muted); }
.login-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(10,15,28,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: all 0.2s;
}
.login-card.selected .login-check {
  background: var(--accent); border-color: var(--accent); color: white;
}
.login-card.selected .login-check::after { content: '✓'; }
.login-btn {
  width: 100%; height: 50px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.login-btn:disabled {
  background: rgba(10,15,28,0.08); color: var(--muted-light);
  box-shadow: none; cursor: not-allowed;
}
.login-btn:not(:disabled):active { transform: scale(0.97); }

/* ── Screen Headers ── */
.screen-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px 8px;
}
.screen-header-back { cursor: pointer; margin-right: 8px; }
.screen-title {
  font-family: var(--font-display); font-size: 28px;
  letter-spacing: -0.02em; color: var(--dark); flex: 1;
}
.screen-header-action {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.15s;
}
.screen-header-action:active { transform: scale(0.9); }

/* ── Search Bar ── */
.search-bar-wrap { padding: 8px 22px 12px; }
.search-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
}
.search-input {
  flex: 1; border: none; background: none; outline: none;
  font-size: 14px; color: var(--dark);
}
.search-input::placeholder { color: var(--muted-light); }
.search-clear { cursor: pointer; color: var(--muted); display: flex; }

/* ── Finder Cards ── */
.finder-content { padding: 0 22px; }
.finder-section-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 16px 0 8px; padding: 0 2px;
}
.finder-card {
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-lg);
  padding: 14px; margin-bottom: 8px;
  cursor: pointer; transition: transform 0.15s;
}
.finder-card:active { transform: scale(0.98); }
.finder-card-row { display: flex; align-items: center; gap: 12px; }
.finder-card-info { flex: 1; min-width: 0; }
.finder-card-name { font-size: 14px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em; }
.finder-card-meta { font-size: 12px; color: var(--muted); margin-top: 2px; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.finder-card-chev { color: var(--muted-light); }
.finder-card-stats {
  font-size: 11px; color: var(--muted); margin-top: 8px;
  display: flex; gap: 4px; align-items: center;
}
.finder-dot { color: var(--muted-light); }
.finder-eng-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.finder-progress-row { display: flex; align-items: center; gap: 8px; }
.finder-progress {
  flex: 1; height: 5px; background: rgba(10,15,28,0.06);
  border-radius: 3px; overflow: hidden;
}
.finder-progress span { display: block; height: 100%; border-radius: 3px; }
.finder-progress-pct {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); min-width: 30px; text-align: right;
}

/* ── Detail Views ── */
.detail-header { padding: 12px 22px; }
.detail-back {
  display: inline-flex; align-items: center; cursor: pointer; margin-bottom: 12px;
  color: var(--muted); transition: color 0.15s;
}
.detail-back:hover { color: var(--dark); }
.detail-title-row { display: flex; align-items: flex-start; gap: 14px; }
.detail-name { font-family: var(--font-display); font-size: 24px; letter-spacing: -0.02em; color: var(--dark); }
.detail-meta { font-size: 12px; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.detail-body { padding: 0 22px; }
.detail-section-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 20px 0 10px;
}
.detail-card {
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-lg);
  padding: 14px; margin-bottom: 8px;
  cursor: pointer; transition: transform 0.15s;
}
.detail-card:active { transform: scale(0.98); }
.detail-card-row { display: flex; align-items: center; gap: 10px; }
.detail-card-title { font-size: 14px; font-weight: 500; color: var(--dark); }
.detail-card-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.detail-contact-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.detail-contact-row:last-child { border-bottom: none; }
.contact-mini-av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 11px; font-weight: 600;
}
.detail-contact-actions { display: flex; gap: 8px; }
.detail-action-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--glass); border: var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--dark);
  transition: transform 0.15s;
}
.detail-action-btn:active { transform: scale(0.9); }
.detail-interaction-row {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.detail-interaction-row:last-child { border-bottom: none; }
.detail-interaction-type {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.06em; min-width: 50px; padding-top: 2px;
}
.detail-action-full {
  width: 100%; height: 44px; border-radius: var(--radius-md);
  background: var(--dark); color: var(--bg);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; transition: transform 0.15s;
}
.detail-action-full:active { transform: scale(0.97); }
.detail-action-full.secondary {
  background: var(--glass); color: var(--dark);
  border: var(--glass-border);
}

/* ── Engagement Detail ── */
.eng-progress-block {
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-lg);
  padding: 16px; margin-bottom: 8px;
}
.eng-progress-header {
  display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px;
  color: var(--muted);
}
.eng-dates {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-size: 11px; color: var(--muted-light); font-family: var(--font-mono);
}
.milestone-card { cursor: default; }
.milestone-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.eng-status-chip {
  font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}
.del-list { margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--border); }
.del-row {
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
  font-size: 12px;
}
.del-name { flex: 1; color: var(--dark); }
.del-due { color: var(--muted); font-family: var(--font-mono); font-size: 11px; }

/* ── Log Interaction Form ── */
.form-content { padding: 0 22px; }
.form-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin: 18px 0 8px;
}
.pill-row { display: flex; gap: 6px; flex-wrap: wrap; }
.form-pill {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  background: var(--glass); border: var(--glass-border);
  color: var(--muted); cursor: pointer;
  transition: all 0.15s;
}
.form-pill.active {
  background: var(--dark); color: var(--bg);
  border-color: var(--dark);
}
.form-pill:active { transform: scale(0.95); }
.form-select-wrap { position: relative; }
.form-select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  font-size: 14px; color: var(--dark);
  appearance: none; outline: none; cursor: pointer;
}
.form-textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  font-size: 14px; color: var(--dark); resize: vertical; min-height: 80px;
  outline: none;
}
.form-textarea::placeholder { color: var(--muted-light); }
.form-voice-btn {
  display: flex; align-items: center; gap: 6px; margin-top: 8px;
  font-size: 13px; color: var(--accent); font-weight: 500;
  cursor: pointer; padding: 6px 0;
}
.form-voice-btn:active { opacity: 0.7; }
.form-add-btn, .form-attach-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--dark); font-weight: 500;
  padding: 10px 14px; border-radius: var(--radius-md);
  background: var(--glass); border: 1px dashed rgba(10,15,28,0.15);
  width: 100%; cursor: pointer;
  transition: background 0.15s;
}
.form-add-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.form-add-btn:active:not(:disabled), .form-attach-btn:active { background: rgba(10,15,28,0.04); }
.form-submit-btn {
  width: 100%; height: 50px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white; font-size: 15px; font-weight: 600;
  margin-top: 20px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
  transition: transform 0.15s;
}
.form-submit-btn:active { transform: scale(0.97); }
.action-item-row {
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.ai-desc {
  flex: 1; padding: 10px 12px; border-radius: var(--radius-sm);
  background: var(--glass); border: var(--glass-border);
  font-size: 13px; color: var(--dark); outline: none;
}
.ai-desc::placeholder { color: var(--muted-light); }
.ai-date {
  width: 120px; padding: 10px 8px; border-radius: var(--radius-sm);
  background: var(--glass); border: var(--glass-border);
  font-size: 12px; color: var(--dark); outline: none;
  font-family: var(--font-mono);
}
.ai-remove { cursor: pointer; color: var(--muted); display: flex; }
.ai-remove:active { color: var(--red); }

/* ── Context Messages ── */
.context-msgs {
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-lg);
  padding: 4px 14px;
}
.context-msg {
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.context-msg:last-child { border-bottom: none; }
.context-msg-from { font-size: 12px; color: var(--dark); margin-bottom: 3px; }
.context-msg-text { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.context-msg-time { font-size: 10px; color: var(--muted-light); font-family: var(--font-mono); margin-top: 4px; }

/* ── Contacts Screen ── */
.contacts-list { padding: 0 22px; }
.contact-group-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted-light);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 14px 0 6px; padding-left: 2px;
}
.contact-card {
  background: var(--glass); backdrop-filter: var(--glass-blur);
  border: var(--glass-border); border-radius: var(--radius-md);
  padding: 12px 14px; margin-bottom: 6px;
  cursor: pointer; transition: transform 0.15s;
}
.contact-card:active { transform: scale(0.98); }
.contact-card-row { display: flex; align-items: center; gap: 12px; }
.contact-card-info { flex: 1; min-width: 0; }
.contact-card-name { font-size: 14px; font-weight: 500; color: var(--dark); }
.contact-card-org { font-size: 12px; color: var(--muted); margin-top: 1px; }
.contact-card-right { display: flex; align-items: center; gap: 10px; }
.strength-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.contact-actions-mini { display: flex; gap: 6px; }
.contact-action-btn {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: rgba(10,15,28,0.04); display: flex; align-items: center; justify-content: center;
  color: var(--dark); cursor: pointer; transition: transform 0.15s;
}
.contact-action-btn:active { transform: scale(0.85); }

/* Contact Expanded Overlay */
.contact-overlay {
  position: absolute; inset: 0; z-index: 150;
  background: rgba(10,15,28,0.4); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.contact-overlay.visible { opacity: 1; pointer-events: auto; }
.contact-expanded {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(30px);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  padding: 20px 22px 30px; width: 100%;
  max-height: 80%;
  overflow-y: auto;
}
.contact-exp-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-exp-name { font-size: 18px; font-weight: 500; color: var(--dark); }
.contact-exp-org { font-size: 13px; color: var(--muted); }
.contact-exp-close { margin-left: auto; cursor: pointer; color: var(--muted); }
.contact-exp-details { margin-bottom: 12px; }
.contact-exp-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--dark); padding: 4px 0;
}
.contact-exp-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.contact-tag {
  padding: 3px 10px; border-radius: var(--radius-pill);
  background: rgba(10,15,28,0.05); font-size: 11px; color: var(--dark);
  font-family: var(--font-mono);
}
.contact-exp-section {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin: 14px 0 8px;
}
.contact-exp-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.contact-chip {
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(249,115,22,0.08); color: var(--accent-dark);
  font-size: 12px; font-weight: 500; cursor: pointer;
}
.contact-chip:active { opacity: 0.7; }
.contact-exp-interaction {
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.contact-exp-interaction:last-child { border-bottom: none; }
.contact-exp-actions { display: flex; gap: 8px; margin-top: 16px; }
.contact-btn-primary {
  flex: 1; height: 42px; border-radius: var(--radius-md);
  background: var(--dark); color: var(--bg);
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: transform 0.15s;
}
.contact-btn-primary:active { transform: scale(0.95); }
.contact-btn-secondary {
  flex: 1; height: 42px; border-radius: var(--radius-md);
  background: var(--glass); border: var(--glass-border);
  color: var(--dark); font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: transform 0.15s;
}
.contact-btn-secondary:active { transform: scale(0.95); }

/* Add Contact Form */
.add-contact-form {
  padding: 0 22px 16px;
  background: rgba(249,115,22,0.04);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.add-form-row { display: flex; gap: 8px; }
.form-input, .form-input-half {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--surface-solid); border: var(--glass-border);
  font-size: 14px; color: var(--dark); outline: none;
  margin-bottom: 8px;
}
.form-input::placeholder, .form-input-half::placeholder { color: var(--muted-light); }
.form-input-half { flex: 1; }

/* ── Schedule Screen ── */
.day-selector {
  display: flex; gap: 6px; padding: 8px 22px 16px;
  overflow-x: auto; scrollbar-width: none;
}
.day-selector::-webkit-scrollbar { display: none; }
.day-pill {
  min-width: 44px; padding: 8px 4px; border-radius: var(--radius-md);
  text-align: center; cursor: pointer;
  background: var(--glass); border: var(--glass-border);
  transition: all 0.2s;
  flex-shrink: 0;
}
.day-pill:active { transform: scale(0.92); }
.day-pill.active {
  background: var(--dark); border-color: var(--dark);
}
.day-pill.active .day-label, .day-pill.active .day-date { color: var(--bg); }
.day-pill.today .day-date { color: var(--accent); font-weight: 600; }
.day-pill.active.today .day-date { color: var(--accent); }
.day-label {
  font-family: var(--font-mono); font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px;
}
.day-date { font-size: 16px; font-weight: 500; color: var(--dark); }
.schedule-events { padding: 0 22px; }

/* Event Detail Overlay */
.event-detail-overlay {
  position: absolute; inset: 0; z-index: 150;
  background: rgba(10,15,28,0.4); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 22px;
}
.event-detail-card {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(30px);
  border-radius: var(--radius-xl); padding: 22px;
  width: 100%; position: relative;
}
.event-detail-close {
  position: absolute; top: 16px; right: 16px;
  cursor: pointer; color: var(--muted);
}
.event-detail-title { font-size: 18px; font-weight: 500; color: var(--dark); margin-bottom: 12px; padding-right: 30px; }
.event-detail-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); padding: 4px 0;
}
.event-detail-actions { margin-top: 16px; }

/* Create Meeting Form */
.create-meeting-form {
  padding: 0 22px 16px;
  background: rgba(8,145,178,0.04);
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.form-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; font-size: 14px; color: var(--dark);
}
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: rgba(10,15,28,0.12); border-radius: 12px;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: ''; position: absolute; width: 18px; height: 18px;
  left: 3px; bottom: 3px; background: white;
  border-radius: 50%; transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── Notifications Screen ── */
.notif-content { padding: 0 22px; }
.notif-group-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted-light);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 16px 0 8px; padding-left: 2px;
}
.notif-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.2s;
  position: relative;
}
.notif-row:last-child { border-bottom: none; }
.notif-row:active { opacity: 0.7; }
.notif-row.read { opacity: 0.55; }
.notif-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.notif-icon.red { background: rgba(220,38,38,0.1); color: var(--red); }
.notif-icon.amber { background: rgba(249,115,22,0.12); color: var(--accent-dark); }
.notif-icon.blue { background: rgba(30,64,175,0.1); color: var(--blue); }
.notif-icon.green { background: rgba(5,150,105,0.1); color: var(--green); }
.notif-icon.purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 13.5px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.notif-text { font-size: 12px; color: var(--muted); line-height: 1.4; margin-bottom: 4px; }
.notif-time { font-size: 10.5px; color: var(--muted-light); font-family: var(--font-mono); }
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 4px;
  transition: opacity 0.3s ease;
}

/* ── Empty States ── */
.empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 20px; text-align: center;
}
.empty-state-icon {
  color: var(--muted-light); margin-bottom: 16px; opacity: 0.5;
}
.empty-state-title {
  font-size: 16px; font-weight: 500; color: var(--dark); margin-bottom: 6px;
}
.empty-state-msg {
  font-size: 13px; color: var(--muted);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes focusEntry {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.screen-animate {
  animation: fadeUp 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}

.metric-card:nth-child(2) { animation-delay: 0.08s; }
.tl-item:nth-child(1) { animation: fadeUp 0.4s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
.tl-item:nth-child(2) { animation: fadeUp 0.4s 0.12s cubic-bezier(0.16,1,0.3,1) both; }
.tl-item:nth-child(3) { animation: fadeUp 0.4s 0.19s cubic-bezier(0.16,1,0.3,1) both; }
.tl-item:nth-child(4) { animation: fadeUp 0.4s 0.26s cubic-bezier(0.16,1,0.3,1) both; }
.client-tile:nth-child(1) { animation: fadeUp 0.4s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
.client-tile:nth-child(2) { animation: fadeUp 0.4s 0.12s cubic-bezier(0.16,1,0.3,1) both; }
.client-tile:nth-child(3) { animation: fadeUp 0.4s 0.19s cubic-bezier(0.16,1,0.3,1) both; }
.feed-item:nth-child(1) { animation: fadeUp 0.3s 0.05s cubic-bezier(0.16,1,0.3,1) both; }
.feed-item:nth-child(2) { animation: fadeUp 0.3s 0.1s cubic-bezier(0.16,1,0.3,1) both; }
.feed-item:nth-child(3) { animation: fadeUp 0.3s 0.15s cubic-bezier(0.16,1,0.3,1) both; }
.feed-item:nth-child(4) { animation: fadeUp 0.3s 0.2s cubic-bezier(0.16,1,0.3,1) both; }

/* Icon sizing fix */
.icon { line-height: 0; }
.icon svg { width: 100%; height: 100%; }
