:root{
  --owlBg:#071019;
  --owlPanel:#0d1824;
  --owlPanel2:#101f2f;
  --owlLine:rgba(110,210,255,.22);
  --owlText:#eaf6ff;
  --owlMuted:#9bb2c2;
  --owlBlue:#2ab9ff;
  --owlGlow:rgba(42,185,255,.22);
}

*{
  box-sizing:border-box;
}

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

body{
  background:
    radial-gradient(circle at top right, rgba(42,185,255,.16), transparent 34%),
    linear-gradient(180deg, #09131f, var(--owlBg));
  color:var(--owlText);
  font-family:Arial, sans-serif;
}

.owlPage{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:20px;
}

.owlCard{
  width:min(720px, 100%);
  padding:34px;
  border:1px solid var(--owlLine);
  border-radius:24px;
  background:linear-gradient(145deg,var(--owlPanel),var(--owlPanel2));
  box-shadow:
    0 24px 80px rgba(0,0,0,.45),
    0 0 60px var(--owlGlow);
}

.owlEyebrow{
  margin-bottom:12px;
  color:var(--owlBlue);
  font-size:13px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.owlTitle{
  margin:0 0 12px;
  font-size:clamp(30px, 5vw, 46px);
  line-height:1.05;
  letter-spacing:-.04em;
}

.owlText{
  color:var(--owlMuted);
  font-size:16px;
  line-height:1.6;
}

.owlStatus{
  margin-top:24px;
  padding:13px 15px;
  border:1px solid rgba(42,185,255,.22);
  border-radius:15px;
  background:rgba(42,185,255,.09);
  color:#9ee5ff;
  font-weight:700;
}

.owlCode{
  margin:18px 0 0;
  padding:16px;
  border:1px solid rgba(110,210,255,.18);
  border-radius:16px;
  background:rgba(0,0,0,.24);
  color:#dff5ff;
  font-size:13px;
  line-height:1.5;
  white-space:pre-wrap;
  overflow:auto;
  width:100%;
  max-width:100%;
  overflow-x:auto;
  overflow-y:auto;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.owlCard,
.owlWideCard{
  margin-left:auto;
  margin-right:auto;
}

.owlForm{
  margin-top:24px;
  display:grid;
  gap:16px;
}

.owlLabel{
  display:grid;
  gap:8px;
  color:var(--owlMuted);
  font-size:14px;
  font-weight:700;
}

.owlInput{
  width:100%;
  padding:13px 14px;
  border:1px solid rgba(110,210,255,.22);
  border-radius:14px;
  background:rgba(0,0,0,.22);
  color:var(--owlText);
  font-size:16px;
  outline:none;
}

.owlInput:focus{
  border-color:rgba(42,185,255,.75);
  box-shadow:0 0 0 3px rgba(42,185,255,.16);
}

.owlButton{
  margin-top:4px;
  padding:14px 16px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,#2ab9ff,#7be7ff);
  color:#04111b;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}

.owlButton:hover{
  filter:brightness(1.08);
}

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

.owlButtonLink{
  display:inline-block;
  padding:12px 15px;
  border-radius:14px;
  background:linear-gradient(135deg,#2ab9ff,#7be7ff);
  color:#04111b;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}

.owlButtonLink:hover{
  filter:brightness(1.08);
}

.owlInlineForm{
  margin:0;
  padding:0;
  display:inline-block;
}

button.owlButtonLink{
  border:0;
  cursor:pointer;
  font-family:inherit;
}

.owlPanel{
  margin-top:24px;
  padding:16px;
  border:1px solid rgba(110,210,255,.18);
  border-radius:18px;
  background:rgba(0,0,0,.18);
}

.owlPanelTitle{
  margin-bottom:12px;
  color:var(--owlText);
  font-size:15px;
  font-weight:800;
}

.owlStatusRow{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-top:1px solid rgba(110,210,255,.12);
}

.owlStatusLabel{
  color:var(--owlMuted);
  font-size:14px;
}

.owlStatusValue{
  color:#dff5ff;
  font-size:14px;
  font-weight:700;
  text-align:right;
}

.owlMiniText{
  margin-top:5px;
  color:var(--owlMuted);
  font-size:11px;
  font-weight:600;
  line-height:1.4;
}

.owlButtonLinkSecondary{
  display:inline-block;
  padding:12px 15px;
  border:1px solid rgba(110,210,255,.22);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  color:var(--owlText);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.18s ease;
}

.owlButtonLinkSecondary:hover{
  background:rgba(42,185,255,.10);
  border-color:rgba(42,185,255,.45);
}

.owlNotice{
  margin-top:14px;
  padding:12px 14px;
  border:1px solid rgba(255,180,80,.28);
  border-radius:14px;
  background:rgba(255,140,40,.09);
  color:#ffd7a3;
  font-size:13px;
  font-weight:700;
  line-height:1.45;
}

.owlMiniLink{
  color:#9ee5ff;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
}

.owlMiniLink:hover{
  text-decoration:underline;
}

@media (max-width: 700px){
  .owlPage{
    min-height:100vh;
    padding:16px;
    align-items:flex-start;
  }

  .owlCard{
    width:100%;
    max-width:none;
    padding:24px 18px;
    border-radius:22px;
  }

  .owlTitle{
    font-size:38px;
    line-height:1.05;
  }

  .owlPanel{
    padding:14px;
    border-radius:16px;
  }

  .owlStatusRow{
    display:block;
    padding:12px 0;
  }

  .owlStatusValue{
    margin-top:6px;
    text-align:left;
    word-break:break-word;
  }

  .owlMiniText{
    word-break:break-word;
  }

  .owlCode{
    max-width:100%;
    overflow-x:auto;
    font-size:12px;
    line-height:1.45;
  }

  .owlActions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .owlButtonLink,
  .owlButtonLinkSecondary,
  button.owlButtonLink{
    width:100%;
    text-align:center;
    box-sizing:border-box;
  }
}

@media (max-width: 700px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .owlPage,
  .owlCard,
  .owlPanel,
  .owlStatus,
  .owlActions,
  .owlCode{
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
  }

  .owlCard{
    overflow:hidden;
  }

  .owlStatusRow,
  .owlStatusLabel,
  .owlStatusValue{
    min-width:0;
    max-width:100%;
  }

  .owlCode{
    white-space:pre-wrap;
    overflow-wrap:anywhere;
    word-break:break-word;
  }
}

.owlQuickJump{
  margin-top:14px;
}

.owlQuickJump a{
  display:inline-block;
  padding:10px 13px;
  border:1px solid rgba(110,210,255,.24);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:#9ee5ff;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

html{
  scroll-behavior:smooth;
}

.owlWideCard{
  width:min(1320px, 100%);
  max-width:1320px;
}

.owlCapabilityCard{
  margin-top:14px;
  padding:20px;
  border:1px solid rgba(110,210,255,.17);
  border-radius:18px;
  background:linear-gradient(145deg, rgba(255,255,255,.035), rgba(0,0,0,.12));
  overflow:hidden;
}

.owlCapabilityMain{
  display:grid;
  grid-template-columns:minmax(250px, .8fr) minmax(520px, 1.6fr);
  gap:24px;
  align-items:start;
}

.owlCapabilityName{
  color:var(--owlText);
  font-size:20px;
  font-weight:900;
  line-height:1.1;
}

.owlCapabilityBadges{
  display:grid;
  grid-template-columns:repeat(4, minmax(120px, 1fr));
  gap:14px;
  min-width:0;
}

.owlBadgeGroup{
  min-width:0;
}

.owlBadgeLabel{
  margin-bottom:7px;
  color:var(--owlMuted);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.owlBadge{
  width:100%;
  min-width:0;
  box-sizing:border-box;
  padding:11px 12px;
  border:1px solid rgba(110,210,255,.24);
  border-radius:12px;
  background:rgba(255,255,255,.035);
  color:var(--owlText);
  font-size:14px;
  font-weight:900;
  text-align:center;
  white-space:nowrap;
}

.owlBadgeGood,
.owlBadgeType-production{
  border-color:rgba(90,255,135,.45);
  color:#9cffb4;
  background:rgba(20,180,80,.10);
}

.owlBadgeType-test,
.owlBadgeModule{
  border-color:rgba(42,185,255,.48);
  color:#8fdcff;
  background:rgba(42,185,255,.10);
}

.owlBadgeWarn,
.owlBadgeType-pending{
  border-color:rgba(255,178,64,.48);
  color:#ffd08a;
  background:rgba(255,150,40,.10);
}

.owlBadgeRate{
  border-color:rgba(190,120,255,.45);
  color:#dcb5ff;
  background:rgba(140,70,220,.10);
}

.owlDetails{
  margin-top:16px;
  padding:12px 14px;
  border:1px solid rgba(110,210,255,.14);
  border-radius:14px;
  background:rgba(0,0,0,.14);
}

.owlDetails summary{
  cursor:pointer;
  color:var(--owlText);
  font-size:14px;
  font-weight:900;
}

.owlDetails summary span{
  display:inline-block;
  margin-left:8px;
  padding:2px 7px;
  border-radius:999px;
  background:rgba(42,185,255,.16);
  color:#9ee5ff;
  font-size:11px;
}

.owlOriginItem{
  margin-top:10px;
  padding:9px 10px;
  border:1px solid rgba(110,210,255,.13);
  border-radius:10px;
  color:var(--owlText);
  font-size:13px;
  font-weight:700;
  word-break:break-word;
}

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

  .owlCapabilityBadges{
    grid-template-columns:repeat(4, minmax(110px, 1fr));
  }
}

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

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

  .owlBadge{
    white-space:normal;
  }
}

.owlAccentText{
  color:#4fd0ff;
  font-weight:900;
}

.owlClientState{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:7px;
  color:var(--owlMuted);
  font-size:11px;
  font-weight:700;
  line-height:1.4;
}

.owlClientState span{
  width:9px;
  height:9px;
  border-radius:50%;
  flex:0 0 auto;
}

.owlClientState-active span{
  background:#7dff8a;
  box-shadow:0 0 12px rgba(125,255,138,.45);
}

.owlClientState-inactive span{
  background:#ffb13b;
  box-shadow:0 0 12px rgba(255,177,59,.45);
}

.owlBadge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
}

.owlBadgeIcon{
  width:15px;
  height:15px;
  flex:0 0 auto;
  opacity:.95;
}

.owlBadgeGood .owlBadgeIcon{
  width:17px;
  height:16px;
}

.owlDetails summary{
  display:flex;
  align-items:center;
  gap:8px;
}

.owlDetailsIcon{
  width:16px;
  height:16px;
  color:#9ee5ff;
  flex:0 0 auto;
}

.owlClientSummary{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,minmax(120px,1fr));
  gap:12px;
}

.owlSummaryBadge{
  padding:12px;
  border:1px solid rgba(110,210,255,.20);
  border-radius:14px;
  background:rgba(255,255,255,.035);
  color:var(--owlText);
  font-size:20px;
  font-weight:900;
  text-align:center;
}

.owlSummaryBadge span{
  display:block;
  margin-bottom:4px;
  color:var(--owlMuted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.owlSummaryProduction{
  border-color:rgba(90,255,135,.35);
}

.owlSummaryTest{
  border-color:rgba(42,185,255,.38);
}

.owlSummaryPending{
  border-color:rgba(255,178,64,.38);
}

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

.owlButtonCurrent{
  border-color:rgba(42,185,255,.70);
  background:rgba(42,185,255,.16);
  color:#9ee5ff;
}

.owlOriginMeta{
  display:inline-block;
  margin-left:8px;
  color:var(--owlMuted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.owlEventCard{
  margin-top:10px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  background:rgba(255,255,255,.02);
}

.owlEventSummary{
  cursor:pointer;
  padding:12px;
  list-style:none;
}

.owlEventSummary::-webkit-details-marker{
  display:none;
}

.owlEventDetails{
  padding:0 12px 12px;
  border-top:1px solid rgba(255,255,255,.06);
}

.owlEventRow{
  margin-top:8px;
  font-size:.92rem;
  word-break:break-word;
}

.owlPanel .owlEventCard:nth-of-type(even){
  background:rgba(93, 213, 255, .065);
}

.owlPanel .owlEventCard:nth-of-type(odd){
  background:rgba(255,255,255,.022);
}

.owlJumpNav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 18px;
  padding:12px;
  border:1px solid rgba(93, 213, 255, .18);
  border-radius:18px;
  background:rgba(4, 14, 24, .52);
}

.owlJumpNav a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:9px 13px 9px 11px;
  border:1px solid rgba(120, 220, 255, .28);
  border-left:4px solid rgba(58, 190, 255, .9);
  border-radius:12px;
  background:rgba(255,255,255,.035);
  color:#dff6ff;
  font-weight:800;
  font-size:.9rem;
  text-decoration:none;
  letter-spacing:.01em;
}

.owlJumpNav a:hover,
.owlJumpNav a:focus{
  border-color:rgba(120, 220, 255, .58);
  background:rgba(58, 190, 255, .12);
  color:#ffffff;
}

.owlPanel{
  scroll-margin-top:18px;
}