#phurt-connect-app.phurt-connect {
  --pc-yellow: #FFD500;
  --pc-black: #121212;
  --pc-gray: #6B6B6B;
  --pc-bg: #F7F6EF;
  --pc-card: rgba(255,255,255,.86);
  --pc-border: rgba(18,18,18,.08);
  --pc-green: #25D366;
  --pc-orange: #F97316;
  --pc-blue: #3B82F6;
  --pc-radius: 24px;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--pc-black);
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,213,0,.28), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(18,18,18,.08), transparent 30%),
    linear-gradient(135deg, #FBFAF3 0%, #F3F1E8 52%, #FFFFFF 100%);
  border-radius: 28px;
}

#phurt-connect-app * {
  box-sizing: border-box;
}

.pc-loader {
  position: absolute;
  inset: 0;
  z-index: 60;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}

.pc-loader-logo {
  width: 128px;
  height: 54px;
  border-radius: 16px;
  background: #000;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  padding: 10px 14px;
  animation: pcPop 1.1s ease infinite alternate;
}

.pc-loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-loader p {
  margin: 7px 0 0;
  opacity: .48;
  font-size: 12px;
}

@keyframes pcPop {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-8px) scale(1.04); }
}

.pc-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.pc-orb-one {
  width: 220px;
  height: 220px;
  left: 290px;
  top: 55px;
  background: rgba(255,213,0,.18);
  filter: blur(2px);
}

.pc-orb-two {
  width: 260px;
  height: 260px;
  right: -50px;
  bottom: 70px;
  background: rgba(18,18,18,.055);
}

.pc-shell {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 900px;
  position: relative;
  z-index: 2;
}

.pc-sidebar {
  background: rgba(18,18,18,.95);
  color: #fff;
  padding: 28px 22px;
}

.pc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.pc-brand-icon {
  width: 118px;
  height: 46px;
  border-radius: 14px;
  background: #000;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  box-shadow: 0 12px 32px rgba(255,213,0,.12);
  flex: 0 0 auto;
}

.pc-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-brand h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.5px;
}

.pc-brand span {
  display: block;
  color: rgba(255,255,255,.54);
  font-size: 11px;
  margin-top: 3px;
}

.pc-nav {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.72);
  padding: 14px 15px;
  border-radius: 15px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 7px;
  font-family: inherit;
  transition: .25s;
}

.pc-nav:hover,
.pc-nav.active {
  background: rgba(255,213,0,.13);
  color: #fff;
}

.pc-note {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,.44);
  margin-top: 26px;
}

.pc-main {
  padding: 30px;
}

.pc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.pc-topbar h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -1.2px;
  font-weight: 900;
  color: var(--pc-black);
}

.pc-topbar p {
  margin: 7px 0 0;
  color: rgba(18,18,18,.58);
  font-size: 14px;
}

.pc-status {
  background: rgba(37,211,102,.13);
  border: 1px solid rgba(37,211,102,.28);
  color: #15803D;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pc-status span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--pc-green);
  border-radius: 999px;
  margin-right: 7px;
  box-shadow: 0 0 0 rgba(37,211,102,.6);
  animation: pcPulse 1.7s infinite;
}

@keyframes pcPulse {
  70% { box-shadow: 0 0 0 11px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


.pc-brand-watermark {
  display: flex;
  justify-content: flex-end;
  margin: -8px 0 16px;
  pointer-events: none;
}

.pc-brand-watermark img {
  width: 92px;
  max-height: 34px;
  object-fit: contain;
  opacity: .32;
  filter: saturate(.9);
  border-radius: 8px;
}

.pc-section {
  display: none;
}

.pc-section.active {
  display: block;
}

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

.pc-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-bottom: 18px;
}

.pc-card {
  background: var(--pc-card);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(18,18,18,.10);
  backdrop-filter: blur(18px);
  transition: .28s ease;
  color: var(--pc-black);
}

.pc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,213,0,.5);
  box-shadow: 0 30px 90px rgba(18,18,18,.13);
}

.pc-card small {
  display: block;
  color: rgba(18,18,18,.56);
  font-size: 12px;
  margin-bottom: 8px;
}

.pc-card strong {
  display: block;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
}

.pc-card em {
  color: rgba(18,18,18,.46);
  font-style: normal;
  font-size: 12px;
}

.pc-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.pc-card-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.pc-card-title span {
  border: 1px solid rgba(255,213,0,.34);
  background: rgba(255,213,0,.16);
  color: #8B7300;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
}

.pc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 13px;
}

.pc-form-grid input,
.pc-form-grid select,
.pc-card textarea {
  width: 100%;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.88);
  color: var(--pc-black);
  border-radius: 14px;
  padding: 13px 14px;
  font-family: inherit;
  outline: none;
  transition: .2s;
}

