:root {
  --pc-bg: #eef4ff;
  --pc-surface: #ffffff;
  --pc-surface-muted: #f8fbff;
  --pc-surface-strong: #0b1224;
  --pc-navy: #07111f;
  --pc-indigo: #172554;
  --pc-indigo-soft: #243b88;
  --pc-blue: #1d9bf0;
  --pc-blue-hover: #0b7fd3;
  --pc-green: #22c55e;
  --pc-green-hover: #16a34a;
  --pc-cyan: #67e8f9;
  --pc-border: #dbe7ff;
  --pc-border-strong: #b9ccf5;
  --pc-text: #101827;
  --pc-text-muted: #526178;
  --pc-text-on-dark: #f8fbff;
  --pc-link: #1d4ed8;
  --pc-link-hover: #0f3ea8;
  --pc-focus: #22c55e;
  --pc-accent: #22c55e;
  --pc-accent-hover: #16a34a;
  --pc-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --pc-shadow-soft: 0 16px 42px rgba(15, 23, 42, 0.1);
  --pc-radius: 18px;
  --pc-radius-sm: 12px;
  --pc-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--pc-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Plus Jakarta Sans", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.62;
  font-size: 16px;
  color: var(--pc-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 155, 240, 0.18), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(34, 197, 94, 0.14), transparent 28%),
    linear-gradient(180deg, #f4f8ff 0%, #eef4ff 38%, #ffffff 100%);
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 14px;
  z-index: 1200;
  padding: 10px 12px;
  border-radius: var(--pc-radius-sm);
  background: var(--pc-green);
  color: #03111f;
  font-weight: 800;
}

.skip-link:focus-visible {
  top: 12px;
}

.pc-topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px clamp(14px, 3vw, 34px);
  border-bottom: 1px solid rgba(219, 231, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.pc-nav-inner {
  max-width: var(--pc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.pc-brand {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--pc-navy);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.pc-brand-accent {
  color: var(--pc-blue);
}

.pc-nav-links,
.pc-topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pc-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-nav-links a,
.pc-topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #23324a;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.pc-nav-links a:hover,
.pc-topnav a:hover {
  transform: translate3d(0, -2px, 0);
  border-color: var(--pc-border);
  background: #f4f8ff;
  color: var(--pc-link);
}

.pc-nav-links a[aria-current="page"],
.pc-topnav a[aria-current="page"] {
  background: #eaf3ff;
  border-color: var(--pc-border-strong);
  color: var(--pc-link);
}

.pc-wrap {
  position: relative;
  max-width: var(--pc-max);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) 18px 52px;
}

.pc-wrap::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(29, 155, 240, 0.18), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(34, 197, 94, 0.16), transparent 28%);
}

.pc-panel {
  border: 1px solid rgba(219, 231, 255, 0.92);
  border-radius: var(--pc-radius);
  background: var(--pc-surface);
  box-shadow: var(--pc-shadow-soft);
}

.pc-header,
.pc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px);
  border: 0;
  color: var(--pc-text-on-dark);
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 155, 240, 0.32), transparent 30%),
    radial-gradient(circle at 18% 10%, rgba(34, 197, 94, 0.18), transparent 26%),
    linear-gradient(135deg, var(--pc-navy), var(--pc-indigo) 58%, #0f2b5c);
  box-shadow: 0 30px 90px rgba(7, 17, 31, 0.28);
}

.pc-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
}

.pc-hero-copy {
  max-width: 680px;
}

.pc-kicker {
  margin: 0 0 10px;
  color: var(--pc-blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pc-header .pc-kicker,
.pc-hero .pc-kicker {
  color: var(--pc-cyan);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--pc-text);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.pc-header h1,
.pc-hero h1 {
  color: #ffffff;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 6vw, 5.25rem);
}

.pc-header h1 {
  max-width: 900px;
}

.pc-hero--split h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7.4vw, 6.1rem);
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

p,
li,
td,
th {
  color: var(--pc-text);
}

.pc-lead {
  margin: 0 0 12px;
  max-width: 68ch;
  color: var(--pc-text-muted);
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
}

.pc-header .pc-lead,
.pc-hero .pc-lead {
  color: rgba(248, 251, 255, 0.82);
}

a {
  color: var(--pc-link);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

a:hover {
  color: var(--pc-link-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pc-focus);
  outline-offset: 3px;
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pc-btn,
button.pc-btn,
a.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pc-green), #52e083);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.28);
  color: #04111f;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.pc-btn:hover,
button.pc-btn:hover,
a.pc-btn:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 22px 48px rgba(34, 197, 94, 0.34);
  color: #03111f;
}

.pc-btn:active,
button.pc-btn:active,
a.pc-btn:active {
  transform: translate3d(0, 0, 0) scale(0.98);
}

.pc-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  box-shadow: none;
}

.pc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(29, 155, 240, 0.18);
}

.pc-topnav .pc-btn--ghost {
  background: #f4f8ff;
  border-color: var(--pc-border);
  color: var(--pc-link);
}

.pc-topnav .pc-btn--ghost:hover {
  background: #eaf3ff;
  color: var(--pc-link-hover);
}

.pc-btn-nav {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.pc-main {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
}

.pc-section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--pc-border);
}

.pc-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.pc-section > p {
  max-width: 70ch;
  color: var(--pc-text-muted);
}

.pc-home-grid,
.pc-home-stat-grid,
.pc-grid,
.pc-feature-row {
  display: grid;
  gap: 18px;
}

