/* =========================
   GLOBAL RESET
========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* =========================
   LAYOUT WRAPPER
========================= */


.website-data {
  width: 80vw;
  max-width: 900px;
  margin: 64px auto;
  line-height: 1.6;
}

/* =========================
   NAVIGATION
========================= */

.navigator {
  text-align: center;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* CORE CONTROL BUTTON */
.button-89 {
  --b: 2px;
  --s: .45em;
  --color: rgba(255, 255, 255, 0.85);

  padding: calc(.55em + var(--s)) calc(1.1em + var(--s));
  color: var(--color);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;

  outline: none;
  font-size: 15px;
  font-family: Gill Sans, Gill Sans MT, Calibri, Trebuchet MS, sans-serif;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.25s ease;

  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

/* hover glow + motion */
.button-89:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.15);
}

/* active state (feels like system selection) */
.button-89:active {
  transform: translateY(0px) scale(0.98);
}

/* subtle scanning line effect */
.button-89::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 200, 255, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.button-89:hover::after {
  left: 100%;
}


a {
  color: white;
  text-decoration: none;
}

/* =========================
   LOGO
========================= */

.mainLogo {
  width: clamp(180px, 28vw, 520px);
  display: block;
  margin: 0 auto;
  filter: invert(1);
  opacity: 0.92;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
}

/* subtle presence movement */
.mainLogo:hover {
  transform: scale(1.03);
  opacity: 1;
}

/* optional ambient motion (very subtle float) */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.mainLogo.animated {
  animation: logoFloat 6s ease-in-out infinite;
}

/* =========================
   FOOTER
========================= */

.footer {
  text-align: center;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #000;
  padding: 10px 0;
}


h1{
  font-family: Verdana,Geneva,Tahoma,sans-serif;
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  margin-top: 72px;
  margin-bottom: 24px;
  font-weight: 700;
}

h3 {
  font-size: 1.7rem;
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.p {
  margin-bottom: 28px;
  text-align: left;
}

ul,
ol {
  margin: 24px 0;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.article-content {
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: left;
  font-family: 'Times New Roman', Times, serif;
}


/* ARTICLE CARD */

.system-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, border 0.2s ease;
}

.system-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(125, 211, 252, 0.4);
}

/* IMAGE */
.system-card-image {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  display: block;
}

/* BODY */
.system-card-body {
  padding: 16px;
}

/* CATEGORY TAG */
.system-card-category {
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: 0.65;
  margin-bottom: 8px;
}

/* TITLE */
.system-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* DESCRIPTION */
.system-card-desc {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 12px;
}

/* FOOTER META */
.system-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.6;
}

/* TAGS */
.system-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.system-tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.8;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
/* RESPONSIVE */
@media (max-width: 1000px) {
  .system-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .system-grid {
    grid-template-columns: 1fr;
  }

  .system-card-image {
    height: 180px;
  }
}

.article-content,
.article-content * {
  text-align: left !important;
  font-family: 'Times New Roman', Times, serif;
}

.article-image {
  width: 100%;
  max-width: 100vw;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin: 0px auto;
}




.article-content pre {
  background: #0f172a;        /* dark slate (clean, modern code block) */
  color: #e5e7eb;
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid #1f2937;
}

.article-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Inline code (single words inside paragraphs) */
.article-content p code {
  background: #f3f4f6;
  color: #111827;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9rem;
}





/* =========================
   ASDR SYSTEM CORE
========================= */
li{
  margin-left: 16px;
}
.asdr-page {
  background: #0b0f17;
  color: #e6e9ef;
  font-family: Inter, system-ui, sans-serif;
  padding: 80px 20px;
  line-height: 1.6;
}

.asdr-container {
  position: relative;
  overflow: visible;
}

.asdr-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 18px;
}

.asdr-subtitle {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.25em;
  opacity: 0.7;
  margin-bottom: 60px;
}












/* =========================
   GRID SYSTEM
========================= */

.asdr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;

  position: relative;
  z-index: 0;
  overflow: visible;
}

.asdr-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(10px);
}