.pc-card textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 14px;
}

.pc-form-grid input:focus,
.pc-form-grid select:focus,
.pc-card textarea:focus {
  border-color: rgba(255,213,0,.78);
  box-shadow: 0 0 0 4px rgba(255,213,0,.16);
}

.pc-btn {
  border: none;
  border-radius: 14px;
  padding: 13px 16px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}

.pc-btn:hover {
  transform: translateY(-1px);
}

.pc-btn-primary {
  background: var(--pc-yellow);
  color: var(--pc-black);
  box-shadow: 0 14px 32px rgba(255,213,0,.24);
}

.pc-btn-green {
  background: var(--pc-green);
  color: #05170B;
}

.pc-btn-dark {
  background: rgba(18,18,18,.08);
  color: var(--pc-black);
}

.pc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pc-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.pc-table {
  width: 100%;
  border-collapse: collapse;
}

.pc-table th,
.pc-table td {
  padding: 13px 11px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  text-align: left;
  font-size: 13px;
}

.pc-table th {
  color: rgba(18,18,18,.52);
  font-weight: 700;
}

.pc-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.pc-approved { background: rgba(37,211,102,.15); color: #15803D; }
.pc-pending { background: rgba(255,213,0,.2); color: #8B7300; }
.pc-change { background: rgba(249,115,22,.14); color: #C2410C; }
.pc-lead { background: rgba(59,130,246,.14); color: #1D4ED8; }

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pc-list-item {
  background: rgba(18,18,18,.035);
  border: 1px solid rgba(18,18,18,.07);
  border-radius: 16px;
  padding: 14px;
}

.pc-list-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.pc-list-item small {
  color: rgba(18,18,18,.54);
  font-size: 12px;
}

.pc-phone {
  background: #0B141A;
  border-radius: 30px;
  padding: 18px;
  color: #fff;
  min-height: 320px;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.03), 0 24px 70px rgba(18,18,18,.18);
}

.pc-phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
}

.pc-phone-head .pc-phone-logo {
  width: 62px;
  height: 28px;
  border-radius: 9px;
  background: #000;
  display: grid;
  place-items: center;
  padding: 5px 7px;
}

.pc-phone-head .pc-phone-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pc-bubble {
  background: #202C33;
  padding: 12px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 38px 12px 0;
}

.pc-bubble.sent {
  background: #005C4B;
  border-radius: 16px 16px 4px 16px;
  margin: 0 0 12px 38px;
}

.pc-kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}

.pc-column {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 20px;
  padding: 14px;
  min-height: 280px;
}

.pc-column h4 {
  margin: 0 0 13px;
  font-size: 13px;
  color: rgba(18,18,18,.62);
}

.pc-art {
  background: #fff;
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 16px;
  padding: 13px;
  margin-bottom: 12px;
  box-shadow: 0 12px 35px rgba(18,18,18,.07);
}

.pc-art-thumb {
  height: 105px;
  border-radius: 14px;
  margin-bottom: 10px;
  background:
    linear-gradient(135deg, rgba(255,213,0,.86), rgba(255,255,255,.25)),
    radial-gradient(circle at 72% 24%, rgba(255,255,255,.9), transparent 23%);
  display: grid;
  place-items: center;
  font-weight: 900;
  text-align: center;
}

.pc-art img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

.pc-art strong {
  font-size: 14px;
}

.pc-art small {
  color: rgba(18,18,18,.54);
  font-size: 12px;
}

.pc-art .pc-actions {
  margin-top: 10px;
}

.pc-ai-result {
  background: rgba(18,18,18,.04);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 16px;
  padding: 14px;
  display: none;
}

.pc-floating {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--pc-yellow);
  color: var(--pc-black);
  border: none;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(255,213,0,.28);
  z-index: 5;
}

.pc-toast {
  position: absolute;
  right: 28px;
  bottom: 96px;
  background: #121212;
  color: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  max-width: 340px;
  display: none;
  z-index: 20;
  font-size: 13px;
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.pc-animated {
  opacity: 0;
  transform: translateY(22px) scale(.985);
}

@media (max-width: 1100px) {
  .pc-shell {
    grid-template-columns: 1fr;
  }

  .pc-metrics,
  .pc-grid,
  .pc-kanban {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  .pc-main {
    padding: 20px;
  }

  .pc-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pc-metrics,
  .pc-grid,
  .pc-form-grid,
  .pc-kanban {
    grid-template-columns: 1fr;
  }

  .pc-topbar h1 {
    font-size: 25px;
  }
}