.pc-home-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pc-home-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.pc-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pc-feature-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-card,
.pc-stat,
.pc-meta,
.pc-toc,
.pc-note {
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-sm);
  background: #ffffff;
  box-shadow: var(--pc-shadow-soft);
}

.pc-card,
.pc-stat {
  position: relative;
  overflow: hidden;
  padding: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pc-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pc-card:hover,
.pc-stat:hover {
  transform: translate3d(0, -6px, 0);
  border-color: var(--pc-border-strong);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.pc-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.pc-card p:last-child,
.pc-section p:last-child {
  margin-bottom: 0;
}

.pc-card-kicker,
.pc-trust-strip span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #bfe0ff;
  border-radius: 999px;
  background: #eaf6ff;
  color: #09599b;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-card-kicker {
  margin-bottom: 12px;
  padding: 5px 10px;
}

.pc-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 0;
}

.pc-trust-strip span {
  padding: 8px 13px;
}

.pc-meta {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.pc-meta p {
  margin: 0 0 7px;
  color: rgba(248, 251, 255, 0.84);
}

.pc-meta p:last-child {
  margin-bottom: 0;
}

.pc-meta a {
  color: var(--pc-cyan);
}

.pc-toc {
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.pc-toc h2 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.pc-toc ul {
  margin: 0;
  padding-left: 18px;
}

.pc-note {
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 5px solid var(--pc-green);
  background: #f0fdf4;
}

.pc-table-wrap {
  overflow-x: auto;
  margin: 12px 0 16px;
  border-radius: var(--pc-radius-sm);
  box-shadow: var(--pc-shadow-soft);
}

.pc-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border: 1px solid var(--pc-border);
  background: #ffffff;
}

.pc-table th,
.pc-table td {
  border: 1px solid var(--pc-border);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.pc-table th {
  background: #edf5ff;
  color: #0f2342;
  font-weight: 950;
}

.pc-small {
  font-size: 0.94rem;
  color: var(--pc-text-muted);
}

.pc-hero-console {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(7, 17, 31, 0.42);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  animation: pcFloatPanel 7s ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.pc-hero-console::before,
.pc-hero-console::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.pc-hero-console::before {
  inset: -18% -12% auto auto;
  width: 170px;
  height: 170px;
  background: rgba(29, 155, 240, 0.26);
}

.pc-hero-console::after {
  inset: auto auto -18% -12%;
  width: 190px;
  height: 190px;
  background: rgba(34, 197, 94, 0.18);
}

.pc-console-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.pc-console-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

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

.pc-console-grid div {
  position: relative;
  z-index: 1;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.pc-console-grid div:hover {
  transform: translate3d(0, -4px, 0);
  background: rgba(255, 255, 255, 0.18);
}

.pc-console-grid strong,
.pc-stat strong {
  display: block;
  color: var(--pc-green);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.pc-console-grid span,
.pc-stat span {
  display: block;
  color: var(--pc-text-muted);
  font-size: 0.92rem;
}

.pc-console-grid span {
  color: rgba(248, 251, 255, 0.78);
}

.pc-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(34, 197, 94, 0.18), transparent 32%),
    linear-gradient(135deg, #07111f, #172554);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.24);
}

.pc-cta-band h2,
.pc-cta-band p {
  color: #ffffff;
}

.pc-cta-band h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.pc-footer {
  margin-top: 22px;
  padding: 26px 30px;
  background: #ffffff;
}

.pc-footer h2 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.pc-legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.pc-legal-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
}

.pc-legal-links a:hover {
  background: #eef6ff;
}

.pc-legal-note {
  margin: 14px 0 0;
  color: var(--pc-text-muted);
}

.pc-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 0.72s cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--pc-reveal-delay, 0ms);
}

.pc-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.pc-motion-ready .pc-topnav {
  animation: pcNavDrop 520ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.pc-motion-ready .pc-hero,
.pc-motion-ready .pc-header {
  animation: pcHeroRise 760ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

@keyframes pcNavDrop {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pcHeroRise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pcFloatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

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

  .pc-card:hover,
  .pc-stat:hover,
  .pc-btn:hover,
  button.pc-btn:hover,
  a.pc-btn:hover,
  .pc-nav-links a:hover,
  .pc-topnav a:hover {
    transform: none;
  }

  .pc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pc-hero-console {
    animation: none;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 15px;
  }

  .pc-wrap {
    padding: 14px 10px 28px;
  }

  .pc-nav-inner,
  .pc-hero--split,
  .pc-feature-row,
  .pc-cta-band {
    grid-template-columns: 1fr;
  }

  .pc-brand,
  .pc-nav-actions {
    justify-content: center;
  }

  .pc-topnav ul,
  .pc-nav-links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .pc-topnav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .pc-header,
  .pc-hero,
  .pc-main,
  .pc-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pc-hero--split h1 {
    max-width: none;
  }

  .pc-console-grid {
    grid-template-columns: 1fr;
  }

  .pc-legal-links {
    display: block;
  }

  .pc-legal-links li {
    margin-bottom: 8px;
  }
}

@media print {
  :root {
    --pc-bg: #ffffff;
    --pc-surface: #ffffff;
    --pc-surface-muted: #ffffff;
    --pc-border: #999999;
    --pc-text: #000000;
    --pc-text-muted: #111111;
    --pc-link: #000000;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
    line-height: 1.5;
  }

  .skip-link,
  .pc-topnav {
    display: none;
  }

  .pc-wrap {
    max-width: 100%;
    padding: 0;
  }

  .pc-panel,
  .pc-header,
  .pc-hero,
  .pc-main,
  .pc-footer,
  .pc-card,
  .pc-meta,
  .pc-note,
  .pc-toc {
    box-shadow: none;
    border-radius: 0;
    background: #ffffff;
    color: #000000;
  }

  .pc-header h1,
  .pc-hero h1,
  .pc-header .pc-lead,
  .pc-hero .pc-lead,
  .pc-meta p {
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}


/* EkatraCore visual refresh */
@media screen {
  .pc-topnav {
    padding: 14px clamp(14px, 3vw, 40px);
  }

  .pc-nav-inner {
    max-width: 1480px;
    grid-template-columns: minmax(220px, auto) 1fr auto;
  }

  .pc-brand--ekatra {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-height: 54px;
    padding: 4px 0;
    background: transparent;
    border: 0;
  }

  .pc-brand-word {
    position: relative;
    display: inline-flex;
    font-size: clamp(1.35rem, 2.4vw, 2.15rem);
    font-weight: 1000;
    line-height: 0.9;
    letter-spacing: -0.08em;
    color: transparent;
    background: linear-gradient(110deg, #07111f 0%, #1d9bf0 38%, #22c55e 58%, #07111f 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    animation: pcBrandShimmer 5.5s ease-in-out infinite;
  }

  .pc-brand-word::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
    transform-origin: left;
    animation: pcBrandUnderline 2.6s cubic-bezier(0.2, 0.72, 0.18, 1) infinite;
  }

  .pc-brand-slogan {
    margin-top: 8px;
    color: #44546d;
    font-size: clamp(0.56rem, 0.9vw, 0.72rem);
    font-weight: 950;
    letter-spacing: 0.16em;
    line-height: 1;
  }

  .pc-wrap {
    max-width: none;
    width: 100%;
    padding: 0 0 56px;
  }

  .pc-hero,
  .pc-header {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: clamp(56px, 8vw, 112px) clamp(20px, 7vw, 112px);
  }

  .pc-hero::after,
  .pc-header::after {
    content: "";
    position: absolute;
    inset: auto -8% -34% 46%;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.26), transparent 66%);
    pointer-events: none;
    animation: pcGlowDrift 9s ease-in-out infinite;
  }

  .pc-hero-copy,
  .pc-header > :not(.pc-meta) {
    position: relative;
    z-index: 1;
  }

  .pc-main {
    width: 100%;
    max-width: none;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .pc-section,
  .pc-toc,
  .pc-footer {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }

  .pc-section {
    width: min(1280px, calc(100% - 36px));
    margin-top: 0;
    padding: clamp(44px, 6vw, 80px) 0;
    border-top: 0;
  }

  .pc-section:nth-of-type(even) {
    position: relative;
  }

  .pc-section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 18px calc(50% - 50vw);
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(234, 246, 255, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .pc-toc {
    width: min(1280px, calc(100% - 36px));
    margin-top: clamp(28px, 4vw, 50px);
  }

  .pc-footer {
    width: min(1280px, calc(100% - 36px));
    margin-top: clamp(34px, 5vw, 70px);
  }

  .pc-home-grid,
  .pc-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .pc-feature-row {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }

  .pc-card,
  .pc-stat,
  .pc-toc,
  .pc-note {
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  }

  .pc-app-visual {
    --pc-parallax-x: 0;
    --pc-parallax-y: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .pc-app-visual--hero {
    transform:
      translate3d(calc(var(--pc-parallax-x) * -14px), calc(var(--pc-parallax-y) * -14px), 0);
    transition: transform 0.18s ease-out;
  }

  .pc-dashboard-frame {
    position: relative;
    z-index: 1;
  }

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

  .pc-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .pc-visual-card--wide {
    grid-column: span 2;
    min-height: 170px;
  }

  .pc-visual-label,
  .pc-visual-trend {
    display: block;
    color: rgba(248, 251, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pc-visual-card strong {
    display: block;
    margin-top: 14px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.07em;
    line-height: 0.95;
  }

  .pc-visual-trend {
    margin-top: 10px;
    color: var(--pc-green);
  }

  .pc-chart-svg {
    width: 100%;
    height: 128px;
    margin-top: 12px;
  }

  .pc-chart-area {
    fill: rgba(34, 197, 94, 0.18);
  }

  .pc-chart-line {
    fill: none;
    stroke: #67e8f9;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: pcDrawChart 2.4s cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
  }

  .pc-module-stack {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pc-module-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    transition: transform 0.22s ease, background-color 0.22s ease;
  }

  .pc-module-pill:hover {
    transform: translate3d(0, -3px, 0);
    background: rgba(34, 197, 94, 0.24);
  }

  .pc-app-visual--band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    width: 100%;
    max-width: none;
    padding: clamp(52px, 7vw, 90px) clamp(20px, 7vw, 112px);
    background:
      radial-gradient(circle at 12% 20%, rgba(29, 155, 240, 0.14), transparent 30%),
      linear-gradient(135deg, #f8fbff, #ffffff 42%, #ecf7ff);
  }

  .pc-visual-copy {
    max-width: 620px;
  }

  .pc-convergence-map {
    position: relative;
    min-height: 260px;
    border: 1px solid var(--pc-border);
    border-radius: 26px;
    background:
      radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.14), transparent 24%),
      linear-gradient(135deg, #ffffff, #eef6ff);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    transform:
      translate3d(calc(var(--pc-parallax-x) * 10px), calc(var(--pc-parallax-y) * 10px), 0);
    transition: transform 0.18s ease-out;
  }

  .pc-convergence-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .pc-convergence-map path {
    fill: none;
    stroke: rgba(29, 78, 216, 0.22);
    stroke-width: 3;
    stroke-dasharray: 12 12;
    animation: pcFlowDash 12s linear infinite;
  }

  .pc-node {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pc-navy);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.13);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: pcNodeFloat 6s ease-in-out infinite;
  }

  .pc-node--core {
    left: 50%;
    top: 50%;
    min-width: 104px;
    min-height: 58px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pc-blue), var(--pc-green));
    transform: translate(-50%, -50%);
  }

  .pc-node--finance { left: 10%; top: 14%; animation-delay: 0.2s; }
  .pc-node--stock { right: 10%; top: 14%; animation-delay: 0.6s; }
  .pc-node--clients { left: 9%; bottom: 16%; animation-delay: 0.9s; }
  .pc-node--reports { right: 9%; bottom: 16%; animation-delay: 1.2s; }

  .pc-reveal.is-visible .pc-visual-card,
  .pc-reveal.is-visible .pc-node {
    animation-play-state: running;
  }
}

@keyframes pcBrandShimmer {
  0%,
  100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pcBrandUnderline {
  0%,
  100% { transform: scaleX(0.38); opacity: 0.7; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes pcDrawChart {
  to { stroke-dashoffset: 0; }
}

@keyframes pcFlowDash {
  to { stroke-dashoffset: -120; }
}

@keyframes pcNodeFloat {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes pcGlowDrift {
  0%,
  100% { transform: translate3d(0, 0, 0); opacity: 0.85; }
  50% { transform: translate3d(-8%, -12%, 0); opacity: 1; }
}

@media (max-width: 980px) {
  .pc-nav-inner {
    grid-template-columns: 1fr;
  }

  .pc-brand--ekatra {
    align-items: center;
    text-align: center;
  }

  .pc-app-visual--band {
    grid-template-columns: 1fr;
  }

  .pc-convergence-map {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .pc-brand-word {
    font-size: 1.38rem;
    letter-spacing: -0.06em;
  }

  .pc-brand-slogan {
    font-size: 0.54rem;
    letter-spacing: 0.11em;
  }

  .pc-dashboard-grid,
  .pc-console-grid {
    grid-template-columns: 1fr;
  }

  .pc-visual-card--wide,
  .pc-module-stack {
    grid-column: auto;
  }

  .pc-node {
    min-width: 74px;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-brand-word,
  .pc-brand-word::after,
  .pc-chart-line,
  .pc-convergence-map path,
  .pc-node,
  .pc-hero::after,
  .pc-header::after {
    animation: none !important;
  }
}


/* Premium SaaS graphic system */
@media screen {
  .pc-product-cockpit {
    min-height: 540px;
    padding: clamp(14px, 2vw, 22px);
  }

  .pc-visual-glow {
    position: absolute;
    inset: -16% -18% auto auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background:
      radial-gradient(circle, rgba(34, 197, 94, 0.28), transparent 64%),
      radial-gradient(circle at 30% 70%, rgba(29, 155, 240, 0.24), transparent 58%);
    filter: blur(4px);
    pointer-events: none;
    animation: pcGlowDrift 8s ease-in-out infinite;
  }

  .pc-cockpit-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58px 1fr;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
      rgba(7, 17, 31, 0.56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .pc-cockpit-sidebar {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
  }

  .pc-cockpit-sidebar span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.13);
  }

  .pc-cockpit-sidebar span.is-active {
    background: linear-gradient(135deg, var(--pc-blue), var(--pc-green));
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.42);
  }

  .pc-cockpit-main {
    padding: clamp(18px, 3vw, 28px);
  }

  .pc-cockpit-topbar,
  .pc-analytics-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .pc-cockpit-topbar {
    margin-bottom: 18px;
    color: rgba(248, 251, 255, 0.84);
    font-weight: 950;
    letter-spacing: -0.02em;
  }

  .pc-cockpit-topbar strong {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    color: var(--pc-green);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

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

  .pc-kpi-tile,
  .pc-analytics-panel,
  .pc-workflow-panel {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.105);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
  }

  .pc-kpi-tile {
    min-height: 128px;
    padding: 18px;
  }

  .pc-kpi-tile--primary {
    background: linear-gradient(135deg, rgba(29, 155, 240, 0.22), rgba(34, 197, 94, 0.14));
  }

  .pc-kpi-tile span,
  .pc-kpi-tile em,
  .pc-analytics-head span,
  .pc-analytics-head em {
    display: block;
    color: rgba(248, 251, 255, 0.72);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pc-kpi-tile strong {
    display: block;
    margin: 14px 0 8px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.075em;
    line-height: 0.9;
  }

  .pc-analytics-panel {
    grid-column: span 2;
    min-height: 260px;
    padding: 20px;
  }

  .pc-chart-svg--large {
    height: 190px;
  }

  .pc-data-points circle {
    fill: #ffffff;
    stroke: var(--pc-green);
    stroke-width: 4;
    animation: pcPulsePoint 2.8s ease-in-out infinite;
  }

  .pc-data-points circle:nth-child(2) { animation-delay: 0.3s; }
  .pc-data-points circle:nth-child(3) { animation-delay: 0.6s; }
  .pc-data-points circle:nth-child(4) { animation-delay: 0.9s; }

  .pc-workflow-panel {
    display: grid;
    gap: 12px;
    align-content: center;
    padding: 20px;
  }

  .pc-workflow-step {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px 10px 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(248, 251, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .pc-workflow-step::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
  }

  .pc-workflow-step.is-done::before,
  .pc-workflow-step.is-active::before {
    background: var(--pc-green);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.62);
  }

  .pc-workflow-step.is-active {
    background: rgba(34, 197, 94, 0.16);
    color: #ffffff;
  }

  .pc-convergence-map--premium {
    min-height: 360px;
    background:
      radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.16), transparent 20%),
      radial-gradient(circle at 18% 18%, rgba(29, 155, 240, 0.16), transparent 24%),
      linear-gradient(135deg, #ffffff, #eef6ff 55%, #f8fbff);
  }

  .pc-orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(29, 78, 216, 0.14);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .pc-orbit-ring--one {
    width: 42%;
    height: 42%;
    animation: pcOrbitSpin 18s linear infinite;
  }

  .pc-orbit-ring--two {
    width: 68%;
    height: 68%;
    animation: pcOrbitSpin 28s linear reverse infinite;
  }

  .pc-flow-loop {
    stroke: rgba(34, 197, 94, 0.2) !important;
    stroke-dasharray: 8 14 !important;
  }

  .pc-support-board {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    min-height: 320px;
    padding: 26px;
    border: 1px solid var(--pc-border);
    border-radius: 28px;
    background:
      radial-gradient(circle at 80% 18%, rgba(34, 197, 94, 0.16), transparent 28%),
      linear-gradient(135deg, #ffffff, #edf7ff);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
  }

  .pc-support-board svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .pc-support-board path {
    fill: none;
    stroke: rgba(29, 78, 216, 0.18);
    stroke-width: 4;
    stroke-dasharray: 10 12;
    animation: pcFlowDash 12s linear infinite;
  }

  .pc-support-column {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--pc-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  }

  .pc-support-column.is-active {
    border-color: rgba(34, 197, 94, 0.42);
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
  }

  .pc-support-column strong {
    color: var(--pc-navy);
    font-size: 1rem;
    letter-spacing: -0.03em;
  }

  .pc-support-column span {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f4f8ff;
    color: var(--pc-text-muted);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .pc-compliance-board {
    position: relative;
    min-height: 340px;
    border: 1px solid var(--pc-border);
    border-radius: 28px;
    background:
      radial-gradient(circle at 52% 34%, rgba(34, 197, 94, 0.13), transparent 24%),
      linear-gradient(135deg, #ffffff, #f2f7ff);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
    overflow: hidden;
  }

  .pc-shield-mark {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 136px;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 22px 30px rgba(29, 78, 216, 0.18));
  }

  .pc-shield-mark svg {
    width: 100%;
  }

  .pc-shield-mark path:first-child {
    fill: #ffffff;
    stroke: var(--pc-blue);
    stroke-width: 7;
  }

  .pc-shield-mark path:last-child {
    fill: none;
    stroke: var(--pc-green);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 86;
    stroke-dashoffset: 86;
    animation: pcCheckDraw 1.8s cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
  }

  .pc-doc-grid {
    position: absolute;
    inset: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .pc-compliance-rail {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .pc-compliance-rail span {
    height: 8px;
    border-radius: 999px;
    background: #dbe7ff;
  }

  .pc-compliance-rail span.is-active {
    background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
    animation: pcRailPulse 2.4s ease-in-out infinite;
  }
}

@keyframes pcPulsePoint {
  0%,
  100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; }
}

@keyframes pcOrbitSpin {
  to { rotate: 360deg; }
}

@keyframes pcCheckDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes pcRailPulse {
  0%,
  100% { filter: saturate(1); opacity: 0.82; }
  50% { filter: saturate(1.4); opacity: 1; }
}

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

  .pc-cockpit-sidebar {
    display: none;
  }

  .pc-cockpit-grid,
  .pc-support-board,
  .pc-doc-grid {
    grid-template-columns: 1fr;
  }

  .pc-analytics-panel {
    grid-column: auto;
  }

  .pc-product-cockpit {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-data-points circle,
  .pc-orbit-ring,
  .pc-support-board path,
  .pc-shield-mark path:last-child,
  .pc-compliance-rail span.is-active {
    animation: none !important;
  }
}


/* Designer polish pass */
@media screen {
  .pc-hero-proof {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .pc-hero-proof span {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(248, 251, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
  }

  .pc-hero-proof strong {
    color: #ffffff;
    font-size: 1.06rem;
  }

  .pc-product-showcase {
    width: 100%;
    max-width: none;
    padding: clamp(58px, 7vw, 96px) clamp(20px, 7vw, 112px);
    background:
      radial-gradient(circle at 18% 8%, rgba(29, 155, 240, 0.12), transparent 28%),
      radial-gradient(circle at 88% 20%, rgba(34, 197, 94, 0.12), transparent 28%),
      linear-gradient(180deg, #ffffff, #f3f8ff);
  }

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

  .pc-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(240px, 0.75fr));
    gap: 18px;
  }

  .pc-suite-tile {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(185, 204, 245, 0.72);
    border-radius: 28px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.86));
    box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  }

  .pc-suite-tile::after {
    content: "";
    position: absolute;
    inset: auto -20% -34% 28%;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.16), transparent 68%);
    pointer-events: none;
  }

  .pc-suite-tile:hover {
    transform: translate3d(0, -7px, 0);
    border-color: rgba(34, 197, 94, 0.38);
    box-shadow: 0 32px 92px rgba(15, 23, 42, 0.16);
  }

  .pc-suite-tile--large {
    min-height: 320px;
  }

  .pc-mini-bars {
    width: 100%;
    height: 170px;
    margin-top: 24px;
  }

  .pc-mini-bars rect {
    rx: 10;
    fill: var(--pc-blue);
    opacity: 0.22;
    animation: pcBarRise 3.6s ease-in-out infinite;
    transform-origin: bottom;
  }

  .pc-mini-bars rect:nth-child(2n) {
    fill: var(--pc-green);
    animation-delay: 0.25s;
  }

  .pc-mini-bars path {
    fill: none;
    stroke: var(--pc-green);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 430;
    stroke-dashoffset: 430;
    animation: pcDrawChart 2.4s cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
  }

  .pc-mini-timeline {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
  }

  .pc-mini-timeline li,
  .pc-status-stack span {
    position: relative;
    padding: 12px 14px 12px 40px;
    border-radius: 16px;
    background: #f4f8ff;
    color: var(--pc-text);
    font-weight: 900;
  }

  .pc-mini-timeline li::before,
  .pc-status-stack span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--pc-green);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.42);
    transform: translateY(-50%);
  }

  .pc-status-stack {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .pc-doc-grid {
    z-index: 1;
  }

  .pc-doc-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 7px;
    min-height: 100px;
    padding: 14px 14px 12px 54px;
    border: 1px solid rgba(185, 204, 245, 0.78);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.88));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  }

  .pc-doc-card::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
    opacity: 0.5;
  }

  .pc-doc-icon {
    position: absolute;
    left: 14px;
    top: 16px;
    width: 28px;
    height: 34px;
    border-radius: 8px;
    background:
      linear-gradient(180deg, #ffffff, #eaf3ff);
    border: 1px solid var(--pc-border);
  }

  .pc-doc-icon::before,
  .pc-doc-icon::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    height: 3px;
    border-radius: 999px;
    background: #b9ccf5;
  }

  .pc-doc-icon::before { top: 10px; }
  .pc-doc-icon::after { top: 18px; }

  .pc-doc-card strong {
    color: var(--pc-navy);
    font-size: 0.92rem;
    letter-spacing: -0.02em;
  }

  .pc-doc-card em {
    color: var(--pc-text-muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 750;
  }

  .pc-doc-card b {
    width: fit-content;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pc-compliance-board::before {
    content: "SECURE POLICY LAYER";
    position: absolute;
    left: 32px;
    top: 20px;
    z-index: 2;
    color: rgba(15, 23, 42, 0.42);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.18em;
  }
}

@keyframes pcBarRise {
  0%,
  100% { transform: scaleY(0.72); opacity: 0.18; }
  50% { transform: scaleY(1); opacity: 0.36; }
}

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

@media (max-width: 720px) {
  .pc-doc-grid {
    inset: 52px 18px 72px;
    gap: 10px;
  }

  .pc-doc-card {
    min-height: 86px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .pc-shield-mark {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-mini-bars rect,
  .pc-mini-bars path {
    animation: none !important;
  }
}


/* Visible compliance card fix */
@media screen {
  .pc-compliance-board {
    background:
      linear-gradient(135deg, rgba(7, 17, 31, 0.04), transparent 34%),
      radial-gradient(circle at 82% 20%, rgba(34, 197, 94, 0.18), transparent 28%),
      linear-gradient(135deg, #ffffff, #eef6ff 58%, #e8f8f0);
  }

  .pc-compliance-board::after {
    content: "EKATRACORE CONTROL GRID";
    position: absolute;
    right: 28px;
    top: 22px;
    z-index: 2;
    padding: 8px 11px;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: #0f766e;
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.16em;
  }

  .pc-doc-card {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.94));
    border-color: rgba(29, 155, 240, 0.28);
  }

  .pc-doc-card:nth-child(2n) {
    border-color: rgba(34, 197, 94, 0.3);
  }

  .pc-doc-card strong,
  .pc-doc-card em,
  .pc-doc-card b,
  .pc-doc-icon {
    position: relative;
    z-index: 2;
  }

  .pc-doc-card strong {
    font-size: 0.98rem;
  }

  .pc-doc-card b {
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.14);
  }

  .pc-shield-mark {
    left: auto;
    right: 7%;
    top: 51%;
    opacity: 0.32;
    transform: translateY(-50%) scale(1.1);
  }
}


/* Premium graphics replacement */
@media screen {
  .pc-product-cockpit--dense {
    min-height: 640px;
    padding: 18px;
    background:
      radial-gradient(circle at 72% 12%, rgba(34, 197, 94, 0.28), transparent 28%),
      radial-gradient(circle at 22% 90%, rgba(29, 155, 240, 0.24), transparent 26%),
      rgba(7, 17, 31, 0.54);
  }

  .pc-dashboard-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 68px 1fr;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(6, 16, 35, 0.94), rgba(18, 37, 83, 0.82));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.16);
  }

  .pc-dashboard-nav {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pc-nav-dot {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  }

  .pc-nav-dot.is-active {
    background: linear-gradient(135deg, var(--pc-blue), var(--pc-green));
    box-shadow: 0 0 28px rgba(34,197,94,0.42);
  }

  .pc-dashboard-workspace {
    padding: 24px;
  }

  .pc-dashboard-top,
  .pc-tile-head,
  .pc-control-header,
  .pc-support-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }

  .pc-dashboard-top {
    margin-bottom: 20px;
    color: #fff;
  }

  .pc-mini-label {
    display: block;
    color: var(--pc-cyan);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.16em;
  }

  .pc-dashboard-top strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: -0.045em;
  }

  .pc-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(34,197,94,0.14);
    color: var(--pc-green);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .pc-live-badge i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--pc-green);
    box-shadow: 0 0 18px rgba(34,197,94,0.72);
  }

  .pc-dashboard-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .pc-metric-tile,
  .pc-chart-tile,
  .pc-pipeline-tile,
  .pc-module-cloud {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    background: rgba(255,255,255,0.09);
    box-shadow: 0 18px 44px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
  }

  .pc-metric-tile {
    min-height: 132px;
    padding: 18px;
  }

  .pc-metric-tile.is-hot {
    background: linear-gradient(135deg, rgba(29,155,240,0.22), rgba(34,197,94,0.16));
  }

  .pc-metric-tile span,
  .pc-metric-tile em,
  .pc-tile-head span,
  .pc-tile-head b {
    display: block;
    color: rgba(248,251,255,0.72);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pc-metric-tile strong {
    display: block;
    margin: 12px 0 7px;
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
  }

  .pc-chart-tile {
    grid-column: span 2;
    min-height: 285px;
    padding: 20px;
  }

  .pc-premium-chart {
    width: 100%;
    height: 220px;
    margin-top: 12px;
  }

  .pc-chart-fill {
    fill: rgba(34,197,94,0.15);
  }

  .pc-chart-stroke {
    fill: none;
    stroke: var(--pc-cyan);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 720;
    stroke-dashoffset: 720;
    animation: pcDrawChart 2.4s cubic-bezier(0.2,0.72,0.18,1) forwards;
  }

  .pc-chart-points circle {
    fill: #fff;
    stroke: var(--pc-green);
    stroke-width: 4;
    animation: pcPulsePoint 2.8s ease-in-out infinite;
  }

  .pc-pipeline-tile {
    display: grid;
    gap: 11px;
    padding: 18px;
  }

  .pc-pipeline-row {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    color: rgba(248,251,255,0.78);
    font-size: 0.78rem;
    font-weight: 850;
  }

  .pc-pipeline-row i {
    height: 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    overflow: hidden;
  }

  .pc-pipeline-row i::before {
    content: "";
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
    animation: pcRailPulse 2.5s ease-in-out infinite;
  }

  .pc-pipeline-row.is-active {
    color: #fff;
  }

  .pc-module-cloud {
    grid-column: span 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
  }

  .pc-module-cloud span {
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    font-size: 0.8rem;
    font-weight: 900;
  }

  .pc-ecosystem-stage,
  .pc-architecture-stage,
  .pc-support-console,
  .pc-control-console {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(185,204,245,0.7);
    border-radius: 34px;
    background:
      radial-gradient(circle at 72% 16%, rgba(34,197,94,0.18), transparent 28%),
      radial-gradient(circle at 18% 82%, rgba(29,155,240,0.18), transparent 30%),
      linear-gradient(135deg, #ffffff, #eef6ff 58%, #f8fbff);
    box-shadow: 0 30px 90px rgba(15,23,42,0.14);
  }

  .pc-ecosystem-stage {
    min-height: 470px;
  }

  .pc-ecosystem-core,
  .pc-arch-core {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 156px;
    height: 156px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--pc-blue), var(--pc-green));
    color: #fff;
    box-shadow: 0 26px 70px rgba(29,78,216,0.22);
    transform: translate(-50%, -50%);
  }

  .pc-ecosystem-core strong,
  .pc-arch-core strong {
    font-size: 1.02rem;
    letter-spacing: -0.04em;
  }

  .pc-ecosystem-core span,
  .pc-arch-core span {
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    opacity: 0.86;
  }

  .pc-ecosystem-lines,
  .pc-arch-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .pc-ecosystem-lines path,
  .pc-arch-lines path,
  .pc-support-flow path {
    fill: none;
    stroke: rgba(29,78,216,0.24);
    stroke-width: 4;
    stroke-dasharray: 12 14;
    animation: pcFlowDash 12s linear infinite;
  }

  .pc-eco-node,
  .pc-arch-node {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 4px;
    min-width: 160px;
    padding: 15px 16px;
    border: 1px solid rgba(185,204,245,0.82);
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 50px rgba(15,23,42,0.12);
  }

  .pc-eco-node b,
  .pc-arch-node {
    color: var(--pc-navy);
    font-weight: 950;
  }

  .pc-eco-node span {
    color: var(--pc-text-muted);
    font-size: 0.82rem;
    font-weight: 750;
  }

  .pc-eco-node em {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(34,197,94,0.12);
    color: #15803d;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
  }

  .pc-eco-node--finance { left: 4%; top: 11%; }
  .pc-eco-node--inventory { right: 4%; top: 12%; }
  .pc-eco-node--support { left: 5%; bottom: 12%; }
  .pc-eco-node--policy { right: 5%; bottom: 12%; }
  .pc-eco-node--analytics { left: 50%; top: 5%; transform: translateX(-50%); }

  .pc-arch-node {
    min-width: 118px;
    justify-content: center;
    text-align: center;
    animation: pcNodeFloat 6s ease-in-out infinite;
  }

  .pc-arch-node--a { left: 8%; top: 10%; }
  .pc-arch-node--b { right: 8%; top: 10%; }
  .pc-arch-node--c { left: 8%; bottom: 10%; }
  .pc-arch-node--d { right: 8%; bottom: 10%; }
  .pc-arch-node--e { left: 50%; top: 5%; transform: translateX(-50%); }
  .pc-arch-node--f { left: 50%; bottom: 5%; transform: translateX(-50%); }

  .pc-arch-panel {
    position: absolute;
    right: 28px;
    top: 50%;
    z-index: 4;
    display: grid;
    gap: 5px;
    min-width: 160px;
    padding: 15px;
    border-radius: 20px;
    background: #07111f;
    color: #fff;
    box-shadow: 0 20px 54px rgba(7,17,31,0.24);
    transform: translateY(-50%);
  }

  .pc-arch-panel strong {
    color: var(--pc-green);
    font-size: 2rem;
    line-height: 1;
  }

  .pc-support-console,
  .pc-control-console {
    padding: 24px;
  }

  .pc-support-top,
  .pc-control-header {
    margin-bottom: 18px;
  }

  .pc-support-top strong,
  .pc-control-header strong {
    color: var(--pc-navy);
    font-size: 1.05rem;
    letter-spacing: -0.03em;
  }

  .pc-support-top span,
  .pc-control-header span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34,197,94,0.12);
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .pc-support-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
  }

  .pc-support-metrics span {
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15,23,42,0.08);
    color: var(--pc-text-muted);
    font-weight: 800;
  }

  .pc-support-metrics b {
    display: block;
    color: var(--pc-navy);
    font-size: 1.7rem;
    letter-spacing: -0.06em;
  }

  .pc-ticket-board {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .pc-ticket-board article {
    display: grid;
    gap: 8px;
    min-height: 170px;
    padding: 18px;
    border: 1px solid var(--pc-border);
    border-radius: 22px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 48px rgba(15,23,42,0.1);
  }

  .pc-ticket-board article.is-active {
    border-color: rgba(34,197,94,0.36);
    background: linear-gradient(135deg, #fff, #f0fdf4);
  }

  .pc-ticket-board b {
    color: var(--pc-navy);
  }

  .pc-ticket-board em {
    width: fit-content;
    align-self: end;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--pc-link);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
  }

  .pc-support-flow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .pc-control-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 18px;
  }

  .pc-document-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pc-control-doc {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 116px;
    padding: 16px 16px 14px 54px;
    border: 1px solid rgba(185,204,245,0.8);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15,23,42,0.09);
  }

  .pc-control-doc::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 26px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(180deg, #eaf3ff, #fff);
    border: 1px solid var(--pc-border);
  }

  .pc-control-doc.is-active {
    border-color: rgba(34,197,94,0.36);
    box-shadow: 0 18px 52px rgba(34,197,94,0.12);
  }

  .pc-control-doc b {
    color: var(--pc-navy);
    font-size: 0.95rem;
  }

  .pc-control-doc span {
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(34,197,94,0.12);
    color: #15803d;
    font-size: 0.68rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .pc-audit-panel {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, #07111f, #172554);
    color: #fff;
    box-shadow: 0 24px 70px rgba(7,17,31,0.24);
  }

  .pc-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pc-green), transparent);
    animation: pcAuditScan 3.2s ease-in-out infinite;
  }

  .pc-premium-shield {
    width: 160px;
    display: block;
    margin: 22px auto 18px;
    filter: drop-shadow(0 18px 34px rgba(34,197,94,0.2));
  }

  .pc-premium-shield path:first-child {
    fill: rgba(255,255,255,0.06);
    stroke: var(--pc-cyan);
    stroke-width: 7;
  }

  .pc-premium-shield path:last-child {
    fill: none;
    stroke: var(--pc-green);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: pcCheckDraw 1.8s cubic-bezier(0.2,0.72,0.18,1) forwards;
  }

  .pc-audit-trail {
    display: grid;
    gap: 10px;
  }

  .pc-audit-trail span {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    color: rgba(248,251,255,0.82);
    font-weight: 850;
  }
}

@keyframes pcAuditScan {
  0%, 100% { transform: translateY(-34px); opacity: 0.35; }
  50% { transform: translateY(220px); opacity: 1; }
}

@media (max-width: 980px) {
  .pc-dashboard-shell,
  .pc-control-layout {
    grid-template-columns: 1fr;
  }
  .pc-dashboard-nav {
    display: none;
  }
  .pc-dashboard-mosaic,
  .pc-ticket-board,
  .pc-support-metrics,
  .pc-document-stack {
    grid-template-columns: 1fr;
  }
  .pc-chart-tile,
  .pc-module-cloud {
    grid-column: auto;
  }
  .pc-ecosystem-stage,
  .pc-architecture-stage {
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-chart-stroke,
  .pc-chart-points circle,
  .pc-ecosystem-lines path,
  .pc-arch-lines path,
  .pc-support-flow path,
  .pc-premium-shield path:last-child,
  .pc-scan-line {
    animation: none !important;
  }
}