.asdr-card h3 {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.asdr-card ul {
  margin: 0;
  padding-left: 18px;
  opacity: 0.85;
}

.asdr-card li {
  margin-bottom: 6px;
}







/* =========================
   ATTACK SURFACE SECTION
========================= */

.asdr-full {
  margin-top: 40px;
  padding: 26px;
  border-radius: 5px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  position: relative;
  overflow: visible;

  isolation: isolate;
  z-index: 0;
}

/* =========================
   ATTACK GRID
========================= */

.attack-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;

  position: relative;
  z-index: 0;
  overflow: visible;
}

/* =========================
   ATTACK BLOCK
========================= */

.attack-block {
  position: relative;

  padding: 12px 14px;
  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 24, 0.6);

  color: #eaeaea;
  font-size: 13px;
  font-weight: 500;

  transition: all 0.2s ease-in-out;
  cursor: default;

  overflow: visible;
}

.attack-block:hover {
  border-color: rgba(120, 160, 255, 0.35);
  background: rgba(25, 25, 32, 0.85);
}

/* =========================
   HOVER CARD (FIXED ROOT CAUSE)
========================= */

.hover-card {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  width: min(360px, 92vw);
  height: 600px;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 12px;

  background: rgba(12, 12, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  opacity: 0;
  pointer-events: none;

  transition: all 0.15s ease-in-out;

  z-index: 999;
}

.attack-block:hover .hover-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 999;
}

/* =========================
   SECTION STYLING
========================= */

.section {
  padding: 8px 10px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid transparent;

  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
}

.section strong {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 200, 200, 0.75);
  z-index: 999;
}

