/* AIvis product overview */
.opencore-page {
  --oc-cyan: #6ee7ff;
  --oc-violet: #8a78ff;
  --oc-lime: #c9ef64;
  --oc-pink: #f2a5d5;
  --oc-dark: #070914;
  padding-bottom: 0;
}

.opencore-hero {
  width: min(1440px, calc(100% - 64px));
  height: min(820px, calc(100svh - 150px));
  min-height: 590px;
  margin: 0 auto;
  border: 1px solid rgba(115, 122, 211, 0.28);
  border-radius: 34px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f6f8ff;
  background: var(--oc-dark);
  box-shadow:
    0 36px 110px rgba(16, 20, 48, 0.3),
    inset 0 0 110px rgba(78, 92, 219, 0.055);
}

.opencore-hero::before {
  content: "";
  height: 1px;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 8%;
  left: 8%;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.85), rgba(138, 120, 255, 0.9), transparent);
  box-shadow: 0 0 24px rgba(111, 138, 255, 0.5);
}

.opencore-hero-art {
  width: 720px;
  height: 720px;
  position: absolute;
  z-index: -1;
  top: -240px;
  left: 50%;
  object-fit: contain;
  opacity: 0.3;
  mix-blend-mode: screen;
  filter: saturate(1.35) contrast(1.1) hue-rotate(9deg) drop-shadow(0 0 70px rgba(110, 231, 255, 0.22));
  transform: translateX(-50%);
  -webkit-mask-image: radial-gradient(circle, #000 0 55%, rgba(0, 0, 0, 0.68) 70%, transparent 84%);
  mask-image: radial-gradient(circle, #000 0 55%, rgba(0, 0, 0, 0.68) 70%, transparent 84%);
}

.opencore-hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.66;
  background-image:
    linear-gradient(rgba(110, 231, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.58) 66%, transparent 100%);
}

.opencore-hero-copy {
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 42px;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.opencore-eyebrow {
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(110, 231, 255, 0.26);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(195, 239, 255, 0.8);
  background: rgba(6, 9, 22, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-eyebrow i,
.opencore-live i,
.opencore-flow-engine-head i,
.opencore-trace-head i,
.opencore-console-head i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  background: var(--oc-cyan);
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.86);
}

.opencore-hero-copy h1 {
  margin: 13px 0 8px;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 630;
}

.opencore-hero-copy h1 span {
  margin-top: 9px;
  display: block;
  color: rgba(239, 243, 255, 0.76);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 520;
}

.opencore-hero-statement {
  margin: 8px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 530;
}

.opencore-hero-description {
  max-width: 650px;
  margin: 7px 0 0;
  color: rgba(220, 227, 249, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.opencore-hero-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.opencore-primary-action {
  min-height: 43px;
  color: #090b13;
  background: var(--oc-cyan);
  box-shadow: 0 10px 34px rgba(78, 203, 239, 0.2);
}

.opencore-primary-action:hover,
.opencore-primary-action:focus-visible {
  color: #090b13;
  background: #fff;
}

.opencore-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(238, 242, 255, 0.68);
  font-size: 11px;
}

.opencore-secondary-action:hover,
.opencore-secondary-action:focus-visible {
  color: var(--oc-cyan);
}

.opencore-workspace {
  height: 310px;
  border: 1px solid rgba(125, 139, 224, 0.28);
  border-radius: 8px 8px 0 0;
  position: absolute;
  z-index: 5;
  right: 42px;
  bottom: 0;
  left: 42px;
  overflow: hidden;
  color: rgba(235, 240, 255, 0.8);
  background: rgba(8, 10, 22, 0.9);
  box-shadow:
    0 -22px 70px rgba(13, 17, 49, 0.46),
    inset 0 0 48px rgba(99, 124, 255, 0.03);
  backdrop-filter: blur(18px);
}

.opencore-workspace-top {
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(125, 139, 224, 0.16);
  display: grid;
  grid-template-columns: 1fr minmax(230px, 360px) 1fr;
  align-items: center;
  gap: 22px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-workspace-brand,
.opencore-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.opencore-workspace-brand {
  color: rgba(220, 227, 255, 0.72);
}

.opencore-workspace-brand svg {
  color: var(--oc-cyan);
}

.opencore-command {
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid rgba(125, 139, 224, 0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(220, 227, 249, 0.42);
  background: rgba(255, 255, 255, 0.025);
}

.opencore-command kbd {
  margin-left: auto;
  color: rgba(220, 227, 249, 0.36);
  font: inherit;
}

.opencore-live {
  justify-self: end;
  color: rgba(110, 231, 255, 0.72);
}

.opencore-workspace-body {
  height: calc(100% - 38px);
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) 214px;
}

.opencore-workspace-nav {
  padding: 13px 11px;
  border-right: 1px solid rgba(125, 139, 224, 0.13);
  display: flex;
  flex-direction: column;
  color: rgba(220, 227, 249, 0.54);
  background: rgba(5, 7, 17, 0.46);
}

.opencore-new-thread {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(224, 245, 255, 0.8);
  background: rgba(110, 231, 255, 0.045);
  font-size: 9px;
}

.opencore-new-thread svg {
  color: var(--oc-cyan);
}

.opencore-nav-items {
  margin-top: 9px;
  display: grid;
  gap: 2px;
}

.opencore-nav-items span {
  min-height: 29px;
  padding: 0 9px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
}

.opencore-nav-items span.is-active {
  color: #fff;
  background: rgba(138, 120, 255, 0.1);
}

.opencore-nav-items span.is-active svg {
  color: var(--oc-violet);
}

.opencore-workspace-nav > small {
  margin: 13px 8px 5px;
  color: rgba(138, 120, 255, 0.52);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-workspace-list {
  display: grid;
  gap: 1px;
}

.opencore-workspace-list span {
  min-height: 26px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
}

.opencore-workspace-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(110, 231, 255, 0.56);
}

.opencore-conversation {
  min-width: 0;
  padding: 0 24px 15px;
}

.opencore-conversation-head {
  height: 42px;
  border-bottom: 1px solid rgba(125, 139, 224, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(220, 227, 249, 0.48);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-conversation-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(201, 239, 100, 0.66);
}

.opencore-user-query {
  max-width: 72%;
  margin: 12px 0 10px auto;
  padding: 8px 11px;
  border: 1px solid rgba(138, 120, 255, 0.16);
  border-radius: 5px;
  color: rgba(240, 243, 255, 0.84);
  background: rgba(138, 120, 255, 0.07);
  font-size: 9px;
  line-height: 1.5;
}

.opencore-answer {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
}

.opencore-answer-mark {
  width: 27px;
  height: 27px;
  border: 1px solid rgba(110, 231, 255, 0.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--oc-cyan);
  background: rgba(110, 231, 255, 0.055);
}

.opencore-answer strong {
  color: rgba(247, 249, 255, 0.9);
  font-size: 10px;
  font-weight: 590;
}

.opencore-answer p {
  max-width: 650px;
  margin: 5px 0 8px;
  color: rgba(220, 227, 249, 0.6);
  font-size: 8px;
  line-height: 1.55;
}

.opencore-answer-actions,
.opencore-citations {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.opencore-answer-actions span,
.opencore-citations span {
  min-height: 20px;
  padding: 0 6px;
  border: 1px solid rgba(125, 139, 224, 0.14);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(220, 227, 249, 0.54);
  font-size: 6px;
}

.opencore-answer-actions span:last-child {
  color: rgba(201, 239, 100, 0.76);
}

.opencore-citations {
  margin-top: 7px;
}

.opencore-citations span {
  color: rgba(110, 231, 255, 0.56);
  font-family: var(--font-geist-mono), monospace;
}

.opencore-context-panel {
  padding: 15px 13px;
  border-left: 1px solid rgba(125, 139, 224, 0.13);
  background: rgba(5, 7, 17, 0.4);
}

.opencore-context-panel > span {
  color: rgba(138, 120, 255, 0.56);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-context-panel > div {
  min-height: 48px;
  border-bottom: 1px solid rgba(125, 139, 224, 0.1);
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 6px;
}

.opencore-context-panel > div > svg {
  color: rgba(110, 231, 255, 0.66);
}

.opencore-context-panel > div span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.opencore-context-panel strong {
  font-size: 8px;
  font-weight: 550;
}

.opencore-context-panel small {
  color: rgba(220, 227, 249, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-context-panel p {
  margin: 14px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: rgba(201, 239, 100, 0.55);
  font-size: 7px;
  line-height: 1.55;
}

.opencore-context-panel p svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

.opencore-mode-rail {
  width: min(1220px, calc(100% - 96px));
  margin: 54px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.opencore-mode-rail > div {
  min-height: 112px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 2px;
}

.opencore-mode-rail > div:last-child {
  border-right: 0;
}

.opencore-mode-rail span {
  color: rgba(86, 72, 205, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-mode-rail strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 610;
}

.opencore-mode-rail small {
  color: var(--muted);
  font-size: 10px;
}

.opencore-capability-section,
.opencore-knowledge-section,
.opencore-deployment-section {
  width: min(1220px, calc(100% - 96px));
  margin: 152px auto 0;
}

.opencore-section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 38px;
}

.opencore-section-heading > span {
  padding-top: 8px;
  color: rgba(86, 72, 205, 0.68);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-section-heading h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 590;
}

.opencore-section-heading p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.opencore-capability-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.opencore-capability-grid > a {
  min-height: 328px;
  padding: 27px 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.22);
  transition: color 180ms ease, background 180ms ease;
}

.opencore-capability-grid > a:hover,
.opencore-capability-grid > a:focus-visible {
  color: #4f3ee7;
  background: rgba(255, 255, 255, 0.68);
  outline: none;
}

.opencore-capability-index {
  align-self: flex-end;
  color: rgba(86, 72, 205, 0.44);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.opencore-capability-icon {
  width: 43px;
  height: 43px;
  margin-top: 18px;
  border: 1px solid rgba(104, 91, 218, 0.19);
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #6756e2;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 26px rgba(84, 72, 180, 0.06);
}

.opencore-capability-grid small {
  margin-top: 36px;
  color: rgba(86, 72, 205, 0.6);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-capability-grid h3 {
  margin: 8px 0 10px;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 600;
}

.opencore-capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.opencore-capability-signal {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(45, 51, 76, 0.42);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-capability-grid > a:hover .opencore-capability-signal,
.opencore-capability-grid > a:focus-visible .opencore-capability-signal {
  color: #4f3ee7;
}

.opencore-knowledge-flow {
  min-height: 560px;
  display: grid;
  grid-template-columns: 230px minmax(420px, 1fr) 230px;
  align-items: center;
  gap: 22px;
}

.opencore-flow-column {
  display: grid;
  gap: 8px;
}

.opencore-flow-label {
  margin-bottom: 8px;
  color: rgba(67, 73, 96, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-flow-column > div {
  min-height: 64px;
  padding: 0 13px;
  border: 1px solid rgba(65, 73, 104, 0.14);
  border-radius: 5px;
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  color: rgba(31, 37, 57, 0.76);
  background: rgba(255, 255, 255, 0.55);
}

.opencore-flow-column > div > svg {
  color: #6655df;
}

.opencore-flow-column > div span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.opencore-flow-column strong {
  font-size: 11px;
  font-weight: 580;
}

.opencore-flow-column small {
  color: rgba(55, 62, 87, 0.42);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-flow-column > div > i {
  width: 18px;
  height: 1px;
  position: absolute;
  top: 50%;
  background: rgba(104, 91, 218, 0.28);
}

.opencore-flow-sources > div > i {
  left: 100%;
}

.opencore-flow-delivery > div {
  grid-template-columns: 1px 28px 1fr;
}

.opencore-flow-delivery > div > i {
  right: 100%;
}

.opencore-flow-delivery > div > svg {
  grid-column: 2;
}

.opencore-flow-delivery > div > span {
  grid-column: 3;
}

.opencore-flow-engine {
  min-width: 0;
  min-height: 520px;
  border: 1px solid rgba(103, 118, 205, 0.25);
  border-radius: 8px;
  overflow: hidden;
  color: rgba(232, 237, 255, 0.7);
  background: #080a15;
  box-shadow:
    0 28px 80px rgba(27, 31, 67, 0.17),
    inset 0 0 70px rgba(89, 111, 255, 0.045);
}

.opencore-flow-engine-head,
.opencore-flow-engine-foot {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-flow-engine-head {
  border-bottom: 1px solid rgba(115, 130, 216, 0.14);
}

.opencore-flow-engine-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(110, 231, 255, 0.7);
}

.opencore-flow-field {
  height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(rgba(110, 231, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.055) 1px, transparent 1px);
  background-size: 50px 50px;
}

.opencore-flow-axis,
.opencore-flow-ring,
.opencore-flow-pulse,
.opencore-flow-stage,
.opencore-flow-core {
  position: absolute;
}

.opencore-flow-axis {
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.3), rgba(138, 120, 255, 0.34), transparent);
}

.opencore-flow-ring {
  border: 1px solid rgba(110, 231, 255, 0.18);
  border-radius: 50%;
  animation: opencore-ring-breathe 6s ease-in-out infinite;
}

.opencore-flow-ring.ring-one {
  width: 246px;
  height: 246px;
}

.opencore-flow-ring.ring-two {
  width: 360px;
  height: 250px;
  border-color: rgba(138, 120, 255, 0.2);
  transform: rotate(-18deg);
  animation-delay: -3s;
}

.opencore-flow-core {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(110, 231, 255, 0.58);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--oc-cyan);
  background: rgba(7, 10, 22, 0.94);
  box-shadow:
    0 0 0 24px rgba(110, 231, 255, 0.025),
    0 0 64px rgba(88, 149, 255, 0.17);
}

.opencore-flow-core strong {
  color: #f5f7ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.opencore-flow-core small {
  color: rgba(220, 227, 249, 0.4);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-flow-stage {
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(115, 130, 216, 0.18);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  color: rgba(220, 227, 249, 0.48);
  background: rgba(7, 10, 22, 0.72);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-flow-stage.stage-one { top: 18%; left: 8%; }
.opencore-flow-stage.stage-two { bottom: 19%; left: 12%; }
.opencore-flow-stage.stage-three { top: 21%; right: 10%; }
.opencore-flow-stage.stage-four { right: 8%; bottom: 18%; }

.opencore-flow-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: calc(50% - 3px);
  left: 7%;
  background: var(--oc-cyan);
  box-shadow: 0 0 16px rgba(110, 231, 255, 0.9);
  animation: opencore-data-flow 5.8s linear infinite;
}

.opencore-flow-pulse.pulse-two {
  animation-delay: -2.9s;
}

.opencore-flow-engine-foot {
  border-top: 1px solid rgba(115, 130, 216, 0.14);
  color: rgba(220, 227, 249, 0.36);
  font-size: 6px;
}

.opencore-flow-note {
  min-height: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.opencore-flow-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(41, 47, 69, 0.58);
  font-size: 10px;
}

.opencore-flow-note svg {
  color: #6655df;
}

.opencore-action-section {
  margin-top: 162px;
  padding: 116px 0;
  color: #f5f7ff;
  background: #080a15;
  box-shadow: inset 0 1px rgba(126, 139, 218, 0.14), inset 0 -1px rgba(126, 139, 218, 0.14);
}

.opencore-action-inner {
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 84px;
}

.opencore-action-copy > span,
.opencore-platform-copy > span,
.opencore-cta-section > div > span {
  color: rgba(110, 231, 255, 0.72);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-action-copy h2,
.opencore-platform-copy h2,
.opencore-cta-section h2 {
  margin: 20px 0 18px;
  letter-spacing: 0;
  font-weight: 590;
}

.opencore-action-copy h2 {
  font-size: 52px;
  line-height: 1.07;
}

.opencore-action-copy > p {
  max-width: 470px;
  margin: 0;
  color: rgba(219, 226, 248, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.opencore-action-points {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.opencore-action-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(229, 234, 251, 0.68);
  font-size: 10px;
}

.opencore-action-points svg {
  color: var(--oc-lime);
}

.opencore-action-copy > a {
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(110, 231, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(221, 243, 255, 0.82);
  font-size: 11px;
}

.opencore-action-copy > a:hover,
.opencore-action-copy > a:focus-visible {
  color: var(--oc-cyan);
  border-color: var(--oc-cyan);
}

.opencore-agent-trace {
  min-height: 560px;
  border: 1px solid rgba(115, 130, 216, 0.24);
  border-radius: 8px;
  overflow: hidden;
  color: rgba(235, 240, 255, 0.76);
  background: rgba(5, 7, 16, 0.82);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.28),
    inset 0 0 60px rgba(99, 124, 255, 0.03);
}

.opencore-trace-head,
.opencore-trace-foot {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-trace-head {
  border-bottom: 1px solid rgba(115, 130, 216, 0.14);
}

.opencore-trace-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(201, 239, 100, 0.72);
}

.opencore-trace-head span:last-child i {
  background: var(--oc-lime);
  box-shadow: 0 0 12px rgba(201, 239, 100, 0.7);
}

.opencore-trace-goal {
  min-height: 88px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(115, 130, 216, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.opencore-trace-goal small {
  color: rgba(110, 231, 255, 0.56);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-trace-goal strong {
  color: rgba(247, 249, 255, 0.9);
  font-size: 13px;
  font-weight: 560;
}

.opencore-trace-steps {
  padding: 10px 22px;
}

.opencore-trace-steps > div {
  min-height: 68px;
  border-bottom: 1px solid rgba(115, 130, 216, 0.11);
  display: grid;
  grid-template-columns: 24px 24px 1fr 20px;
  align-items: center;
  gap: 10px;
}

.opencore-trace-steps > div > span {
  color: rgba(138, 120, 255, 0.64);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-trace-steps > div > svg {
  color: rgba(110, 231, 255, 0.68);
}

.opencore-trace-steps p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.opencore-trace-steps strong {
  font-size: 10px;
  font-weight: 560;
}

.opencore-trace-steps small {
  color: rgba(220, 227, 249, 0.38);
  font-size: 8px;
}

.opencore-trace-steps > div > svg:last-child {
  color: var(--oc-lime);
}

.opencore-trace-steps > div.is-current {
  margin: 0 -22px;
  padding: 0 22px;
  background: rgba(110, 231, 255, 0.035);
}

.opencore-trace-steps > div.is-current > i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--oc-cyan);
  border-radius: 50%;
  position: relative;
  animation: opencore-status-pulse 1.8s ease-in-out infinite;
}

.opencore-trace-approval {
  min-height: 72px;
  margin: 6px 22px 14px;
  padding: 0 14px;
  border: 1px solid rgba(201, 239, 100, 0.18);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  color: rgba(229, 245, 192, 0.76);
  background: rgba(201, 239, 100, 0.035);
}

.opencore-trace-approval > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.opencore-trace-approval small {
  color: rgba(201, 239, 100, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-trace-approval strong {
  color: rgba(242, 247, 232, 0.82);
  font-size: 9px;
  font-weight: 550;
}

.opencore-trace-approval em {
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  font-style: normal;
}

.opencore-trace-foot {
  border-top: 1px solid rgba(115, 130, 216, 0.14);
  justify-content: flex-start;
  gap: 26px;
  color: rgba(220, 227, 249, 0.34);
  font-size: 6px;
}

.opencore-deployment-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.opencore-deployment-grid article {
  min-height: 420px;
  padding: 30px 30px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.26);
}

.opencore-deployment-number {
  align-self: flex-end;
  color: rgba(86, 72, 205, 0.42);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-deployment-grid article > svg {
  margin-top: 22px;
  color: #6655df;
}

.opencore-deployment-grid article > small {
  margin-top: 38px;
  color: rgba(86, 72, 205, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-deployment-grid h3 {
  margin: 10px 0 13px;
  font-size: 25px;
  letter-spacing: 0;
  font-weight: 600;
}

.opencore-deployment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.opencore-deployment-grid article > div {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 9px;
}

.opencore-deployment-grid article > div span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(39, 45, 66, 0.64);
  font-size: 10px;
}

.opencore-deployment-grid article > div svg {
  color: #6655df;
}

.opencore-security-line {
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.opencore-security-line > div {
  padding: 25px 28px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
}

.opencore-security-line > div:last-child {
  border-right: 0;
}

.opencore-security-line > div > svg {
  color: #6655df;
}

.opencore-security-line > div span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.opencore-security-line strong {
  font-size: 12px;
  font-weight: 600;
}

.opencore-security-line small {
  color: var(--muted);
  font-size: 9px;
}

.opencore-platform-section {
  margin-top: 160px;
  padding: 110px 0;
  border-top: 1px solid rgba(90, 103, 168, 0.16);
  border-bottom: 1px solid rgba(90, 103, 168, 0.16);
  background-color: rgba(236, 241, 250, 0.62);
  background-image:
    linear-gradient(rgba(71, 87, 151, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 87, 151, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.opencore-platform-inner {
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 88px;
}

.opencore-platform-console {
  min-width: 0;
  border: 1px solid rgba(93, 108, 180, 0.24);
  border-radius: 8px;
  overflow: hidden;
  color: rgba(235, 240, 255, 0.8);
  background: #080a15;
  box-shadow: 0 30px 82px rgba(31, 39, 84, 0.18);
}

.opencore-console-head {
  min-height: 46px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(115, 130, 216, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(220, 227, 249, 0.44);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-console-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(110, 231, 255, 0.68);
}

.opencore-platform-console pre {
  min-height: 310px;
  margin: 0;
  padding: 45px 34px;
  overflow: auto;
  background-image:
    linear-gradient(rgba(110, 231, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.opencore-platform-console code {
  color: rgba(233, 238, 255, 0.82);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  line-height: 2;
}

.opencore-platform-console .code-muted { color: rgba(220, 227, 249, 0.34); }
.opencore-platform-console .code-violet { color: #a797ff; }
.opencore-platform-console .code-green { color: #c9ef64; }

.opencore-console-stream {
  min-height: 54px;
  padding: 0 15px;
  border-top: 1px solid rgba(115, 130, 216, 0.14);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-console-stream span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(220, 227, 249, 0.4);
}

.opencore-console-stream i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--oc-cyan);
  box-shadow: 0 0 10px rgba(110, 231, 255, 0.7);
}

.opencore-console-stream strong {
  margin-left: auto;
  color: rgba(201, 239, 100, 0.62);
  font-weight: 520;
}

.opencore-platform-copy > span {
  color: rgba(86, 72, 205, 0.68);
}

.opencore-platform-copy h2 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1.08;
}

.opencore-platform-copy > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.opencore-access-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.opencore-access-list a {
  min-height: 70px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 9px;
  transition: color 160ms ease, padding 160ms ease;
}

.opencore-access-list a:hover,
.opencore-access-list a:focus-visible {
  padding-left: 8px;
  color: #4f3ee7;
  outline: none;
}

.opencore-access-list a > svg:first-child {
  color: #6655df;
}

.opencore-access-list a > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.opencore-access-list strong {
  font-size: 12px;
  font-weight: 600;
}

.opencore-access-list small {
  color: var(--muted);
  font-size: 9px;
}

.opencore-privacy-section {
  width: min(1220px, calc(100% - 96px));
  margin: 160px auto 0;
}

.opencore-privacy-heading h2 {
  max-width: 760px;
}

.opencore-privacy-heading p {
  max-width: 760px;
}

.opencore-privacy-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 54px;
}

.opencore-privacy-copy {
  border-top: 1px solid var(--line);
}

.opencore-privacy-copy article {
  min-height: 140px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 24px 34px 1fr;
  align-items: start;
  gap: 10px;
}

.opencore-privacy-copy article > span {
  padding-top: 3px;
  color: rgba(86, 72, 205, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-privacy-copy article > svg {
  color: #6655df;
}

.opencore-privacy-copy article > div {
  min-width: 0;
}

.opencore-privacy-copy small {
  color: rgba(86, 72, 205, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-privacy-copy h3 {
  margin: 7px 0 8px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0;
  font-weight: 600;
}

.opencore-privacy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.opencore-privacy-boundary {
  min-width: 0;
  min-height: 624px;
  border: 1px solid rgba(115, 130, 216, 0.25);
  border-radius: 8px;
  overflow: hidden;
  color: rgba(233, 238, 255, 0.76);
  background: #080a15;
  box-shadow:
    0 32px 88px rgba(27, 31, 67, 0.18),
    inset 0 0 68px rgba(89, 111, 255, 0.04);
}

.opencore-privacy-head,
.opencore-privacy-foot {
  min-height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-privacy-head {
  border-bottom: 1px solid rgba(115, 130, 216, 0.14);
}

.opencore-privacy-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(201, 239, 100, 0.7);
}

.opencore-privacy-head i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--oc-lime);
  box-shadow: 0 0 12px rgba(201, 239, 100, 0.7);
}

.opencore-privacy-zones {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(360px, 1.38fr) 82px minmax(180px, 0.78fr);
}

.opencore-local-zone,
.opencore-cloud-zone {
  min-width: 0;
  padding: 18px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(110, 231, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.opencore-local-zone {
  display: flex;
  flex-direction: column;
}

.opencore-cloud-zone {
  border-left: 1px solid rgba(115, 130, 216, 0.13);
  display: flex;
  flex-direction: column;
  background-color: rgba(20, 17, 46, 0.32);
  background-image:
    linear-gradient(rgba(138, 120, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 120, 255, 0.055) 1px, transparent 1px);
}

.opencore-zone-label {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.opencore-zone-label span {
  color: rgba(110, 231, 255, 0.7);
}

.opencore-cloud-zone .opencore-zone-label span {
  color: rgba(167, 151, 255, 0.78);
}

.opencore-zone-label small {
  color: rgba(220, 227, 249, 0.32);
  font-size: 6px;
}

.opencore-local-sources {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.opencore-local-sources > div {
  min-height: 66px;
  padding: 8px;
  border: 1px solid rgba(110, 231, 255, 0.13);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: center;
  gap: 4px;
  background: rgba(7, 10, 22, 0.62);
}

.opencore-local-sources > div > svg {
  color: rgba(110, 231, 255, 0.72);
}

.opencore-local-sources > div span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.opencore-local-sources strong {
  overflow: hidden;
  font-size: 8px;
  font-weight: 550;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opencore-local-sources small {
  color: rgba(220, 227, 249, 0.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 5px;
}

.opencore-proxy-core {
  min-height: 205px;
  position: relative;
  display: grid;
  place-items: center;
}

.opencore-proxy-core::before,
.opencore-proxy-core::after {
  content: "";
  width: calc(50% - 72px);
  height: 1px;
  position: absolute;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.3));
}

.opencore-proxy-core::before {
  left: 0;
}

.opencore-proxy-core::after {
  right: 0;
  transform: rotate(180deg);
}

.opencore-proxy-core .proxy-ring,
.opencore-proxy-core > div {
  position: absolute;
}

.opencore-proxy-core .proxy-ring {
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 50%;
  animation: opencore-ring-breathe 6s ease-in-out infinite;
}

.opencore-proxy-core .ring-one {
  width: 124px;
  height: 124px;
}

.opencore-proxy-core .ring-two {
  width: 184px;
  height: 146px;
  border-color: rgba(138, 120, 255, 0.18);
  transform: rotate(20deg);
  animation-delay: -3s;
}

.opencore-proxy-core > div {
  width: 102px;
  height: 102px;
  border: 1px solid rgba(110, 231, 255, 0.55);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--oc-cyan);
  background: rgba(7, 10, 22, 0.95);
  box-shadow: 0 0 42px rgba(110, 231, 255, 0.12);
}

.opencore-proxy-core strong {
  color: rgba(246, 248, 255, 0.88);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-proxy-core small {
  color: rgba(220, 227, 249, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 5px;
}

.opencore-data-levels {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.opencore-data-levels > span {
  min-width: 0;
  min-height: 50px;
  padding: 7px 6px;
  border: 1px solid rgba(110, 231, 255, 0.12);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  color: rgba(220, 227, 249, 0.6);
  background: rgba(7, 10, 22, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-data-levels > span > i {
  width: 4px;
  height: 4px;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--oc-cyan);
  box-shadow: 0 0 8px rgba(110, 231, 255, 0.65);
}

.opencore-data-levels small {
  overflow: hidden;
  color: rgba(110, 231, 255, 0.48);
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opencore-data-levels .is-secret {
  border-color: rgba(242, 165, 213, 0.2);
  color: rgba(255, 220, 241, 0.76);
  background: rgba(242, 165, 213, 0.035);
}

.opencore-data-levels .is-secret > i {
  background: var(--oc-pink);
  box-shadow: 0 0 8px rgba(242, 165, 213, 0.65);
}

.opencore-data-levels .is-secret small {
  color: rgba(242, 165, 213, 0.62);
}

.opencore-encrypted-bridge {
  border-right: 1px solid rgba(115, 130, 216, 0.13);
  border-left: 1px solid rgba(115, 130, 216, 0.13);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(201, 239, 100, 0.64);
  background: rgba(7, 10, 22, 0.82);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  text-align: center;
}

.opencore-encrypted-bridge .bridge-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(110, 231, 255, 0.24), rgba(201, 239, 100, 0.45), rgba(138, 120, 255, 0.3));
}

.opencore-encrypted-bridge .bridge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: -8px;
  background: var(--oc-lime);
  box-shadow: 0 0 14px rgba(201, 239, 100, 0.78);
  animation: opencore-encrypted-flow 4.8s linear infinite;
}

.opencore-encrypted-bridge .pulse-two {
  animation-delay: -2.4s;
}

.opencore-encrypted-bridge small {
  max-width: 64px;
  color: rgba(220, 227, 249, 0.3);
  font-size: 5px;
  line-height: 1.5;
}

.opencore-cloud-core {
  min-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(167, 151, 255, 0.84);
}

.opencore-cloud-core .cloud-ring {
  border: 1px solid rgba(138, 120, 255, 0.18);
  border-radius: 50%;
  position: absolute;
  animation: opencore-ring-breathe 6s ease-in-out infinite;
}

.opencore-cloud-core .ring-one {
  width: 116px;
  height: 116px;
}

.opencore-cloud-core .ring-two {
  width: 168px;
  height: 132px;
  transform: rotate(-22deg);
  animation-delay: -3s;
}

.opencore-cloud-core > svg,
.opencore-cloud-core > strong,
.opencore-cloud-core > small {
  position: relative;
  z-index: 2;
}

.opencore-cloud-core strong {
  color: rgba(244, 241, 255, 0.84);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.opencore-cloud-core small {
  color: rgba(220, 227, 249, 0.32);
  font-family: var(--font-geist-mono), monospace;
  font-size: 5px;
}

.opencore-masked-payload {
  margin-top: auto;
  display: grid;
  gap: 5px;
}

.opencore-masked-payload span {
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(138, 120, 255, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  color: rgba(190, 178, 255, 0.58);
  background: rgba(7, 10, 22, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.opencore-privacy-return {
  min-height: 62px;
  padding: 0 18px;
  border-top: 1px solid rgba(115, 130, 216, 0.14);
  border-bottom: 1px solid rgba(115, 130, 216, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.opencore-privacy-return span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(220, 227, 249, 0.58);
  font-size: 7px;
}

.opencore-privacy-return span svg {
  color: var(--oc-lime);
}

.opencore-privacy-return > i {
  width: 24px;
  height: 1px;
  background: rgba(201, 239, 100, 0.24);
}

.opencore-privacy-foot {
  color: rgba(220, 227, 249, 0.28);
  font-size: 6px;
}

.opencore-cta-section {
  width: min(1440px, calc(100% - 64px));
  min-height: 500px;
  margin: 160px auto 0;
  padding: 76px;
  border: 1px solid rgba(115, 130, 216, 0.24);
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  color: #f5f7ff;
  background: #080a15;
}

.opencore-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(110, 231, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.opencore-cta-section > div {
  position: relative;
  z-index: 2;
}

.opencore-cta-section > div:last-child {
  grid-column: 2;
}

.opencore-cta-section h2 {
  font-size: 58px;
  line-height: 1.05;
}

.opencore-cta-section p {
  margin: 0 0 28px;
  color: rgba(220, 227, 249, 0.58);
  font-size: 13px;
}

.opencore-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.opencore-cta-signal {
  width: 300px;
  height: 300px;
  position: absolute !important;
  top: 50%;
  left: 9%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}

.opencore-cta-signal .signal-ring,
.opencore-cta-signal .signal-core {
  position: absolute;
}

.opencore-cta-signal .signal-ring {
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: 50%;
  animation: opencore-ring-breathe 6s ease-in-out infinite;
}

.opencore-cta-signal .ring-one {
  width: 180px;
  height: 180px;
}

.opencore-cta-signal .ring-two {
  width: 280px;
  height: 220px;
  border-color: rgba(138, 120, 255, 0.24);
  transform: rotate(24deg);
  animation-delay: -3s;
}

.opencore-cta-signal .signal-core {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(110, 231, 255, 0.62);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--oc-cyan);
  background: rgba(7, 10, 22, 0.94);
  box-shadow: 0 0 46px rgba(110, 231, 255, 0.18);
}

.opencore-page + .product-site-footer {
  margin-top: 150px;
}

@keyframes opencore-ring-breathe {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

@keyframes opencore-data-flow {
  0% { left: 7%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.78; }
  100% { left: 92%; opacity: 0; }
}

@keyframes opencore-status-pulse {
  0%, 100% { opacity: 0.42; box-shadow: 0 0 0 rgba(110, 231, 255, 0); }
  50% { opacity: 1; box-shadow: 0 0 16px rgba(110, 231, 255, 0.7); }
}

@keyframes opencore-encrypted-flow {
  0% { left: -8px; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 0.78; }
  100% { left: calc(100% + 8px); opacity: 0; }
}

@media (max-height: 760px) and (min-width: 821px) {
  .opencore-hero {
    min-height: 530px;
  }

  .opencore-hero-copy {
    padding-top: 24px;
  }

  .opencore-hero-copy h1 {
    margin-top: 10px;
    font-size: 60px;
  }

  .opencore-hero-copy h1 span {
    margin-top: 6px;
    font-size: 23px;
  }

  .opencore-hero-statement {
    margin-top: 4px;
    font-size: 17px;
  }

  .opencore-hero-description {
    margin-top: 4px;
    font-size: 10px;
  }

  .opencore-hero-actions {
    margin-top: 10px;
  }

  .opencore-workspace {
    height: 240px;
  }

  .opencore-mode-rail {
    margin-top: 36px;
  }
}

@media (max-width: 1120px) {
  .opencore-hero,
  .opencore-cta-section {
    width: calc(100% - 40px);
  }

  .opencore-workspace {
    right: 28px;
    left: 28px;
  }

  .opencore-workspace-body {
    grid-template-columns: 164px minmax(0, 1fr) 190px;
  }

  .opencore-mode-rail,
  .opencore-capability-section,
  .opencore-knowledge-section,
  .opencore-deployment-section,
  .opencore-privacy-section,
  .opencore-action-inner,
  .opencore-platform-inner {
    width: calc(100% - 64px);
  }

  .opencore-knowledge-flow {
    grid-template-columns: 190px minmax(360px, 1fr) 190px;
    gap: 16px;
  }

  .opencore-action-inner,
  .opencore-platform-inner {
    gap: 54px;
  }
}

@media (max-width: 920px) {
  .opencore-context-panel {
    display: none;
  }

  .opencore-workspace-body {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .opencore-capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .opencore-knowledge-flow {
    grid-template-columns: 1fr 1fr;
  }

  .opencore-flow-engine {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .opencore-flow-sources,
  .opencore-flow-delivery {
    grid-row: 2;
  }

  .opencore-flow-column > div > i {
    display: none;
  }

  .opencore-action-inner,
  .opencore-platform-inner,
  .opencore-privacy-layout {
    grid-template-columns: 1fr;
  }

  .opencore-action-copy,
  .opencore-platform-copy {
    max-width: 700px;
  }

  .opencore-platform-console {
    order: 2;
  }

  .opencore-privacy-copy {
    max-width: 700px;
  }
}

@media (max-width: 820px) {
  .opencore-hero {
    height: calc(100svh - 92px);
    min-height: 610px;
    max-height: 720px;
    border-radius: 27px;
  }

  .opencore-hero-art {
    width: 520px;
    height: 520px;
    top: -180px;
    opacity: 0.26;
  }

  .opencore-hero-copy {
    width: calc(100% - 48px);
    padding-top: 34px;
    align-items: flex-start;
    text-align: left;
  }

  .opencore-hero-copy h1 {
    margin-top: 15px;
    font-size: 58px;
  }

  .opencore-hero-copy h1 span {
    font-size: 23px;
  }

  .opencore-hero-statement {
    font-size: 17px;
  }

  .opencore-hero-description {
    max-width: 540px;
    font-size: 11px;
  }

  .opencore-hero-actions {
    margin-top: 14px;
  }

  .opencore-workspace {
    height: 250px;
    right: 22px;
    left: 22px;
  }

  .opencore-workspace-top {
    grid-template-columns: 1fr auto;
  }

  .opencore-command {
    display: none;
  }

  .opencore-workspace-nav {
    display: none;
  }

  .opencore-workspace-body {
    grid-template-columns: 1fr;
  }

  .opencore-conversation {
    padding-right: 18px;
    padding-left: 18px;
  }

  .opencore-mode-rail {
    margin-top: 62px;
    grid-template-columns: 1fr 1fr;
  }

  .opencore-mode-rail > div:nth-child(2) {
    border-right: 0;
  }

  .opencore-mode-rail > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .opencore-capability-section,
  .opencore-knowledge-section,
  .opencore-deployment-section,
  .opencore-privacy-section {
    margin-top: 112px;
  }

  .opencore-section-heading {
    margin-bottom: 46px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .opencore-section-heading h2 {
    font-size: 40px;
  }

  .opencore-capability-grid > a {
    min-height: 300px;
  }

  .opencore-knowledge-flow {
    min-height: 0;
  }

  .opencore-flow-engine {
    min-height: 480px;
  }

  .opencore-flow-field {
    height: 390px;
  }

  .opencore-flow-note {
    min-height: 106px;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .opencore-action-section {
    margin-top: 120px;
    padding: 88px 0;
  }

  .opencore-action-copy h2 {
    font-size: 44px;
  }

  .opencore-deployment-grid {
    grid-template-columns: 1fr;
  }

  .opencore-deployment-grid article {
    min-height: 350px;
  }

  .opencore-security-line {
    grid-template-columns: 1fr;
  }

  .opencore-security-line > div {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .opencore-security-line > div:last-child {
    border-bottom: 0;
  }

  .opencore-platform-section {
    margin-top: 120px;
    padding: 86px 0;
  }

  .opencore-platform-copy h2 {
    font-size: 42px;
  }

  .opencore-platform-console pre {
    min-height: 280px;
    padding: 34px 26px;
  }

  .opencore-privacy-layout {
    gap: 48px;
  }

  .opencore-cta-section {
    min-height: 610px;
    margin-top: 120px;
    padding: 52px 42px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .opencore-cta-signal {
    width: 260px;
    height: 260px;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
  }

  .opencore-cta-section > div:last-child {
    grid-column: 1;
  }

  .opencore-cta-section h2 {
    font-size: 48px;
  }
}

@media (max-width: 560px) {
  .opencore-hero,
  .opencore-cta-section {
    width: calc(100% - 24px);
  }

  .opencore-hero {
    height: calc(100svh - 88px);
    min-height: 570px;
    max-height: 680px;
  }

  .opencore-hero-copy {
    width: calc(100% - 32px);
    padding-top: 25px;
  }

  .opencore-eyebrow {
    min-height: 24px;
    font-size: 7px;
  }

  .opencore-hero-copy h1 {
    margin-top: 11px;
    font-size: 46px;
  }

  .opencore-hero-copy h1 span {
    margin-top: 6px;
    font-size: 19px;
  }

  .opencore-hero-statement {
    margin-top: 6px;
    font-size: 15px;
  }

  .opencore-hero-description {
    max-width: 330px;
    font-size: 9px;
    line-height: 1.6;
  }

  .opencore-hero-actions {
    width: 100%;
    margin-top: 10px;
    gap: 15px;
  }

  .opencore-hero-actions .button {
    width: auto;
    min-height: 39px;
    padding: 0 15px;
    font-size: 11px;
  }

  .opencore-secondary-action {
    font-size: 10px;
  }

  .opencore-workspace {
    height: 232px;
    right: 12px;
    left: 12px;
  }

  .opencore-workspace-top {
    padding: 0 10px;
  }

  .opencore-conversation {
    padding: 0 12px 10px;
  }

  .opencore-conversation-head {
    height: 34px;
  }

  .opencore-conversation-head span:last-child {
    display: none;
  }

  .opencore-user-query {
    max-width: 90%;
    margin-top: 8px;
    padding: 6px 8px;
    font-size: 7px;
  }

  .opencore-answer {
    grid-template-columns: 23px 1fr;
    gap: 7px;
  }

  .opencore-answer-mark {
    width: 23px;
    height: 23px;
  }

  .opencore-answer p {
    margin-top: 3px;
    font-size: 7px;
  }

  .opencore-answer-actions span:nth-child(2),
  .opencore-citations span:nth-child(n + 2) {
    display: none;
  }

  .opencore-mode-rail,
  .opencore-capability-section,
  .opencore-knowledge-section,
  .opencore-deployment-section,
  .opencore-privacy-section,
  .opencore-action-inner,
  .opencore-platform-inner {
    width: calc(100% - 32px);
  }

  .opencore-mode-rail > div {
    min-height: 96px;
    padding: 18px;
  }

  .opencore-mode-rail strong {
    font-size: 16px;
  }

  .opencore-mode-rail small {
    font-size: 8px;
  }

  .opencore-section-heading h2 {
    font-size: 34px;
  }

  .opencore-section-heading p {
    font-size: 12px;
  }

  .opencore-capability-grid {
    grid-template-columns: 1fr;
  }

  .opencore-capability-grid > a {
    min-height: 270px;
  }

  .opencore-capability-grid small {
    margin-top: 26px;
  }

  .opencore-knowledge-flow {
    grid-template-columns: 1fr;
  }

  .opencore-flow-engine,
  .opencore-flow-sources,
  .opencore-flow-delivery {
    grid-column: 1;
    grid-row: auto;
  }

  .opencore-flow-engine {
    min-height: 410px;
  }

  .opencore-flow-field {
    height: 320px;
  }

  .opencore-flow-ring.ring-two {
    width: 290px;
    height: 210px;
  }

  .opencore-flow-core {
    width: 110px;
    height: 110px;
  }

  .opencore-flow-stage.stage-one,
  .opencore-flow-stage.stage-two {
    left: 5%;
  }

  .opencore-flow-stage.stage-three,
  .opencore-flow-stage.stage-four {
    right: 5%;
  }

  .opencore-flow-note {
    justify-content: flex-start;
    gap: 15px 22px;
  }

  .opencore-action-copy h2 {
    font-size: 38px;
  }

  .opencore-action-points {
    grid-template-columns: 1fr;
  }

  .opencore-agent-trace {
    min-height: 540px;
  }

  .opencore-trace-goal {
    padding-right: 16px;
    padding-left: 16px;
  }

  .opencore-trace-steps {
    padding-right: 14px;
    padding-left: 14px;
  }

  .opencore-trace-steps > div.is-current {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .opencore-trace-approval {
    margin-right: 14px;
    margin-left: 14px;
  }

  .opencore-deployment-grid article {
    min-height: 330px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .opencore-platform-copy h2 {
    font-size: 36px;
  }

  .opencore-platform-console pre {
    min-height: 250px;
    padding: 26px 18px;
  }

  .opencore-platform-console code {
    font-size: 8px;
  }

  .opencore-console-stream span:nth-child(3) {
    display: none;
  }

  .opencore-privacy-copy article {
    min-height: 132px;
    grid-template-columns: 20px 30px 1fr;
  }

  .opencore-privacy-boundary {
    min-height: 0;
  }

  .opencore-privacy-head span:last-child {
    display: none;
  }

  .opencore-privacy-zones {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .opencore-local-zone {
    min-height: 470px;
  }

  .opencore-encrypted-bridge {
    min-height: 76px;
    border-top: 1px solid rgba(115, 130, 216, 0.13);
    border-right: 0;
    border-bottom: 1px solid rgba(115, 130, 216, 0.13);
    border-left: 0;
    flex-direction: row;
    gap: 12px;
  }

  .opencore-encrypted-bridge .bridge-line {
    width: 88px;
  }

  .opencore-encrypted-bridge small {
    max-width: 86px;
  }

  .opencore-cloud-zone {
    min-height: 300px;
    border-left: 0;
  }

  .opencore-cloud-core {
    min-height: 185px;
  }

  .opencore-masked-payload {
    grid-template-columns: repeat(3, 1fr);
  }

  .opencore-masked-payload span {
    padding: 0 5px;
    justify-content: center;
    font-size: 5px;
  }

  .opencore-privacy-return {
    min-height: 136px;
    padding: 18px;
    flex-direction: column;
    gap: 9px;
  }

  .opencore-privacy-return > i {
    display: none;
  }

  .opencore-privacy-foot {
    min-height: 72px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    gap: 8px 15px;
  }

  .opencore-cta-section {
    min-height: 560px;
    padding: 38px 26px;
  }

  .opencore-cta-signal {
    top: 4%;
  }

  .opencore-cta-section h2 {
    font-size: 40px;
  }

  .opencore-cta-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .opencore-page + .product-site-footer {
    margin-top: 110px;
  }
}

@supports (content-visibility: auto) {
  .opencore-capability-section,
  .opencore-knowledge-section,
  .opencore-action-section,
  .opencore-deployment-section,
  .opencore-platform-section,
  .opencore-privacy-section,
  .opencore-cta-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}