.section ul {
  margin: 0;
  padding-left: 14px;

  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.section li {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(235, 235, 235, 0.85);
  z-index: 999;
}


/* ORFAS COLOR SYSTEM */
.section.why { border-left-color: #7aa2ff; }
.section.how { border-left-color: #ff6b6b; }
.section.prevent { border-left-color: #6ee7b7; }
.section.detect { border-left-color: #fbbf24; }
.section.respond { border-left-color: #fb923c; }
.section.recover { border-left-color: #a78bfa; }

.section {
  padding: 8px 10px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid transparent;

  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 999;
}

/* Label styling */
.section strong {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 200, 200, 0.75);
}

/* Content text */
.section span {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(235, 235, 235, 0.85);
}

/* List styling */
.section ul {
  margin: 0;
  padding-left: 14px;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section li {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(235, 235, 235, 0.85);
}

/* =========================
   RISK LEVEL PILLS
   ========================= */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 2px 8px;
  border-radius: 999px;

  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  width: fit-content;
}

/* Risk colors */
.pill.low {
  background: rgba(110, 231, 183, 0.12);
  color: #6ee7b7;
}

.pill.medium {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.pill.high {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
}

.pill.critical {
  background: rgba(255, 107, 107, 0.12);
  color: #ff6b6b;
  animation: pulseRisk 2.5s infinite ease-in-out;
}

/* Subtle attention effect for critical systems */
@keyframes pulseRisk {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* =========================
   SECTION COLOR CODING
   ========================= */

.section.risk { border-left-color: #ff6b6b; }
.section.boundary { border-left-color: #7aa2ff; }
.section.context { border-left-color: #a78bfa; }
.section.ioc { border-left-color: #fbbf24; }

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .asdr-grid {
    grid-template-columns: 1fr;
  }

  .attack-grid {
    grid-template-columns: 1fr 1fr;
  }

  .asdr-title {
    font-size: 28px;
  }

  /* disable hover behavior on mobile */
  .attack-block:hover .hover-card {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .attack-grid {
    grid-template-columns: 1fr;
  }
}


li a {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;

  color: #cfe8ff;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: all 0.15s ease;
}

/* Hover state = “risk activation” */
li a:hover {
  background: rgba(122, 162, 255, 0.12);
  border-color: rgba(122, 162, 255, 0.35);
  transform: translateX(2px);
  color: #ffffff;
}

/* Focus accessibility */
li a:focus {
  outline: 2px solid rgba(122, 162, 255, 0.6);
  outline-offset: 2px;
}







.dependency-graph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  padding: 20px;
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.node {
  min-width: 220px;

  padding: 10px 14px;

  border-radius: 10px;

  text-align: center;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;

  backdrop-filter: blur(8px);

  transition: .2s ease;
}

.node:hover {
  transform: translateY(-2px);
}

/* External Supply Chain */
.external {
  border-left: 4px solid #60a5fa;
  background: rgba(96,165,250,.08);
}

/* Build & Release */
.build {
  border-left: 4px solid #34d399;
  background: rgba(52,211,153,.08);
}

/* Identity / Secrets */
.identity {
  border-left: 4px solid #fbbf24;
  background: rgba(251,191,36,.08);
}

/* Firmware Layer */
.firmware {
  border-left: 4px solid #a78bfa;
  background: rgba(167,139,250,.08);
}

/* Runtime Autonomy */
.runtime {
  border-left: 4px solid #fb7185;
  background: rgba(251,113,133,.08);
}

/* Communications */
.comms {
  border-left: 4px solid #22d3ee;
  background: rgba(34,211,238,.08);
}

/* Telemetry */
.telemetry {
  border-left: 4px solid #94a3b8;
  background: rgba(148,163,184,.08);
}

/* Safety Critical */
.safety {
  border-left: 4px solid #ef4444;
  background: rgba(239,68,68,.12);
}

.arrow {
  color: rgba(255,255,255,.45);
  font-size: 18px;
  font-weight: 700;
}
















.orfas-relationship-model {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 4rem 0;
  width: 100%;
}

.relationship-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 900px;
}

.relationship-node {
  background: #101419;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.relationship-node:hover {
  transform: translateY(-4px);
  border-color: #00d4ff;
  box-shadow: 0 12px 30px rgba(0,212,255,.15);
}

.relationship-node span {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: .5rem;
  opacity: .8;
}

.relationship-node h3 {
  margin: 0;
  font-size: .95rem;
  color: #fff;
  line-height: 1.4;
}

/* CONTROL PLANE */

.control {
  width: min(420px, 100%);
  border-color: rgba(0,212,255,.3);
}

.control span {
  color: #00d4ff;
}

/* PREVENT */

.prevent span {
  color: #22c55e;
}

/* DETECT */

.detect span {
  color: #facc15;
}

/* RESPOND */

.respond span {
  color: #ef4444;
}

/* RECOVER */

.recover span {
  color: #3b82f6;
}

/* ATTACK SURFACE */

.attack span {
  color: #f97316;
}

/* HUMAN */

.human span {
  color: #a855f7;
}

/* SUPPLY CHAIN */

.supply span {
  color: #14b8a6;
}

.relationship-line {
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0,212,255,.7),
    rgba(255,255,255,.15)
  );
}

.relationship-line.vertical {
  height: 40px;
}

/* Desktop Enhancements */

@media (min-width: 769px) {

  .relationship-grid {
    position: relative;
  }

  .relationship-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(255,255,255,.15);
    z-index: 0;
  }

  .relationship-grid .relationship-node {
    z-index: 1;
  }
}

/* Tablet */

@media (max-width: 1024px) {

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

}

/* Mobile */

@media (max-width: 768px) {

  .relationship-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .relationship-grid::before {
    display: none;
  }

  .relationship-line.vertical {
    height: 28px;
  }

  .relationship-node {
    width: 100%;
  }

  .control {
    width: 100%;
  }

}

html {
  scroll-behavior: smooth;
}

/* Make anchors behave like cards */
.relationship-node {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Focus state for accessibility */
.relationship-node:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 4px;
}

/* Active/hover interaction */
.relationship-node:hover {
  transform: translateY(-4px);
  border-color: #00d4ff;
  box-shadow: 0 12px 30px rgba(0,212,255,.15);
}

/* Optional: highlight target section when navigated to */
:target {
  scroll-margin-top: 100px;
}










.orfas-toc-button {
  position: fixed;
  bottom: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(16, 20, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;
  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;

  z-index: 9999;
}

/* hover interaction (desktop) */
.orfas-toc-button:hover {
  transform: translateY(-3px);
  border-color: #00d4ff;
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.18);
}

/* icon styling */
.toc-icon {
  font-size: 1rem;
  opacity: 0.85;
}

/* mobile optimization */
@media (max-width: 768px) {
  .orfas-toc-button {
    bottom: 14px;
    right: 14px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .toc-text {
    display: none; /* keeps it compact on mobile */
  }
}

/* accessibility focus */
.orfas-toc-button:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 3px;
}
















/* ORFAS COLORS */

.core::before {
  background: #7aa2ff;
}

.prevent::before {
  background: #6ee7b7;
}

.detect::before {
  background: #fbbf24;
}

.respond::before {
  background: #fb923c;
}

.recover::before {
  background: #a78bfa;
}

.attack::before {
  background: #ef4444;
}

.human::before {
  background: #22d3ee;
}

.supply::before {
  background: #60a5fa;
}













.orfas-panel {
  margin-top: 40px;
  padding: 20px;
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ================= LEGEND ================= */

.orfas-legend h3,
.orfas-heatmap h3 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

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

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* LEGEND COLORS */
.dot.core { background: #7aa2ff; }
.dot.os { background: #a78bfa; }
.dot.virtual { background: #a78bfa; }
.dot.human { background: #22d3ee; }
.dot.network { background: #60a5fa; }
.dot.external { background: #ef4444; }
.dot.compute { background: #fbbf24; }
.dot.middleware { background: #fbbf24; }
.dot.supply { background: #60a5fa; }
.dot.cyber { background: #fb923c; }
.dot.identity { background: #ef4444; }
.dot.data { background: #fbbf24; }

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .legend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 480px) {
  .heat-grid {
    grid-template-columns: 1fr;
  }
}










.control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
}

.control-card {
  position: relative;
  background: #101419;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s ease;
  min-height: 90px;
}

.control-card:hover {
  border-color: #00d4ff;
  transform: translateY(-4px);
}

.card-header {
  padding: 1.25rem;
  cursor: pointer;
}

.card-header span {
  display: inline-block;
  color: #00d4ff;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.card-header h3 {
  margin: 0;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
}

.card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 1.25rem;
}

.control-card:hover .card-content,
.control-card:focus-within .card-content {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.card-content p {
  color: #00d4ff;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.card-content ul {
  margin: 0;
  padding-left: 1rem;
}

.card-content li {
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: .35rem;
}

/* Tablet */

@media (max-width: 1024px) {
  .control-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .control-grid {
    grid-template-columns: 1fr;
  }

  .control-card {
    min-height: auto;
  }

  .control-card .card-content {
    max-height: 600px;
    padding-bottom: 1rem;
  }
}



/* =========================
   ORFAS WRAPPER
========================= */

.orfas-container {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* =========================
   GRID LAYOUT
========================= */

.orfas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

/* =========================
   CARD BASE
========================= */

.orfas-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  transition: 0.2s ease;
  break-inside: avoid;
}

.orfas-card:hover {
  border-color: rgba(125, 211, 252, 0.4);
  transform: translateY(-3px);
}

/* =========================
   HEADER
========================= */

.orfas-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 6px;
}

.orfas-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.orfas-owner {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* =========================
   DESCRIPTION TEXT
========================= */

.orfas-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  white-space: pre-line;
}

/* =========================
   ROLE BADGES
========================= */

.orfas-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ownership colors */
.owner-customer {
  border-left: 3px solid #60a5fa;
}

.owner-coeus {
  border-left: 3px solid #34d399;
}

.owner-shared {
  border-left: 3px solid #fbbf24;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .orfas-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PRINT / PDF SAFE
========================= */

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .orfas-card {
    background: transparent;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  .orfas-text {
    color: #000;
    opacity: 1;
  }
}



















.orfas-model {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 16px;
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.orfas-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

/* GRID */
.orfas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* CARD */
.orfas-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  transition: 0.2s ease;
  break-inside: avoid;
}

.orfas-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125,211,252,0.35);
}

/* INDEX */
.orfas-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 6px;
}

/* HEADING */
.orfas-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* OWNER */
.orfas-owner {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 10px;
}

/* LIST */
.orfas-card ul {
  margin: 0;
  padding-left: 18px;
}

.orfas-card li {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.5;
}

/* NOTE */
.orfas-note {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.7;
}

/* COLOR BORDERS */
.owner-customer {
  border-left: 3px solid #60a5fa;
}

.owner-coeus {
  border-left: 3px solid #34d399;
}

.owner-shared {
  border-left: 3px solid #fbbf24;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .orfas-grid {
    grid-template-columns: 1fr;
  }

  .orfas-title {
    font-size: 1.5rem;
  }
}

/* PRINT SAFE */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .orfas-card {
    background: transparent;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}